2025-06-01T21:27:16.6058956Z Current runner version: '2.324.0' 2025-06-01T21:27:16.6065610Z Runner name: 'i-0f21781113bd7224a' 2025-06-01T21:27:16.6066671Z Machine name: 'EC2AMAZ-DD9BHOF' 2025-06-01T21:27:16.6070753Z ##[group]GITHUB_TOKEN Permissions 2025-06-01T21:27:16.6073227Z Actions: read 2025-06-01T21:27:16.6073776Z Attestations: read 2025-06-01T21:27:16.6074339Z Checks: read 2025-06-01T21:27:16.6074781Z Contents: read 2025-06-01T21:27:16.6075273Z Deployments: read 2025-06-01T21:27:16.6075805Z Discussions: read 2025-06-01T21:27:16.6076252Z Issues: read 2025-06-01T21:27:16.6076695Z Metadata: read 2025-06-01T21:27:16.6077161Z Models: read 2025-06-01T21:27:16.6077764Z Packages: read 2025-06-01T21:27:16.6078200Z Pages: read 2025-06-01T21:27:16.6078687Z PullRequests: read 2025-06-01T21:27:16.6079155Z RepositoryProjects: read 2025-06-01T21:27:16.6079704Z SecurityEvents: read 2025-06-01T21:27:16.6080215Z Statuses: read 2025-06-01T21:27:16.6080666Z ##[endgroup] 2025-06-01T21:27:16.6083197Z Secret source: Actions 2025-06-01T21:27:16.6084008Z Prepare workflow directory 2025-06-01T21:27:16.6601538Z Prepare all required actions 2025-06-01T21:27:16.6641891Z Getting action download info 2025-06-01T21:27:16.8882690Z Download action repository 'pytorch/test-infra@main' (SHA:5ce5452ec51263ef97338910302a42b1f4181e7c) 2025-06-01T21:27:18.9703284Z Download action repository 'pytorch/pytorch@main' (SHA:064bb3cebc0a5d0f3a1a2308ae2aa4dc5b7da5be) 2025-06-01T21:28:00.0627504Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-01T21:28:00.3659465Z Download action repository 'seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-06-01T21:28:01.1632357Z Getting action download info 2025-06-01T21:28:01.2730515Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-01T21:28:01.5137860Z Complete job name: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:28:01.5856165Z ##[group]Run git config --global core.longpaths true 2025-06-01T21:28:01.5856906Z git config --global core.longpaths true 2025-06-01T21:28:01.5857390Z git config --global core.symlinks true 2025-06-01T21:28:01.5857754Z  2025-06-01T21:28:01.5858218Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-06-01T21:28:01.5858915Z # the directory on Windows and prevent GHA from checking out as reported 2025-06-01T21:28:01.5859524Z # in https://github.com/actions/checkout/issues/1018 2025-06-01T21:28:01.5860024Z git config --global core.fsmonitor false 2025-06-01T21:28:01.5885382Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:28:01.5886170Z env: 2025-06-01T21:28:01.5886414Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:01.5886692Z ##[endgroup] 2025-06-01T21:28:02.3373182Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-06-01T21:28:02.3373680Z env: 2025-06-01T21:28:02.3373876Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:02.3374107Z ##[endgroup] 2025-06-01T21:28:02.3536608Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T21:28:02.3537385Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T21:28:02.3538051Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-06-01T21:28:02.3538519Z # handle tool 2025-06-01T21:28:02.3538858Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-06-01T21:28:02.3539279Z Foreach ($process In $processes) { 2025-06-01T21:28:02.3539552Z  Try { 2025-06-01T21:28:02.3540120Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-06-01T21:28:02.3542430Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-06-01T21:28:02.3542833Z  } 2025-06-01T21:28:02.3543019Z  Catch { 2025-06-01T21:28:02.3543321Z  Write-Output "No leftover $process process, continuing" 2025-06-01T21:28:02.3543699Z  Write-Output $_ 2025-06-01T21:28:02.3543927Z  } 2025-06-01T21:28:02.3544110Z } 2025-06-01T21:28:02.3544277Z  2025-06-01T21:28:02.3544738Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-06-01T21:28:02.3545277Z # for hung processes 2025-06-01T21:28:02.3545551Z Foreach ($process In $processes) { 2025-06-01T21:28:02.3545906Z  Try { 2025-06-01T21:28:02.3546345Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-06-01T21:28:02.3546808Z  } 2025-06-01T21:28:02.3546991Z  Catch { 2025-06-01T21:28:02.3547211Z  Write-Output $_ 2025-06-01T21:28:02.3547434Z  } 2025-06-01T21:28:02.3547626Z } 2025-06-01T21:28:02.3547792Z  2025-06-01T21:28:02.3547968Z Try { 2025-06-01T21:28:02.3548198Z  # Print all the processes for debugging 2025-06-01T21:28:02.3548763Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-06-01T21:28:02.3549184Z } 2025-06-01T21:28:02.3549362Z Catch { 2025-06-01T21:28:02.3549828Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-06-01T21:28:02.3550291Z  Write-Output $_ 2025-06-01T21:28:02.3550532Z } 2025-06-01T21:28:02.3566450Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:28:02.3566924Z env: 2025-06-01T21:28:02.3567123Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:02.3567376Z ##[endgroup] 2025-06-01T21:28:02.7313152Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:28:02.7368638Z Finished 2025-06-01T21:28:02.7787168Z No leftover python process, continuing 2025-06-01T21:28:02.8251787Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-06-01T21:28:02.8252554Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:9 char:5 2025-06-01T21:28:02.8253117Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:28:02.8253564Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8254059Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-06-01T21:28:02.8254917Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:28:02.8255522Z 2025-06-01T21:28:02.8271452Z No leftover ninja process, continuing 2025-06-01T21:28:02.8280395Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-06-01T21:28:02.8281113Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:9 char:5 2025-06-01T21:28:02.8281691Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:28:02.8282121Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8282668Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-06-01T21:28:02.8283487Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:28:02.8284077Z 2025-06-01T21:28:02.8296551Z No leftover cl process, continuing 2025-06-01T21:28:02.8306807Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-06-01T21:28:02.8307516Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:9 char:5 2025-06-01T21:28:02.8308920Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:28:02.8309326Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8309907Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-06-01T21:28:02.8310885Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:28:02.8311477Z 2025-06-01T21:28:02.8326104Z No leftover nvcc process, continuing 2025-06-01T21:28:02.8339296Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-06-01T21:28:02.8340034Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:9 char:5 2025-06-01T21:28:02.8340668Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:28:02.8341112Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8341596Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-06-01T21:28:02.8342449Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:28:02.8343055Z 2025-06-01T21:28:02.8376230Z No leftover sccache process, continuing 2025-06-01T21:28:02.8386336Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-06-01T21:28:02.8387045Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:9 char:5 2025-06-01T21:28:02.8387592Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:28:02.8388000Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8388491Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-06-01T21:28:02.8389386Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:28:02.8390065Z 2025-06-01T21:28:02.8402356Z No leftover git process, continuing 2025-06-01T21:28:02.8412968Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-06-01T21:28:02.8413637Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:9 char:5 2025-06-01T21:28:02.8414185Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T21:28:02.8414591Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8415114Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-06-01T21:28:02.8415969Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T21:28:02.8416554Z 2025-06-01T21:28:02.8804260Z Get-WmiObject : Illegal operation attempted on a registry key that has been marked for deletion. (Exception from 2025-06-01T21:28:02.8804940Z HRESULT: 0x800703FA) 2025-06-01T21:28:02.8805313Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:21 char:6 2025-06-01T21:28:02.8805881Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:28:02.8806353Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8806792Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T21:28:02.8807472Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T21:28:02.8808048Z 2025-06-01T21:28:02.8848608Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T21:28:02.8849614Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T21:28:02.8850253Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T21:28:02.8850933Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:21 char:6 2025-06-01T21:28:02.8851498Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:28:02.8851944Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8852373Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T21:28:02.8853080Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T21:28:02.8853640Z 2025-06-01T21:28:02.8878441Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T21:28:02.8879392Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T21:28:02.8880013Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T21:28:02.8880513Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:21 char:6 2025-06-01T21:28:02.8881093Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:28:02.8881523Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8881956Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T21:28:02.8882639Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T21:28:02.8883205Z 2025-06-01T21:28:02.8909127Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T21:28:02.8910035Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T21:28:02.8910634Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T21:28:02.8911101Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:21 char:6 2025-06-01T21:28:02.8911669Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:28:02.8912100Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8912529Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T21:28:02.8913291Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T21:28:02.8913909Z 2025-06-01T21:28:02.8939175Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T21:28:02.8940090Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T21:28:02.8940681Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T21:28:02.8941167Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:21 char:6 2025-06-01T21:28:02.8941932Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:28:02.8942401Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8942830Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T21:28:02.8943523Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T21:28:02.8944084Z 2025-06-01T21:28:02.8969238Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T21:28:02.8970159Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T21:28:02.8970755Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T21:28:02.8971226Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:21 char:6 2025-06-01T21:28:02.8971796Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:28:02.8972434Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8972879Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T21:28:02.8973571Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T21:28:02.8974131Z 2025-06-01T21:28:02.8995810Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-06-01T21:28:02.8996647Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-06-01T21:28:02.8997235Z deletion. (Exception from HRESULT: 0x800703FA). 2025-06-01T21:28:02.8997694Z At C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1:21 char:6 2025-06-01T21:28:02.8998246Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T21:28:02.8998687Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T21:28:02.8999126Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-06-01T21:28:02.8999816Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-06-01T21:28:02.9000363Z 2025-06-01T21:28:03.1920588Z Caption CommandLine ProcessId 2025-06-01T21:28:03.1921169Z 2025-06-01T21:28:03.1921549Z System Idle Process 0 2025-06-01T21:28:03.1922009Z 2025-06-01T21:28:03.1922304Z System 4 2025-06-01T21:28:03.1922686Z 2025-06-01T21:28:03.1923794Z Registry 168 2025-06-01T21:28:03.1924210Z 2025-06-01T21:28:03.1925473Z smss.exe 408 2025-06-01T21:28:03.1925941Z 2025-06-01T21:28:03.1926996Z csrss.exe 524 2025-06-01T21:28:03.1928326Z 2025-06-01T21:28:03.1928672Z csrss.exe 600 2025-06-01T21:28:03.1929082Z 2025-06-01T21:28:03.1929458Z wininit.exe 652 2025-06-01T21:28:03.1929870Z 2025-06-01T21:28:03.1930586Z winlogon.exe winlogon.exe 672 2025-06-01T21:28:03.1931041Z 2025-06-01T21:28:03.1931737Z services.exe 744 2025-06-01T21:28:03.1932160Z 2025-06-01T21:28:03.1932953Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-06-01T21:28:03.1933967Z 2025-06-01T21:28:03.1934590Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-06-01T21:28:03.1935245Z 2025-06-01T21:28:03.1935713Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-06-01T21:28:03.1936370Z 2025-06-01T21:28:03.1936750Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-06-01T21:28:03.1937249Z 2025-06-01T21:28:03.1937631Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-06-01T21:28:03.1938153Z 2025-06-01T21:28:03.1938655Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 120 2025-06-01T21:28:03.1939202Z 2025-06-01T21:28:03.1939820Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 472 2025-06-01T21:28:03.1940466Z 2025-06-01T21:28:03.1941755Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 128 2025-06-01T21:28:03.1942412Z 2025-06-01T21:28:03.1943127Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-06-01T21:28:03.1943886Z 2025-06-01T21:28:03.1944216Z dwm.exe "dwm.exe" 1252 2025-06-01T21:28:03.1944638Z 2025-06-01T21:28:03.1945718Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-06-01T21:28:03.1946640Z 2025-06-01T21:28:03.1947987Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-06-01T21:28:03.1948632Z 2025-06-01T21:28:03.1949223Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1372 2025-06-01T21:28:03.1950000Z 2025-06-01T21:28:03.1950472Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1396 2025-06-01T21:28:03.1951050Z 2025-06-01T21:28:03.1951564Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-06-01T21:28:03.1952232Z 2025-06-01T21:28:03.1952836Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1476 2025-06-01T21:28:03.1953514Z 2025-06-01T21:28:03.1967516Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1528 2025-06-01T21:28:03.1968164Z 2025-06-01T21:28:03.1969979Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1600 2025-06-01T21:28:03.1972032Z 2025-06-01T21:28:03.1972693Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1644 2025-06-01T21:28:03.1973516Z 2025-06-01T21:28:03.1973998Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1736 2025-06-01T21:28:03.1974568Z 2025-06-01T21:28:03.1975054Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1744 2025-06-01T21:28:03.1975616Z 2025-06-01T21:28:03.1976133Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1752 2025-06-01T21:28:03.1976754Z 2025-06-01T21:28:03.1977723Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1836 2025-06-01T21:28:03.1978592Z 2025-06-01T21:28:03.1979092Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2008 2025-06-01T21:28:03.1979699Z 2025-06-01T21:28:03.1980326Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1072 2025-06-01T21:28:03.1980899Z 2025-06-01T21:28:03.1981504Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 1464 2025-06-01T21:28:03.1982168Z 2025-06-01T21:28:03.1982664Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2076 2025-06-01T21:28:03.1984126Z 2025-06-01T21:28:03.1984697Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2100 2025-06-01T21:28:03.1985342Z 2025-06-01T21:28:03.1985965Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2108 2025-06-01T21:28:03.1986617Z 2025-06-01T21:28:03.1987141Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2160 2025-06-01T21:28:03.1987756Z 2025-06-01T21:28:03.1988276Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2192 2025-06-01T21:28:03.1988874Z 2025-06-01T21:28:03.1990016Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2232 2025-06-01T21:28:03.1990753Z 2025-06-01T21:28:03.1991323Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2240 2025-06-01T21:28:03.1991969Z 2025-06-01T21:28:03.1992616Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2356 2025-06-01T21:28:03.1993461Z 2025-06-01T21:28:03.1993869Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2632 2025-06-01T21:28:03.1994381Z 2025-06-01T21:28:03.1994860Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2752 2025-06-01T21:28:03.1995448Z 2025-06-01T21:28:03.1996024Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2760 2025-06-01T21:28:03.1996744Z 2025-06-01T21:28:03.1997258Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2768 2025-06-01T21:28:03.1997880Z 2025-06-01T21:28:03.1998388Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2776 2025-06-01T21:28:03.1999007Z 2025-06-01T21:28:03.1999650Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2784 2025-06-01T21:28:03.2000336Z 2025-06-01T21:28:03.2000827Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2800 2025-06-01T21:28:03.2001512Z 2025-06-01T21:28:03.2002068Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2808 2025-06-01T21:28:03.2002726Z 2025-06-01T21:28:03.2003231Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2816 2025-06-01T21:28:03.2003821Z 2025-06-01T21:28:03.2004236Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3028 2025-06-01T21:28:03.2004735Z 2025-06-01T21:28:03.2005250Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2972 2025-06-01T21:28:03.2005840Z 2025-06-01T21:28:03.2006505Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3084 2025-06-01T21:28:03.2007267Z 2025-06-01T21:28:03.2007911Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3104 2025-06-01T21:28:03.2008651Z 2025-06-01T21:28:03.2009200Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3116 2025-06-01T21:28:03.2009792Z 2025-06-01T21:28:03.2010406Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3528 2025-06-01T21:28:03.2011122Z 2025-06-01T21:28:03.2011551Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3640 2025-06-01T21:28:03.2012176Z 2025-06-01T21:28:03.2012784Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4084 2025-06-01T21:28:03.2013473Z 2025-06-01T21:28:03.2013984Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a76055 /state1:0x41c64e6d 2880 2025-06-01T21:28:03.2014591Z 2025-06-01T21:28:03.2016297Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4132 2025-06-01T21:28:03.2018226Z 2025-06-01T21:28:03.2018959Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4264 2025-06-01T21:28:03.2019780Z 2025-06-01T21:28:03.2020149Z vds.exe C:\Windows\System32\vds.exe 532 2025-06-01T21:28:03.2020604Z 2025-06-01T21:28:03.2021281Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 3040 2025-06-01T21:28:03.2021957Z 2025-06-01T21:28:03.2022672Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4468 2025-06-01T21:28:03.2023491Z 2025-06-01T21:28:03.2025070Z 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 2204 2025-06-01T21:28:03.2026823Z 2025-06-01T21:28:03.2027241Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2172 2025-06-01T21:28:03.2027765Z 2025-06-01T21:28:03.2028286Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 516 2025-06-01T21:28:03.2028913Z 2025-06-01T21:28:03.2029521Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 3872 2025-06-01T21:28:03.2030320Z 2025-06-01T21:28:03.2030704Z msdtc.exe C:\Windows\System32\msdtc.exe 2740 2025-06-01T21:28:03.2031190Z 2025-06-01T21:28:03.2031839Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 968 2025-06-01T21:28:03.2032511Z 2025-06-01T21:28:03.2032987Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1044 2025-06-01T21:28:03.2033586Z 2025-06-01T21:28:03.2034173Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 1276 2025-06-01T21:28:03.2034916Z 2025-06-01T21:28:03.2035441Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1144 2025-06-01T21:28:03.2036051Z 2025-06-01T21:28:03.2036563Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2276 2025-06-01T21:28:03.2037150Z 2025-06-01T21:28:03.2037683Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 2440 2025-06-01T21:28:03.2038302Z 2025-06-01T21:28:03.2038720Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 5104 2025-06-01T21:28:03.2039228Z 2025-06-01T21:28:03.2039712Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 448 2025-06-01T21:28:03.2040301Z 2025-06-01T21:28:03.2040980Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1196 2025-06-01T21:28:03.2041697Z 2025-06-01T21:28:03.2042196Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4904 2025-06-01T21:28:03.2042795Z 2025-06-01T21:28:03.2043290Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4896 2025-06-01T21:28:03.2043949Z 2025-06-01T21:28:03.2044359Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4792 2025-06-01T21:28:03.2044876Z 2025-06-01T21:28:03.2045291Z taskhostw.exe taskhostw.exe /RuntimeWide 3036 2025-06-01T21:28:03.2045797Z 2025-06-01T21:28:03.2046396Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:436 4708 2025-06-01T21:28:03.2047080Z 2025-06-01T21:28:03.2047502Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4620 2025-06-01T21:28:03.2048018Z 2025-06-01T21:28:03.2048691Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 4992 2025-06-01T21:28:03.2049372Z 2025-06-01T21:28:03.2050093Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 3396 2025-06-01T21:28:03.2050829Z 2025-06-01T21:28:03.2051356Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2428 2376 1168 2025-06-01T21:28:03.2051990Z 2025-06-01T21:28:03.2052405Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1016 2025-06-01T21:28:03.2052992Z 2025-06-01T21:28:03.2053600Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1200 4816 2025-06-01T21:28:03.2054320Z 2025-06-01T21:28:03.2054740Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2476 2025-06-01T21:28:03.2055257Z 2025-06-01T21:28:03.2055903Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 2960 2025-06-01T21:28:03.2056666Z 2025-06-01T21:28:03.2057496Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorsvw.exe -StartupEvent 36c -InterruptEvent 0 -NGENProcess 360 -Pipe 368 -Comment "NGen Worker Process" 2896 2025-06-01T21:28:03.2058423Z 2025-06-01T21:28:03.2059229Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\3a94ff6e-3a42-4fe9-8908-2d53938dea68.ps1'" 4388 2025-06-01T21:28:03.2060210Z 2025-06-01T21:28:03.2060805Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 3940 2025-06-01T21:28:03.2061485Z 2025-06-01T21:28:03.2061922Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4416 2025-06-01T21:28:03.2063057Z 2025-06-01T21:28:03.2063063Z 2025-06-01T21:28:03.2063068Z 2025-06-01T21:28:03.2334802Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-06-01T21:28:03.2335215Z with: 2025-06-01T21:28:03.2335759Z github-secret: *** 2025-06-01T21:28:03.2338155Z 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\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build 2025-06-01T21:28:03.2340566Z activate-with-label: false 2025-06-01T21:28:03.2340800Z label: with-ssh 2025-06-01T21:28:03.2341029Z remove-existing-keys: true 2025-06-01T21:28:03.2341307Z fail-silently: true 2025-06-01T21:28:03.2341500Z env: 2025-06-01T21:28:03.2341680Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:03.2341895Z ##[endgroup] 2025-06-01T21:28:03.4252913Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-01T21:28:03.4255492Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-01T21:28:03.4542133Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-06-01T21:28:03.4542612Z with: 2025-06-01T21:28:03.4542879Z no-sudo: true 2025-06-01T21:28:03.4543138Z submodules: recursive 2025-06-01T21:28:03.4543391Z fetch-depth: 0 2025-06-01T21:28:03.4543652Z env: 2025-06-01T21:28:03.4543866Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:03.4544147Z ##[endgroup] 2025-06-01T21:28:03.6475095Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-01T21:28:03.6476159Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-01T21:28:03.6498975Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:28:03.6499483Z env: 2025-06-01T21:28:03.6499715Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:03.6499993Z ##[endgroup] 2025-06-01T21:28:03.6899445Z ##[group]Run # Use all available CPUs for fetching 2025-06-01T21:28:03.6899872Z # Use all available CPUs for fetching 2025-06-01T21:28:03.6900177Z cd "${GITHUB_WORKSPACE}" 2025-06-01T21:28:03.6900487Z git config --global fetch.parallel 0 2025-06-01T21:28:03.6901879Z git config --global submodule.fetchJobs 0 2025-06-01T21:28:03.6902209Z  2025-06-01T21:28:03.6902537Z # Clean workspace. The default checkout action should also do this, but 2025-06-01T21:28:03.6903004Z # do it here as well just in case 2025-06-01T21:28:03.6903293Z if [[ -d .git ]]; then 2025-06-01T21:28:03.6903548Z  if [ -z "${NO_SUDO}" ]; then 2025-06-01T21:28:03.6903837Z  sudo git clean -ffdx 2025-06-01T21:28:03.6904077Z  else 2025-06-01T21:28:03.6904291Z  git clean -ffdx 2025-06-01T21:28:03.6904517Z  fi 2025-06-01T21:28:03.6904709Z fi 2025-06-01T21:28:03.6929754Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:28:03.6931357Z env: 2025-06-01T21:28:03.6931553Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:03.6931791Z NO_SUDO: true 2025-06-01T21:28:03.6931981Z ##[endgroup] 2025-06-01T21:28:03.7880451Z ##[group]Run actions/checkout@v4 2025-06-01T21:28:03.7880724Z with: 2025-06-01T21:28:03.7880946Z ref: f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:28:03.7881229Z fetch-depth: 0 2025-06-01T21:28:03.7881429Z submodules: recursive 2025-06-01T21:28:03.7881885Z show-progress: false 2025-06-01T21:28:03.7882166Z repository: pytorch/pytorch 2025-06-01T21:28:03.7882566Z token: *** 2025-06-01T21:28:03.7882755Z ssh-strict: true 2025-06-01T21:28:03.7882977Z ssh-user: git 2025-06-01T21:28:03.7883219Z persist-credentials: true 2025-06-01T21:28:03.7883459Z clean: true 2025-06-01T21:28:03.7883669Z sparse-checkout-cone-mode: true 2025-06-01T21:28:03.7883934Z fetch-tags: false 2025-06-01T21:28:03.7884137Z lfs: false 2025-06-01T21:28:03.7884336Z set-safe-directory: true 2025-06-01T21:28:03.7884554Z env: 2025-06-01T21:28:03.7884735Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:28:03.7884959Z ##[endgroup] 2025-06-01T21:28:03.9427365Z Syncing repository: pytorch/pytorch 2025-06-01T21:28:03.9428715Z ##[group]Getting Git version info 2025-06-01T21:28:03.9429116Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-06-01T21:28:03.9508265Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-06-01T21:28:03.9722530Z git version 2.47.1.windows.2 2025-06-01T21:28:03.9769474Z ##[endgroup] 2025-06-01T21:28:03.9782032Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\6d954f34-8062-4cda-805e-9d7faadfd765\.gitconfig' 2025-06-01T21:28:03.9800855Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\6d954f34-8062-4cda-805e-9d7faadfd765' before making global git config changes 2025-06-01T21:28:03.9803143Z Adding repository directory to the temporary git global config as a safe directory 2025-06-01T21:28:03.9810557Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:28:04.0056459Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-06-01T21:28:04.0062085Z ##[group]Initializing the repository 2025-06-01T21:28:04.0072362Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:28:04.0413454Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-06-01T21:28:04.0459785Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-06-01T21:28:04.0713133Z ##[endgroup] 2025-06-01T21:28:04.0713572Z ##[group]Disabling automatic garbage collection 2025-06-01T21:28:04.0724795Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-06-01T21:28:04.0964248Z ##[endgroup] 2025-06-01T21:28:04.0964680Z ##[group]Setting up auth 2025-06-01T21:28:04.0978286Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-06-01T21:28:04.1227782Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-06-01T21:28:04.5816209Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-01T21:28:04.6054792Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-06-01T21:28:04.9880590Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-06-01T21:28:05.0134444Z ##[endgroup] 2025-06-01T21:28:05.0134971Z ##[group]Fetching the repository 2025-06-01T21:28:05.0147757Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-06-01T21:28:59.1776651Z From https://github.com/pytorch/pytorch 2025-06-01T21:28:59.1777138Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-06-01T21:28:59.1777669Z * [new branch] Chillee-patch-1 -> origin/Chillee-patch-1 2025-06-01T21:28:59.1778485Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-06-01T21:28:59.1779213Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-06-01T21:28:59.1779890Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-06-01T21:28:59.1780478Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-06-01T21:28:59.1781052Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-06-01T21:28:59.1781636Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-06-01T21:28:59.1782209Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-06-01T21:28:59.1782730Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-06-01T21:28:59.1783407Z * [new branch] add-link-transformers-build-blocks -> origin/add-link-transformers-build-blocks 2025-06-01T21:28:59.1784128Z * [new branch] add-meta-tag-fsdp -> origin/add-meta-tag-fsdp 2025-06-01T21:28:59.1784716Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-06-01T21:28:59.1785293Z * [new branch] add-sitemap -> origin/add-sitemap 2025-06-01T21:28:59.1786549Z * [new branch] addUtilForLinuxBuild -> origin/addUtilForLinuxBuild 2025-06-01T21:28:59.1787126Z * [new branch] add_new_ops_in_fallback_ops -> origin/add_new_ops_in_fallback_ops 2025-06-01T21:28:59.1787761Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-06-01T21:28:59.1788276Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-06-01T21:28:59.1788747Z * [new branch] addsimde -> origin/addsimde 2025-06-01T21:28:59.1789216Z * [new branch] adi/gemm_bf16f32 -> origin/adi/gemm_bf16f32 2025-06-01T21:28:59.1789657Z * [new branch] adi/test -> origin/adi/test 2025-06-01T21:28:59.1790143Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-06-01T21:28:59.1790714Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-06-01T21:28:59.1791246Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-06-01T21:28:59.1791773Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-06-01T21:28:59.1792405Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-06-01T21:28:59.1793051Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-06-01T21:28:59.1793576Z * [new branch] albanD-patch-3 -> origin/albanD-patch-3 2025-06-01T21:28:59.1794097Z * [new branch] alt-disable -> origin/alt-disable 2025-06-01T21:28:59.1794562Z * [new branch] angelayi/152467 -> origin/angelayi/152467 2025-06-01T21:28:59.1795131Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-06-01T21:28:59.1795716Z * [new branch] angelayi/aoti_back -> origin/angelayi/aoti_back 2025-06-01T21:28:59.1796208Z * [new branch] angelayi/baddbmm -> origin/angelayi/baddbmm 2025-06-01T21:28:59.1796826Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-06-01T21:28:59.1797443Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-06-01T21:28:59.1797959Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-06-01T21:28:59.1798591Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-06-01T21:28:59.1799141Z * [new branch] angelayi/dont_malloc -> origin/angelayi/dont_malloc 2025-06-01T21:28:59.1799790Z * [new branch] angelayi/draft_export_doc -> origin/angelayi/draft_export_doc 2025-06-01T21:28:59.1800440Z * [new branch] angelayi/draft_export_public -> origin/angelayi/draft_export_public 2025-06-01T21:28:59.1801118Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-06-01T21:28:59.1801776Z * [new branch] angelayi/export_save -> origin/angelayi/export_save 2025-06-01T21:28:59.1802413Z * [new branch] angelayi/filter_stacktrace -> origin/angelayi/filter_stacktrace 2025-06-01T21:28:59.1803130Z * [new branch] angelayi/fix_additional_inputs -> origin/angelayi/fix_additional_inputs 2025-06-01T21:28:59.1803759Z * [new branch] angelayi/flake1 -> origin/angelayi/flake1 2025-06-01T21:28:59.2214452Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-06-01T21:28:59.2215088Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-06-01T21:28:59.2215671Z * [new branch] angelayi/meta_kernel_yaml2 -> origin/angelayi/meta_kernel_yaml2 2025-06-01T21:28:59.2216538Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-06-01T21:28:59.2217136Z * [new branch] angelayi/repeat_interleave -> origin/angelayi/repeat_interleave 2025-06-01T21:28:59.2217758Z * [new branch] angelayi/rm_unused_const -> origin/angelayi/rm_unused_const 2025-06-01T21:28:59.2218393Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-06-01T21:28:59.2218957Z * [new branch] angelayi/symint_help -> origin/angelayi/symint_help 2025-06-01T21:28:59.2219550Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-06-01T21:28:59.2220125Z * [new branch] angelayi/symint_input_3 -> origin/angelayi/symint_input_3 2025-06-01T21:28:59.2220747Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-06-01T21:28:59.2221338Z * [new branch] angelayi/unflatten_empty -> origin/angelayi/unflatten_empty 2025-06-01T21:28:59.2221928Z * [new branch] angelayi/unflatten_out -> origin/angelayi/unflatten_out 2025-06-01T21:28:59.2222533Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-06-01T21:28:59.2223065Z * [new branch] aoti_inference_test -> origin/aoti_inference_test 2025-06-01T21:28:59.2223548Z * [new branch] async-fix -> origin/async-fix 2025-06-01T21:28:59.2224079Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-06-01T21:28:59.2224749Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-06-01T21:28:59.2225337Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-06-01T21:28:59.2225820Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-06-01T21:28:59.2226311Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-06-01T21:28:59.2226780Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-06-01T21:28:59.2227290Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-06-01T21:28:59.2227937Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-06-01T21:28:59.2228502Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-06-01T21:28:59.2229078Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-06-01T21:28:59.2229771Z * [new branch] avoid-spammy-log-for-2.7 -> origin/avoid-spammy-log-for-2.7 2025-06-01T21:28:59.2230287Z * [new branch] base/1.5 -> origin/base/1.5 2025-06-01T21:28:59.2230846Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-06-01T21:28:59.2231470Z * [new branch] bcon_2.7 -> origin/bcon_2.7 2025-06-01T21:28:59.2231943Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-06-01T21:28:59.2232457Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-06-01T21:28:59.2233296Z * [new branch] benjaminglass1/aoti-inductor-clang-tidy-warnings -> origin/benjaminglass1/aoti-inductor-clang-tidy-warnings 2025-06-01T21:28:59.2234144Z * [new branch] benjaminglass1/aoti-output-code -> origin/benjaminglass1/aoti-output-code 2025-06-01T21:28:59.2235208Z * [new branch] benjaminglass1/fixup-aot-inductor-performance-benchmarks -> origin/benjaminglass1/fixup-aot-inductor-performance-benchmarks 2025-06-01T21:28:59.2236243Z * [new branch] benjaminglass1/improve_opoverload_typing -> origin/benjaminglass1/improve_opoverload_typing 2025-06-01T21:28:59.2237032Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-06-01T21:28:59.2237554Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-06-01T21:28:59.2238052Z * [new branch] bf/cg-foreach-op -> origin/bf/cg-foreach-op 2025-06-01T21:28:59.2238541Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-06-01T21:28:59.2239070Z * [new branch] bf/cg-side-stream-mem -> origin/bf/cg-side-stream-mem 2025-06-01T21:28:59.2239660Z * [new branch] bf/cg-skip-unbacked-symint-msg -> origin/bf/cg-skip-unbacked-symint-msg 2025-06-01T21:28:59.2240237Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-06-01T21:28:59.2240910Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-06-01T21:28:59.2625824Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-06-01T21:28:59.2626741Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-06-01T21:28:59.2627325Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-06-01T21:28:59.2627938Z * [new branch] bf/fa-small-block-mask -> origin/bf/fa-small-block-mask 2025-06-01T21:28:59.2628463Z * [new branch] bf/partition-cg -> origin/bf/partition-cg 2025-06-01T21:28:59.2628979Z * [new branch] bf/partition-cpu-read -> origin/bf/partition-cpu-read 2025-06-01T21:28:59.2629518Z * [new branch] bf/partition-fa -> origin/bf/partition-fa 2025-06-01T21:28:59.2630012Z * [new branch] bf/partition-flaky -> origin/bf/partition-flaky 2025-06-01T21:28:59.2630516Z * [new branch] bf/partition-gc -> origin/bf/partition-gc 2025-06-01T21:28:59.2631039Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-06-01T21:28:59.2631622Z * [new branch] bf/partition-move-cpu-scalar -> origin/bf/partition-move-cpu-scalar 2025-06-01T21:28:59.2632273Z * [new branch] bf/partition-precomputed-sym -> origin/bf/partition-precomputed-sym 2025-06-01T21:28:59.2632995Z * [new branch] bf/partition-relative-order-invariant -> origin/bf/partition-relative-order-invariant 2025-06-01T21:28:59.2633728Z * [new branch] bf/partition-remove-weak-dep -> origin/bf/partition-remove-weak-dep 2025-06-01T21:28:59.2634535Z * [new branch] bf/partition-removed-arg -> origin/bf/partition-removed-arg 2025-06-01T21:28:59.2635216Z * [new branch] bf/partition-standalone-compile -> origin/bf/partition-standalone-compile 2025-06-01T21:28:59.2635874Z * [new branch] bf/partition-symint-input -> origin/bf/partition-symint-input 2025-06-01T21:28:59.2636439Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-06-01T21:28:59.2637003Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-06-01T21:28:59.2637573Z * [new branch] bf/reinplace-diagonal -> origin/bf/reinplace-diagonal 2025-06-01T21:28:59.2638117Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-06-01T21:28:59.2638729Z * [new branch] bf/reorder-minimal-partition -> origin/bf/reorder-minimal-partition 2025-06-01T21:28:59.2639331Z * [new branch] bf/update-torchbench-pin -> origin/bf/update-torchbench-pin 2025-06-01T21:28:59.2639926Z * [new branch] bf/update-torchvision-pin -> origin/bf/update-torchvision-pin 2025-06-01T21:28:59.2640445Z * [new branch] bf16adamw -> origin/bf16adamw 2025-06-01T21:28:59.2640952Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-06-01T21:28:59.2642238Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-06-01T21:28:59.2642822Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-06-01T21:28:59.2643394Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-06-01T21:28:59.2643951Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-06-01T21:28:59.2644499Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-06-01T21:28:59.2645075Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-06-01T21:28:59.2645634Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-06-01T21:28:59.2646208Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-06-01T21:28:59.2646793Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-06-01T21:28:59.2647339Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-06-01T21:28:59.2647887Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-06-01T21:28:59.2648448Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-06-01T21:28:59.2649052Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-06-01T21:28:59.2649772Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-06-01T21:28:59.2650374Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-06-01T21:28:59.2650932Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-06-01T21:28:59.2651491Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-06-01T21:28:59.3009618Z * [new branch] bowbao/skip_decomp -> origin/bowbao/skip_decomp 2025-06-01T21:28:59.3010172Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-06-01T21:28:59.3010766Z * [new branch] bowenbao/docker_rocm_miniforge -> origin/bowenbao/docker_rocm_miniforge 2025-06-01T21:28:59.3011459Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-06-01T21:28:59.3012355Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-06-01T21:28:59.3012931Z * [new branch] brister/faster_grid_calc -> origin/brister/faster_grid_calc 2025-06-01T21:28:59.3013503Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-06-01T21:28:59.3014184Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-06-01T21:28:59.3014824Z * [new branch] brister/wrapper_call_arg -> origin/brister/wrapper_call_arg 2025-06-01T21:28:59.3015394Z * [new branch] brister/wrapper_clean_up -> origin/brister/wrapper_clean_up 2025-06-01T21:28:59.3015944Z * [new branch] brister/wrapper_ir -> origin/brister/wrapper_ir 2025-06-01T21:28:59.3016477Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-06-01T21:28:59.3016951Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-06-01T21:28:59.3017517Z * [new branch] camyllh/ff_linting_D72572050 -> origin/camyllh/ff_linting_D72572050 2025-06-01T21:28:59.3018091Z * [new branch] check-links -> origin/check-links 2025-06-01T21:28:59.3018872Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3019632Z * [new branch] cherry-pick-148320-by-pytorch_bot_bot_ -> origin/cherry-pick-148320-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3020400Z * [new branch] cherry-pick-148677-by-pytorch_bot_bot_ -> origin/cherry-pick-148677-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3021129Z * [new branch] cherry-pick-149356-by-pytorch_bot_bot_ -> origin/cherry-pick-149356-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3021873Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3022611Z * [new branch] cherry-pick-150010-by-pytorch_bot_bot_ -> origin/cherry-pick-150010-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3023343Z * [new branch] cherry-pick-150138-by-pytorch_bot_bot_ -> origin/cherry-pick-150138-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3024019Z * [new branch] cherry-pick-150308 -> origin/cherry-pick-150308 2025-06-01T21:28:59.3024677Z * [new branch] cherry-pick-150560-by-pytorch_bot_bot_ -> origin/cherry-pick-150560-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3025404Z * [new branch] cherry-pick-151158-by-pytorch_bot_bot_ -> origin/cherry-pick-151158-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3026133Z * [new branch] cherry-pick-151277-by-pytorch_bot_bot_ -> origin/cherry-pick-151277-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3026857Z * [new branch] cherry-pick-151344-by-pytorch_bot_bot_ -> origin/cherry-pick-151344-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3027689Z * [new branch] cherry-pick-151826-by-pytorch_bot_bot_ -> origin/cherry-pick-151826-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3028428Z * [new branch] cherry-pick-151848-by-pytorch_bot_bot_ -> origin/cherry-pick-151848-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3029169Z * [new branch] cherry-pick-152075-by-pytorch_bot_bot_ -> origin/cherry-pick-152075-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3029951Z * [new branch] cherry-pick-152287-by-pytorch_bot_bot_ -> origin/cherry-pick-152287-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3030726Z * [new branch] cherry-pick-152396-by-pytorch_bot_bot_ -> origin/cherry-pick-152396-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3031458Z * [new branch] cherry-pick-152399-by-pytorch_bot_bot_ -> origin/cherry-pick-152399-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3032188Z * [new branch] cherry-pick-152641-by-pytorch_bot_bot_ -> origin/cherry-pick-152641-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3033030Z * [new branch] cherry-pick-153002-by-pytorch_bot_bot_ -> origin/cherry-pick-153002-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3033808Z * [new branch] cherry-pick-153067-by-pytorch_bot_bot_ -> origin/cherry-pick-153067-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3034536Z * [new branch] cherry-pick-153671-by-pytorch_bot_bot_ -> origin/cherry-pick-153671-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3035275Z * [new branch] cherry-pick-153848-by-pytorch_bot_bot_ -> origin/cherry-pick-153848-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3437947Z * [new branch] cherry-pick-153925-by-pytorch_bot_bot_ -> origin/cherry-pick-153925-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3438795Z * [new branch] cherry-pick-154041-by-pytorch_bot_bot_ -> origin/cherry-pick-154041-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3439558Z * [new branch] cherry-pick-154045-by-pytorch_bot_bot_ -> origin/cherry-pick-154045-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3440332Z * [new branch] cherry-pick-154055-by-pytorch_bot_bot_ -> origin/cherry-pick-154055-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3441063Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-06-01T21:28:59.3441691Z * [new branch] cherry-pick-to-2.7 -> origin/cherry-pick-to-2.7 2025-06-01T21:28:59.3442414Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-06-01T21:28:59.3442976Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-06-01T21:28:59.3443547Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-06-01T21:28:59.3444108Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-06-01T21:28:59.3444598Z * [new branch] cleantest1 -> origin/cleantest1 2025-06-01T21:28:59.3445071Z * [new branch] collective_c_shim -> origin/collective_c_shim 2025-06-01T21:28:59.3445665Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-06-01T21:28:59.3446303Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-06-01T21:28:59.3446835Z * [new branch] consolidate-is-qat -> origin/consolidate-is-qat 2025-06-01T21:28:59.3447321Z * [new branch] context_test -> origin/context_test 2025-06-01T21:28:59.3447773Z * [new branch] context_test_2.7.1 -> origin/context_test_2.7.1 2025-06-01T21:28:59.3448239Z * [new branch] copy_graph -> origin/copy_graph 2025-06-01T21:28:59.3448705Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-06-01T21:28:59.3449195Z * [new branch] cpio/fix_unit_test -> origin/cpio/fix_unit_test 2025-06-01T21:28:59.3449696Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-06-01T21:28:59.3450305Z * [new branch] csl/autoformat_merge_exception -> origin/csl/autoformat_merge_exception 2025-06-01T21:28:59.3450933Z * [new branch] csl/autoformat_trigger -> origin/csl/autoformat_trigger 2025-06-01T21:28:59.3451448Z * [new branch] csl/binary_ios_remove -> origin/csl/binary_ios_remove 2025-06-01T21:28:59.3451964Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-06-01T21:28:59.3452508Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-06-01T21:28:59.3453007Z * [new branch] csl/conda_lint -> origin/csl/conda_lint 2025-06-01T21:28:59.3453463Z * [new branch] csl/conda_rand -> origin/csl/conda_rand 2025-06-01T21:28:59.3454052Z * [new branch] csl/conda_rand_2 -> origin/csl/conda_rand_2 2025-06-01T21:28:59.3454550Z * [new branch] csl/conda_swap_some_pip -> origin/csl/conda_swap_some_pip 2025-06-01T21:28:59.3455085Z * [new branch] csl/disable_failing_test -> origin/csl/disable_failing_test 2025-06-01T21:28:59.3455609Z * [new branch] csl/docker_image_rename -> origin/csl/docker_image_rename 2025-06-01T21:28:59.3456214Z * [new branch] csl/docker_name_remove_compat -> origin/csl/docker_name_remove_compat 2025-06-01T21:28:59.3456768Z * [new branch] csl/katex -> origin/csl/katex 2025-06-01T21:28:59.3457215Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-06-01T21:28:59.3457684Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-06-01T21:28:59.3458171Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-06-01T21:28:59.3458687Z * [new branch] csl/no_protobuf_docker -> origin/csl/no_protobuf_docker 2025-06-01T21:28:59.3459178Z * [new branch] csl/pytest_timeout -> origin/csl/pytest_timeout 2025-06-01T21:28:59.3459664Z * [new branch] csl/reuse_old_whl -> origin/csl/reuse_old_whl 2025-06-01T21:28:59.3460321Z * [new branch] csl/reuse_old_whl_delete_old_whl -> origin/csl/reuse_old_whl_delete_old_whl 2025-06-01T21:28:59.3460931Z * [new branch] csl/reuse_old_whl_more_workflows -> origin/csl/reuse_old_whl_more_workflows 2025-06-01T21:28:59.3461510Z * [new branch] csl/reuse_old_whl_no_delete -> origin/csl/reuse_old_whl_no_delete 2025-06-01T21:28:59.3462078Z * [new branch] csl/reuse_old_whl_prs -> origin/csl/reuse_old_whl_prs 2025-06-01T21:28:59.3462709Z * [new branch] csl/reuse_old_whl_replace_version -> origin/csl/reuse_old_whl_replace_version 2025-06-01T21:28:59.3895216Z * [new branch] csl/revert_message_stacked -> origin/csl/revert_message_stacked 2025-06-01T21:28:59.3895824Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-06-01T21:28:59.3896381Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-06-01T21:28:59.3897033Z * [new branch] csl/test_cusparse_binary_docker -> origin/csl/test_cusparse_binary_docker 2025-06-01T21:28:59.3897605Z * [new branch] csl/unify_install_cuda -> origin/csl/unify_install_cuda 2025-06-01T21:28:59.3898164Z * [new branch] csl/unify_install_cusparselt -> origin/csl/unify_install_cusparselt 2025-06-01T21:28:59.3898732Z * [new branch] csl/upgrad_sccache_version -> origin/csl/upgrad_sccache_version 2025-06-01T21:28:59.3899311Z * [new branch] csl/upload_stats_linux_aarch64 -> origin/csl/upload_stats_linux_aarch64 2025-06-01T21:28:59.3899850Z * [new branch] csl/xla_sccache -> origin/csl/xla_sccache 2025-06-01T21:28:59.3900334Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-06-01T21:28:59.3900839Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-06-01T21:28:59.3901373Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-06-01T21:28:59.3901890Z * [new branch] d4l3k/fsdp_wait -> origin/d4l3k/fsdp_wait 2025-06-01T21:28:59.3902628Z * [new branch] dependabot/pip/dot-github/requirements/pillow-10.3.0 -> origin/dependabot/pip/dot-github/requirements/pillow-10.3.0 2025-06-01T21:28:59.3903637Z * [new branch] dependabot/pip/tools/build/bazel/setuptools-78.1.1 -> origin/dependabot/pip/tools/build/bazel/setuptools-78.1.1 2025-06-01T21:28:59.3904418Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-06-01T21:28:59.3905287Z * [new branch] desertfire/torchgen_support_default_arg -> origin/desertfire/torchgen_support_default_arg 2025-06-01T21:28:59.3906022Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-06-01T21:28:59.3906644Z * [new branch] desertfire/update_hf_pin -> origin/desertfire/update_hf_pin 2025-06-01T21:28:59.3907259Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-06-01T21:28:59.3907905Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-06-01T21:28:59.3908406Z * [new branch] dev/joona/cachingkey -> origin/dev/joona/cachingkey 2025-06-01T21:28:59.3908893Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-06-01T21:28:59.3909450Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-06-01T21:28:59.3910015Z * [new branch] dev/joona/convtranspose3d -> origin/dev/joona/convtranspose3d 2025-06-01T21:28:59.3910583Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-06-01T21:28:59.3911144Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-06-01T21:28:59.3912377Z * [new branch] dev/joona/mps_linear -> origin/dev/joona/mps_linear 2025-06-01T21:28:59.3912934Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-06-01T21:28:59.3913528Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-06-01T21:28:59.3914139Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-06-01T21:28:59.3914713Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-06-01T21:28:59.3915213Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-06-01T21:28:59.3915667Z * [new branch] disable -> origin/disable 2025-06-01T21:28:59.3916164Z * [new branch] disable_fp_contract_baseline -> origin/disable_fp_contract_baseline 2025-06-01T21:28:59.3916649Z * [new branch] divup -> origin/divup 2025-06-01T21:28:59.3917152Z * [new branch] divyanshk-update-codeowners -> origin/divyanshk-update-codeowners 2025-06-01T21:28:59.3917683Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-06-01T21:28:59.3918207Z * [new branch] eikanwang/eager_torch_compile -> origin/eikanwang/eager_torch_compile 2025-06-01T21:28:59.3918790Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-06-01T21:28:59.3919386Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-06-01T21:28:59.3919998Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-06-01T21:28:59.3920578Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-06-01T21:28:59.4324496Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-06-01T21:28:59.4325126Z * [new branch] enableMoreTests -> origin/enableMoreTests 2025-06-01T21:28:59.4325645Z * [new branch] enableMoreUtilTests -> origin/enableMoreUtilTests 2025-06-01T21:28:59.4326143Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-06-01T21:28:59.4326598Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-06-01T21:28:59.4327037Z * [new branch] eqy-patch-11 -> origin/eqy-patch-11 2025-06-01T21:28:59.4327477Z * [new branch] eqy-patch-12 -> origin/eqy-patch-12 2025-06-01T21:28:59.4328122Z * [new branch] eqy-patch-13 -> origin/eqy-patch-13 2025-06-01T21:28:59.4328556Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-06-01T21:28:59.4329005Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-06-01T21:28:59.4329430Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-06-01T21:28:59.4329878Z * [new branch] eqy-patch-7 -> origin/eqy-patch-7 2025-06-01T21:28:59.4330310Z * [new branch] eqy-patch-9 -> origin/eqy-patch-9 2025-06-01T21:28:59.4330874Z * [new branch] error-when-setattr-over-cls-attr -> origin/error-when-setattr-over-cls-attr 2025-06-01T21:28:59.4331527Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-06-01T21:28:59.4332182Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-06-01T21:28:59.4332931Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-06-01T21:28:59.4333749Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-06-01T21:28:59.4334498Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-06-01T21:28:59.4335309Z * [new branch] exclamaforte/flag-metrics -> origin/exclamaforte/flag-metrics 2025-06-01T21:28:59.4336022Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-06-01T21:28:59.4336738Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-06-01T21:28:59.4337353Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-06-01T21:28:59.4338022Z * [new branch] exclamaforte/heuristic-choices-2 -> origin/exclamaforte/heuristic-choices-2 2025-06-01T21:28:59.4338632Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-06-01T21:28:59.4339263Z * [new branch] exclamaforte/max-autotune-dtype-test -> origin/exclamaforte/max-autotune-dtype-test 2025-06-01T21:28:59.4339942Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-06-01T21:28:59.4340634Z * [new branch] exclamaforte/scheduler-flops-refactor -> origin/exclamaforte/scheduler-flops-refactor 2025-06-01T21:28:59.4341348Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-06-01T21:28:59.4342022Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-06-01T21:28:59.4342728Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-06-01T21:28:59.4343308Z * [new branch] exec -> origin/exec 2025-06-01T21:28:59.4343768Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-06-01T21:28:59.4344269Z * [new branch] export-D52434604 -> origin/export-D52434604 2025-06-01T21:28:59.4344749Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-06-01T21:28:59.4345208Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-06-01T21:28:59.4345683Z * [new branch] export-D68245292 -> origin/export-D68245292 2025-06-01T21:28:59.4346148Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-06-01T21:28:59.4346604Z * [new branch] export-D69361235 -> origin/export-D69361235 2025-06-01T21:28:59.4347067Z * [new branch] export-D70193972 -> origin/export-D70193972 2025-06-01T21:28:59.4347711Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-06-01T21:28:59.4348182Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-06-01T21:28:59.4348641Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-06-01T21:28:59.4349118Z * [new branch] export-D72762767 -> origin/export-D72762767 2025-06-01T21:28:59.4349579Z * [new branch] export-D72978020 -> origin/export-D72978020 2025-06-01T21:28:59.5046559Z * [new branch] export-D73008663 -> origin/export-D73008663 2025-06-01T21:28:59.5047096Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-06-01T21:28:59.5047578Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-06-01T21:28:59.5048056Z * [new branch] export-D73399889 -> origin/export-D73399889 2025-06-01T21:28:59.5048561Z * [new branch] export-D73867797 -> origin/export-D73867797 2025-06-01T21:28:59.5049029Z * [new branch] export-D74033649 -> origin/export-D74033649 2025-06-01T21:28:59.5049492Z * [new branch] export-D74085173 -> origin/export-D74085173 2025-06-01T21:28:59.5050140Z * [new branch] export-D74398762 -> origin/export-D74398762 2025-06-01T21:28:59.5050624Z * [new branch] export-D74444990 -> origin/export-D74444990 2025-06-01T21:28:59.5051089Z * [new branch] export-D74599203 -> origin/export-D74599203 2025-06-01T21:28:59.5051566Z * [new branch] export-D74664734 -> origin/export-D74664734 2025-06-01T21:28:59.5052039Z * [new branch] export-D74911818 -> origin/export-D74911818 2025-06-01T21:28:59.5052496Z * [new branch] export-D75159672 -> origin/export-D75159672 2025-06-01T21:28:59.5052968Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-06-01T21:28:59.5053426Z * [new branch] export-D75313723 -> origin/export-D75313723 2025-06-01T21:28:59.5053887Z * [new branch] export-D75360856 -> origin/export-D75360856 2025-06-01T21:28:59.5054350Z * [new branch] export-D75568693 -> origin/export-D75568693 2025-06-01T21:28:59.5054815Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-06-01T21:28:59.5055287Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-06-01T21:28:59.5055741Z * [new branch] export-D75617963 -> origin/export-D75617963 2025-06-01T21:28:59.5056208Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-06-01T21:28:59.5056788Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-06-01T21:28:59.5057370Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-06-01T21:28:59.5057833Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-06-01T21:28:59.5058292Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-06-01T21:28:59.5058713Z * [new branch] fca -> origin/fca 2025-06-01T21:28:59.5059114Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-06-01T21:28:59.5059531Z * [new branch] fca5 -> origin/fca5 2025-06-01T21:28:59.5060037Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-06-01T21:28:59.5060730Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-06-01T21:28:59.5061568Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-06-01T21:28:59.5062366Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-06-01T21:28:59.5062872Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-06-01T21:28:59.5063370Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-06-01T21:28:59.5063857Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-06-01T21:28:59.5064377Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-06-01T21:28:59.5064930Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-06-01T21:28:59.5065488Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-06-01T21:28:59.5065992Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-06-01T21:28:59.5066514Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-06-01T21:28:59.5067070Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-06-01T21:28:59.5067699Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-06-01T21:28:59.5068347Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-06-01T21:28:59.5068942Z * [new branch] findhao/update_clean_triton_script -> origin/findhao/update_clean_triton_script 2025-06-01T21:28:59.5069487Z * [new branch] fix -> origin/fix 2025-06-01T21:28:59.5069894Z * [new branch] fix-149722 -> origin/fix-149722 2025-06-01T21:28:59.5070310Z * [new branch] fix-2.7 -> origin/fix-2.7 2025-06-01T21:28:59.6665486Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-06-01T21:28:59.6666113Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-06-01T21:28:59.6666654Z * [new branch] fix-cpu-affinity-cgroups -> origin/fix-cpu-affinity-cgroups 2025-06-01T21:28:59.6667195Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-06-01T21:28:59.6667803Z * [new branch] fix-for-patch-doc-build -> origin/fix-for-patch-doc-build 2025-06-01T21:28:59.6668390Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-06-01T21:28:59.6668901Z * [new branch] fix-links -> origin/fix-links 2025-06-01T21:28:59.6669329Z * [new branch] fix-urls -> origin/fix-urls 2025-06-01T21:28:59.6669762Z * [new branch] fix-urls-2 -> origin/fix-urls-2 2025-06-01T21:28:59.6670332Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-06-01T21:28:59.6670884Z * [new branch] fix_partial -> origin/fix_partial 2025-06-01T21:28:59.6671319Z * [new branch] fixes-triage -> origin/fixes-triage 2025-06-01T21:28:59.6671851Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-06-01T21:28:59.6672472Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-06-01T21:28:59.6673162Z * [new branch] fmassa/partitioner_knapsack_checkpoint -> origin/fmassa/partitioner_knapsack_checkpoint 2025-06-01T21:28:59.6673784Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-06-01T21:28:59.6674245Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-06-01T21:28:59.6674690Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-06-01T21:28:59.6675307Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-06-01T21:28:59.6675733Z * [new branch] fused_qkv -> origin/fused_qkv 2025-06-01T21:28:59.6676198Z * [new branch] fx_cpp -> origin/fx_cpp 2025-06-01T21:28:59.6676693Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-06-01T21:28:59.6677180Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-06-01T21:28:59.6677650Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-06-01T21:28:59.6678110Z * [new branch] gh/CaoE/1/base -> origin/gh/CaoE/1/base 2025-06-01T21:28:59.6678555Z * [new branch] gh/CaoE/1/head -> origin/gh/CaoE/1/head 2025-06-01T21:28:59.6678990Z * [new branch] gh/CaoE/1/orig -> origin/gh/CaoE/1/orig 2025-06-01T21:28:59.6679440Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-06-01T21:28:59.6679871Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-06-01T21:28:59.6680313Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-06-01T21:28:59.6680755Z * [new branch] gh/CaoE/3/base -> origin/gh/CaoE/3/base 2025-06-01T21:28:59.6681307Z * [new branch] gh/CaoE/3/head -> origin/gh/CaoE/3/head 2025-06-01T21:28:59.6681762Z * [new branch] gh/CaoE/3/orig -> origin/gh/CaoE/3/orig 2025-06-01T21:28:59.6682319Z * [new branch] gh/ColinPeppler/67/base -> origin/gh/ColinPeppler/67/base 2025-06-01T21:28:59.6682918Z * [new branch] gh/ColinPeppler/67/head -> origin/gh/ColinPeppler/67/head 2025-06-01T21:28:59.6683512Z * [new branch] gh/ColinPeppler/67/orig -> origin/gh/ColinPeppler/67/orig 2025-06-01T21:28:59.6684055Z * [new branch] gh/ColinPeppler/68/base -> origin/gh/ColinPeppler/68/base 2025-06-01T21:28:59.6684635Z * [new branch] gh/ColinPeppler/68/head -> origin/gh/ColinPeppler/68/head 2025-06-01T21:28:59.6685175Z * [new branch] gh/ColinPeppler/68/orig -> origin/gh/ColinPeppler/68/orig 2025-06-01T21:28:59.6685720Z * [new branch] gh/ColinPeppler/69/base -> origin/gh/ColinPeppler/69/base 2025-06-01T21:28:59.6686268Z * [new branch] gh/ColinPeppler/69/head -> origin/gh/ColinPeppler/69/head 2025-06-01T21:28:59.6686802Z * [new branch] gh/ColinPeppler/69/orig -> origin/gh/ColinPeppler/69/orig 2025-06-01T21:28:59.6687337Z * [new branch] gh/ColinPeppler/70/base -> origin/gh/ColinPeppler/70/base 2025-06-01T21:28:59.6687869Z * [new branch] gh/ColinPeppler/70/head -> origin/gh/ColinPeppler/70/head 2025-06-01T21:28:59.6688410Z * [new branch] gh/ColinPeppler/70/orig -> origin/gh/ColinPeppler/70/orig 2025-06-01T21:28:59.6688934Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-06-01T21:28:59.6689448Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-06-01T21:28:59.6689951Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-06-01T21:28:59.7163361Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-06-01T21:28:59.7163998Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-06-01T21:28:59.7164560Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-06-01T21:28:59.7165149Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-06-01T21:28:59.7165714Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-06-01T21:28:59.7166454Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-06-01T21:28:59.7167048Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-06-01T21:28:59.7167600Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-06-01T21:28:59.7168116Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-06-01T21:28:59.7168649Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-06-01T21:28:59.7169158Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-06-01T21:28:59.7169686Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-06-01T21:28:59.7170198Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-06-01T21:28:59.7170725Z * [new branch] gh/H-Huang/160/base -> origin/gh/H-Huang/160/base 2025-06-01T21:28:59.7171292Z * [new branch] gh/H-Huang/160/head -> origin/gh/H-Huang/160/head 2025-06-01T21:28:59.7171801Z * [new branch] gh/H-Huang/160/orig -> origin/gh/H-Huang/160/orig 2025-06-01T21:28:59.7172321Z * [new branch] gh/H-Huang/168/base -> origin/gh/H-Huang/168/base 2025-06-01T21:28:59.7172831Z * [new branch] gh/H-Huang/168/head -> origin/gh/H-Huang/168/head 2025-06-01T21:28:59.7173528Z * [new branch] gh/H-Huang/168/orig -> origin/gh/H-Huang/168/orig 2025-06-01T21:28:59.7174062Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-06-01T21:28:59.7174605Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-06-01T21:28:59.7175148Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-06-01T21:28:59.7175662Z * [new branch] gh/H-Huang/175/base -> origin/gh/H-Huang/175/base 2025-06-01T21:28:59.7176184Z * [new branch] gh/H-Huang/175/head -> origin/gh/H-Huang/175/head 2025-06-01T21:28:59.7176710Z * [new branch] gh/H-Huang/175/orig -> origin/gh/H-Huang/175/orig 2025-06-01T21:28:59.7177224Z * [new branch] gh/H-Huang/176/base -> origin/gh/H-Huang/176/base 2025-06-01T21:28:59.7177749Z * [new branch] gh/H-Huang/176/head -> origin/gh/H-Huang/176/head 2025-06-01T21:28:59.7178262Z * [new branch] gh/H-Huang/176/orig -> origin/gh/H-Huang/176/orig 2025-06-01T21:28:59.7178817Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-06-01T21:28:59.7179327Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-06-01T21:28:59.7179837Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-06-01T21:28:59.7180308Z * [new branch] gh/H-Huang/178/base -> origin/gh/H-Huang/178/base 2025-06-01T21:28:59.7180774Z * [new branch] gh/H-Huang/178/head -> origin/gh/H-Huang/178/head 2025-06-01T21:28:59.7181243Z * [new branch] gh/H-Huang/178/orig -> origin/gh/H-Huang/178/orig 2025-06-01T21:28:59.7181708Z * [new branch] gh/H-Huang/179/base -> origin/gh/H-Huang/179/base 2025-06-01T21:28:59.7182170Z * [new branch] gh/H-Huang/179/head -> origin/gh/H-Huang/179/head 2025-06-01T21:28:59.7182642Z * [new branch] gh/H-Huang/179/orig -> origin/gh/H-Huang/179/orig 2025-06-01T21:28:59.7183102Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-06-01T21:28:59.7183571Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-06-01T21:28:59.7184044Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-06-01T21:28:59.7184618Z * [new branch] gh/H-Huang/181/base -> origin/gh/H-Huang/181/base 2025-06-01T21:28:59.7185092Z * [new branch] gh/H-Huang/181/head -> origin/gh/H-Huang/181/head 2025-06-01T21:28:59.7185610Z * [new branch] gh/H-Huang/181/orig -> origin/gh/H-Huang/181/orig 2025-06-01T21:28:59.7186131Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-06-01T21:28:59.7186651Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-06-01T21:28:59.7187127Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-06-01T21:28:59.7187693Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-06-01T21:28:59.7665766Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-06-01T21:28:59.7666314Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-06-01T21:28:59.7666835Z * [new branch] gh/H-Huang/184/base -> origin/gh/H-Huang/184/base 2025-06-01T21:28:59.7667306Z * [new branch] gh/H-Huang/184/head -> origin/gh/H-Huang/184/head 2025-06-01T21:28:59.7694672Z * [new branch] gh/H-Huang/184/orig -> origin/gh/H-Huang/184/orig 2025-06-01T21:28:59.7695271Z * [new branch] gh/H-Huang/185/base -> origin/gh/H-Huang/185/base 2025-06-01T21:28:59.7696058Z * [new branch] gh/H-Huang/185/head -> origin/gh/H-Huang/185/head 2025-06-01T21:28:59.7696557Z * [new branch] gh/H-Huang/185/orig -> origin/gh/H-Huang/185/orig 2025-06-01T21:28:59.7697092Z * [new branch] gh/IvanKobzarev/100/base -> origin/gh/IvanKobzarev/100/base 2025-06-01T21:28:59.7697663Z * [new branch] gh/IvanKobzarev/100/head -> origin/gh/IvanKobzarev/100/head 2025-06-01T21:28:59.7698218Z * [new branch] gh/IvanKobzarev/100/orig -> origin/gh/IvanKobzarev/100/orig 2025-06-01T21:28:59.7698789Z * [new branch] gh/IvanKobzarev/106/base -> origin/gh/IvanKobzarev/106/base 2025-06-01T21:28:59.7699335Z * [new branch] gh/IvanKobzarev/106/head -> origin/gh/IvanKobzarev/106/head 2025-06-01T21:28:59.7699901Z * [new branch] gh/IvanKobzarev/106/orig -> origin/gh/IvanKobzarev/106/orig 2025-06-01T21:28:59.7700467Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-06-01T21:28:59.7701019Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-06-01T21:28:59.7701586Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-06-01T21:28:59.7702138Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-06-01T21:28:59.7702692Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-06-01T21:28:59.7703268Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-06-01T21:28:59.7703878Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-06-01T21:28:59.7704536Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-06-01T21:28:59.7705089Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-06-01T21:28:59.7705661Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-06-01T21:28:59.7706218Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-06-01T21:28:59.7706763Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-06-01T21:28:59.7707325Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-06-01T21:28:59.7707952Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-06-01T21:28:59.7709343Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-06-01T21:28:59.7709914Z * [new branch] gh/IvanKobzarev/64/base -> origin/gh/IvanKobzarev/64/base 2025-06-01T21:28:59.7710461Z * [new branch] gh/IvanKobzarev/64/head -> origin/gh/IvanKobzarev/64/head 2025-06-01T21:28:59.7711020Z * [new branch] gh/IvanKobzarev/64/orig -> origin/gh/IvanKobzarev/64/orig 2025-06-01T21:28:59.7711563Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-06-01T21:28:59.7712125Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-06-01T21:28:59.7712667Z * [new branch] gh/NikhilAPatel/10/base -> origin/gh/NikhilAPatel/10/base 2025-06-01T21:28:59.7713223Z * [new branch] gh/NikhilAPatel/10/head -> origin/gh/NikhilAPatel/10/head 2025-06-01T21:28:59.7713782Z * [new branch] gh/NikhilAPatel/10/orig -> origin/gh/NikhilAPatel/10/orig 2025-06-01T21:28:59.7714324Z * [new branch] gh/NikhilAPatel/11/base -> origin/gh/NikhilAPatel/11/base 2025-06-01T21:28:59.7714866Z * [new branch] gh/NikhilAPatel/11/head -> origin/gh/NikhilAPatel/11/head 2025-06-01T21:28:59.7715509Z * [new branch] gh/NikhilAPatel/11/orig -> origin/gh/NikhilAPatel/11/orig 2025-06-01T21:28:59.7716061Z * [new branch] gh/NikhilAPatel/12/base -> origin/gh/NikhilAPatel/12/base 2025-06-01T21:28:59.7716606Z * [new branch] gh/NikhilAPatel/12/head -> origin/gh/NikhilAPatel/12/head 2025-06-01T21:28:59.7717142Z * [new branch] gh/NikhilAPatel/12/orig -> origin/gh/NikhilAPatel/12/orig 2025-06-01T21:28:59.7717698Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-06-01T21:28:59.7718236Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-06-01T21:28:59.8143448Z * [new branch] gh/NikhilAPatel/3/base -> origin/gh/NikhilAPatel/3/base 2025-06-01T21:28:59.8144067Z * [new branch] gh/NikhilAPatel/3/head -> origin/gh/NikhilAPatel/3/head 2025-06-01T21:28:59.8144615Z * [new branch] gh/NikhilAPatel/3/orig -> origin/gh/NikhilAPatel/3/orig 2025-06-01T21:28:59.8145196Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-06-01T21:28:59.8145729Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-06-01T21:28:59.8146277Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-06-01T21:28:59.8146823Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-06-01T21:28:59.8147403Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-06-01T21:28:59.8148124Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-06-01T21:28:59.8148658Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-06-01T21:28:59.8149209Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-06-01T21:28:59.8149765Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-06-01T21:28:59.8150295Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-06-01T21:28:59.8150825Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-06-01T21:28:59.8151351Z * [new branch] gh/PaulZhang12/12/base -> origin/gh/PaulZhang12/12/base 2025-06-01T21:28:59.8151895Z * [new branch] gh/PaulZhang12/12/head -> origin/gh/PaulZhang12/12/head 2025-06-01T21:28:59.8152429Z * [new branch] gh/PaulZhang12/13/base -> origin/gh/PaulZhang12/13/base 2025-06-01T21:28:59.8153159Z * [new branch] gh/PaulZhang12/13/head -> origin/gh/PaulZhang12/13/head 2025-06-01T21:28:59.8153765Z * [new branch] gh/PaulZhang12/13/orig -> origin/gh/PaulZhang12/13/orig 2025-06-01T21:28:59.8154342Z * [new branch] gh/PaulZhang12/14/base -> origin/gh/PaulZhang12/14/base 2025-06-01T21:28:59.8154891Z * [new branch] gh/PaulZhang12/14/head -> origin/gh/PaulZhang12/14/head 2025-06-01T21:28:59.8155435Z * [new branch] gh/PaulZhang12/14/orig -> origin/gh/PaulZhang12/14/orig 2025-06-01T21:28:59.8155961Z * [new branch] gh/PaulZhang12/15/base -> origin/gh/PaulZhang12/15/base 2025-06-01T21:28:59.8156498Z * [new branch] gh/PaulZhang12/15/head -> origin/gh/PaulZhang12/15/head 2025-06-01T21:28:59.8157020Z * [new branch] gh/PaulZhang12/15/orig -> origin/gh/PaulZhang12/15/orig 2025-06-01T21:28:59.8157581Z * [new branch] gh/PaulZhang12/16/base -> origin/gh/PaulZhang12/16/base 2025-06-01T21:28:59.8158124Z * [new branch] gh/PaulZhang12/16/head -> origin/gh/PaulZhang12/16/head 2025-06-01T21:28:59.8158650Z * [new branch] gh/PaulZhang12/16/orig -> origin/gh/PaulZhang12/16/orig 2025-06-01T21:28:59.8159196Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-06-01T21:28:59.8160549Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-06-01T21:28:59.8161111Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-06-01T21:28:59.8161661Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-06-01T21:28:59.8162191Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-06-01T21:28:59.8162730Z * [new branch] gh/PaulZhang12/9/base -> origin/gh/PaulZhang12/9/base 2025-06-01T21:28:59.8163255Z * [new branch] gh/PaulZhang12/9/head -> origin/gh/PaulZhang12/9/head 2025-06-01T21:28:59.8163789Z * [new branch] gh/PaulZhang12/9/orig -> origin/gh/PaulZhang12/9/orig 2025-06-01T21:28:59.8164314Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-06-01T21:28:59.8164861Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-06-01T21:28:59.8165429Z * [new branch] gh/Sidharth123-cpu/1/base -> origin/gh/Sidharth123-cpu/1/base 2025-06-01T21:28:59.8166091Z * [new branch] gh/Sidharth123-cpu/1/head -> origin/gh/Sidharth123-cpu/1/head 2025-06-01T21:28:59.8166715Z * [new branch] gh/Sidharth123-cpu/1/orig -> origin/gh/Sidharth123-cpu/1/orig 2025-06-01T21:28:59.8167329Z * [new branch] gh/Sidharth123-cpu/10/base -> origin/gh/Sidharth123-cpu/10/base 2025-06-01T21:28:59.8168007Z * [new branch] gh/Sidharth123-cpu/10/head -> origin/gh/Sidharth123-cpu/10/head 2025-06-01T21:28:59.8168623Z * [new branch] gh/Sidharth123-cpu/10/orig -> origin/gh/Sidharth123-cpu/10/orig 2025-06-01T21:28:59.8169235Z * [new branch] gh/Sidharth123-cpu/11/base -> origin/gh/Sidharth123-cpu/11/base 2025-06-01T21:28:59.8590468Z * [new branch] gh/Sidharth123-cpu/11/head -> origin/gh/Sidharth123-cpu/11/head 2025-06-01T21:28:59.8591093Z * [new branch] gh/Sidharth123-cpu/11/orig -> origin/gh/Sidharth123-cpu/11/orig 2025-06-01T21:28:59.8591721Z * [new branch] gh/Sidharth123-cpu/12/base -> origin/gh/Sidharth123-cpu/12/base 2025-06-01T21:28:59.8592304Z * [new branch] gh/Sidharth123-cpu/12/head -> origin/gh/Sidharth123-cpu/12/head 2025-06-01T21:28:59.8592874Z * [new branch] gh/Sidharth123-cpu/12/orig -> origin/gh/Sidharth123-cpu/12/orig 2025-06-01T21:28:59.8593649Z * [new branch] gh/Sidharth123-cpu/13/base -> origin/gh/Sidharth123-cpu/13/base 2025-06-01T21:28:59.8594229Z * [new branch] gh/Sidharth123-cpu/13/head -> origin/gh/Sidharth123-cpu/13/head 2025-06-01T21:28:59.8594798Z * [new branch] gh/Sidharth123-cpu/14/base -> origin/gh/Sidharth123-cpu/14/base 2025-06-01T21:28:59.8595425Z * [new branch] gh/Sidharth123-cpu/14/head -> origin/gh/Sidharth123-cpu/14/head 2025-06-01T21:28:59.8596050Z * [new branch] gh/Sidharth123-cpu/14/orig -> origin/gh/Sidharth123-cpu/14/orig 2025-06-01T21:28:59.8596627Z * [new branch] gh/Sidharth123-cpu/15/base -> origin/gh/Sidharth123-cpu/15/base 2025-06-01T21:28:59.8597196Z * [new branch] gh/Sidharth123-cpu/15/head -> origin/gh/Sidharth123-cpu/15/head 2025-06-01T21:28:59.8597752Z * [new branch] gh/Sidharth123-cpu/15/orig -> origin/gh/Sidharth123-cpu/15/orig 2025-06-01T21:28:59.8598320Z * [new branch] gh/Sidharth123-cpu/16/base -> origin/gh/Sidharth123-cpu/16/base 2025-06-01T21:28:59.8598882Z * [new branch] gh/Sidharth123-cpu/16/head -> origin/gh/Sidharth123-cpu/16/head 2025-06-01T21:28:59.8599449Z * [new branch] gh/Sidharth123-cpu/16/orig -> origin/gh/Sidharth123-cpu/16/orig 2025-06-01T21:28:59.8600021Z * [new branch] gh/Sidharth123-cpu/17/base -> origin/gh/Sidharth123-cpu/17/base 2025-06-01T21:28:59.8600703Z * [new branch] gh/Sidharth123-cpu/17/head -> origin/gh/Sidharth123-cpu/17/head 2025-06-01T21:28:59.8601285Z * [new branch] gh/Sidharth123-cpu/17/orig -> origin/gh/Sidharth123-cpu/17/orig 2025-06-01T21:28:59.8601932Z * [new branch] gh/Sidharth123-cpu/18/base -> origin/gh/Sidharth123-cpu/18/base 2025-06-01T21:28:59.8602538Z * [new branch] gh/Sidharth123-cpu/18/head -> origin/gh/Sidharth123-cpu/18/head 2025-06-01T21:28:59.8603121Z * [new branch] gh/Sidharth123-cpu/18/orig -> origin/gh/Sidharth123-cpu/18/orig 2025-06-01T21:28:59.8603689Z * [new branch] gh/Sidharth123-cpu/19/base -> origin/gh/Sidharth123-cpu/19/base 2025-06-01T21:28:59.8604262Z * [new branch] gh/Sidharth123-cpu/19/head -> origin/gh/Sidharth123-cpu/19/head 2025-06-01T21:28:59.8604825Z * [new branch] gh/Sidharth123-cpu/19/orig -> origin/gh/Sidharth123-cpu/19/orig 2025-06-01T21:28:59.8605411Z * [new branch] gh/Sidharth123-cpu/2/base -> origin/gh/Sidharth123-cpu/2/base 2025-06-01T21:28:59.8605983Z * [new branch] gh/Sidharth123-cpu/2/head -> origin/gh/Sidharth123-cpu/2/head 2025-06-01T21:28:59.8606540Z * [new branch] gh/Sidharth123-cpu/2/orig -> origin/gh/Sidharth123-cpu/2/orig 2025-06-01T21:28:59.8607100Z * [new branch] gh/Sidharth123-cpu/3/base -> origin/gh/Sidharth123-cpu/3/base 2025-06-01T21:28:59.8607696Z * [new branch] gh/Sidharth123-cpu/3/head -> origin/gh/Sidharth123-cpu/3/head 2025-06-01T21:28:59.8608314Z * [new branch] gh/Sidharth123-cpu/3/orig -> origin/gh/Sidharth123-cpu/3/orig 2025-06-01T21:28:59.8608870Z * [new branch] gh/Sidharth123-cpu/4/base -> origin/gh/Sidharth123-cpu/4/base 2025-06-01T21:28:59.8609429Z * [new branch] gh/Sidharth123-cpu/4/head -> origin/gh/Sidharth123-cpu/4/head 2025-06-01T21:28:59.8609988Z * [new branch] gh/Sidharth123-cpu/4/orig -> origin/gh/Sidharth123-cpu/4/orig 2025-06-01T21:28:59.8610540Z * [new branch] gh/Sidharth123-cpu/5/base -> origin/gh/Sidharth123-cpu/5/base 2025-06-01T21:28:59.8611098Z * [new branch] gh/Sidharth123-cpu/5/head -> origin/gh/Sidharth123-cpu/5/head 2025-06-01T21:28:59.8611636Z * [new branch] gh/Sidharth123-cpu/5/orig -> origin/gh/Sidharth123-cpu/5/orig 2025-06-01T21:28:59.8612190Z * [new branch] gh/Sidharth123-cpu/6/base -> origin/gh/Sidharth123-cpu/6/base 2025-06-01T21:28:59.8612741Z * [new branch] gh/Sidharth123-cpu/6/head -> origin/gh/Sidharth123-cpu/6/head 2025-06-01T21:28:59.8613403Z * [new branch] gh/Sidharth123-cpu/6/orig -> origin/gh/Sidharth123-cpu/6/orig 2025-06-01T21:28:59.8614032Z * [new branch] gh/Sidharth123-cpu/7/base -> origin/gh/Sidharth123-cpu/7/base 2025-06-01T21:28:59.8614603Z * [new branch] gh/Sidharth123-cpu/7/head -> origin/gh/Sidharth123-cpu/7/head 2025-06-01T21:28:59.8615175Z * [new branch] gh/Sidharth123-cpu/7/orig -> origin/gh/Sidharth123-cpu/7/orig 2025-06-01T21:28:59.8615730Z * [new branch] gh/Sidharth123-cpu/8/base -> origin/gh/Sidharth123-cpu/8/base 2025-06-01T21:28:59.9046984Z * [new branch] gh/Sidharth123-cpu/8/head -> origin/gh/Sidharth123-cpu/8/head 2025-06-01T21:28:59.9047606Z * [new branch] gh/Sidharth123-cpu/8/orig -> origin/gh/Sidharth123-cpu/8/orig 2025-06-01T21:28:59.9048163Z * [new branch] gh/Sidharth123-cpu/9/base -> origin/gh/Sidharth123-cpu/9/base 2025-06-01T21:28:59.9048763Z * [new branch] gh/Sidharth123-cpu/9/head -> origin/gh/Sidharth123-cpu/9/head 2025-06-01T21:28:59.9049330Z * [new branch] gh/Sidharth123-cpu/9/orig -> origin/gh/Sidharth123-cpu/9/orig 2025-06-01T21:28:59.9049863Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-06-01T21:28:59.9050674Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-06-01T21:28:59.9051207Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-06-01T21:28:59.9051726Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-06-01T21:28:59.9052260Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-06-01T21:28:59.9052772Z * [new branch] gh/StrongerXi/104/base -> origin/gh/StrongerXi/104/base 2025-06-01T21:28:59.9053296Z * [new branch] gh/StrongerXi/104/head -> origin/gh/StrongerXi/104/head 2025-06-01T21:28:59.9053810Z * [new branch] gh/StrongerXi/104/orig -> origin/gh/StrongerXi/104/orig 2025-06-01T21:28:59.9054324Z * [new branch] gh/StrongerXi/105/base -> origin/gh/StrongerXi/105/base 2025-06-01T21:28:59.9054835Z * [new branch] gh/StrongerXi/105/head -> origin/gh/StrongerXi/105/head 2025-06-01T21:28:59.9055388Z * [new branch] gh/StrongerXi/105/orig -> origin/gh/StrongerXi/105/orig 2025-06-01T21:28:59.9055963Z * [new branch] gh/StrongerXi/106/base -> origin/gh/StrongerXi/106/base 2025-06-01T21:28:59.9056527Z * [new branch] gh/StrongerXi/106/head -> origin/gh/StrongerXi/106/head 2025-06-01T21:28:59.9057035Z * [new branch] gh/StrongerXi/106/orig -> origin/gh/StrongerXi/106/orig 2025-06-01T21:28:59.9057557Z * [new branch] gh/StrongerXi/107/base -> origin/gh/StrongerXi/107/base 2025-06-01T21:28:59.9058069Z * [new branch] gh/StrongerXi/107/head -> origin/gh/StrongerXi/107/head 2025-06-01T21:28:59.9058581Z * [new branch] gh/StrongerXi/107/orig -> origin/gh/StrongerXi/107/orig 2025-06-01T21:28:59.9059092Z * [new branch] gh/StrongerXi/108/base -> origin/gh/StrongerXi/108/base 2025-06-01T21:28:59.9059602Z * [new branch] gh/StrongerXi/108/head -> origin/gh/StrongerXi/108/head 2025-06-01T21:28:59.9060122Z * [new branch] gh/StrongerXi/108/orig -> origin/gh/StrongerXi/108/orig 2025-06-01T21:28:59.9060634Z * [new branch] gh/StrongerXi/109/base -> origin/gh/StrongerXi/109/base 2025-06-01T21:28:59.9061154Z * [new branch] gh/StrongerXi/109/head -> origin/gh/StrongerXi/109/head 2025-06-01T21:28:59.9061716Z * [new branch] gh/StrongerXi/109/orig -> origin/gh/StrongerXi/109/orig 2025-06-01T21:28:59.9062507Z * [new branch] gh/StrongerXi/110/base -> origin/gh/StrongerXi/110/base 2025-06-01T21:28:59.9063037Z * [new branch] gh/StrongerXi/110/head -> origin/gh/StrongerXi/110/head 2025-06-01T21:28:59.9063559Z * [new branch] gh/StrongerXi/110/orig -> origin/gh/StrongerXi/110/orig 2025-06-01T21:28:59.9064094Z * [new branch] gh/StrongerXi/111/base -> origin/gh/StrongerXi/111/base 2025-06-01T21:28:59.9064613Z * [new branch] gh/StrongerXi/111/head -> origin/gh/StrongerXi/111/head 2025-06-01T21:28:59.9065139Z * [new branch] gh/StrongerXi/111/orig -> origin/gh/StrongerXi/111/orig 2025-06-01T21:28:59.9065663Z * [new branch] gh/StrongerXi/112/base -> origin/gh/StrongerXi/112/base 2025-06-01T21:28:59.9066175Z * [new branch] gh/StrongerXi/112/head -> origin/gh/StrongerXi/112/head 2025-06-01T21:28:59.9066691Z * [new branch] gh/StrongerXi/112/orig -> origin/gh/StrongerXi/112/orig 2025-06-01T21:28:59.9067241Z * [new branch] gh/StrongerXi/113/base -> origin/gh/StrongerXi/113/base 2025-06-01T21:28:59.9067911Z * [new branch] gh/StrongerXi/113/head -> origin/gh/StrongerXi/113/head 2025-06-01T21:28:59.9068443Z * [new branch] gh/StrongerXi/113/orig -> origin/gh/StrongerXi/113/orig 2025-06-01T21:28:59.9069086Z * [new branch] gh/StrongerXi/114/base -> origin/gh/StrongerXi/114/base 2025-06-01T21:28:59.9069620Z * [new branch] gh/StrongerXi/114/head -> origin/gh/StrongerXi/114/head 2025-06-01T21:28:59.9070139Z * [new branch] gh/StrongerXi/114/orig -> origin/gh/StrongerXi/114/orig 2025-06-01T21:28:59.9070663Z * [new branch] gh/StrongerXi/115/base -> origin/gh/StrongerXi/115/base 2025-06-01T21:28:59.9071183Z * [new branch] gh/StrongerXi/115/head -> origin/gh/StrongerXi/115/head 2025-06-01T21:28:59.9514325Z * [new branch] gh/StrongerXi/115/orig -> origin/gh/StrongerXi/115/orig 2025-06-01T21:28:59.9514992Z * [new branch] gh/StrongerXi/116/base -> origin/gh/StrongerXi/116/base 2025-06-01T21:28:59.9515521Z * [new branch] gh/StrongerXi/116/head -> origin/gh/StrongerXi/116/head 2025-06-01T21:28:59.9516035Z * [new branch] gh/StrongerXi/116/orig -> origin/gh/StrongerXi/116/orig 2025-06-01T21:28:59.9516571Z * [new branch] gh/StrongerXi/117/base -> origin/gh/StrongerXi/117/base 2025-06-01T21:28:59.9517083Z * [new branch] gh/StrongerXi/117/head -> origin/gh/StrongerXi/117/head 2025-06-01T21:28:59.9517609Z * [new branch] gh/StrongerXi/117/orig -> origin/gh/StrongerXi/117/orig 2025-06-01T21:28:59.9518122Z * [new branch] gh/StrongerXi/118/base -> origin/gh/StrongerXi/118/base 2025-06-01T21:28:59.9518639Z * [new branch] gh/StrongerXi/118/head -> origin/gh/StrongerXi/118/head 2025-06-01T21:28:59.9519170Z * [new branch] gh/StrongerXi/118/orig -> origin/gh/StrongerXi/118/orig 2025-06-01T21:28:59.9519687Z * [new branch] gh/StrongerXi/119/base -> origin/gh/StrongerXi/119/base 2025-06-01T21:28:59.9520205Z * [new branch] gh/StrongerXi/119/head -> origin/gh/StrongerXi/119/head 2025-06-01T21:28:59.9520768Z * [new branch] gh/StrongerXi/119/orig -> origin/gh/StrongerXi/119/orig 2025-06-01T21:28:59.9521341Z * [new branch] gh/StrongerXi/120/base -> origin/gh/StrongerXi/120/base 2025-06-01T21:28:59.9521860Z * [new branch] gh/StrongerXi/120/head -> origin/gh/StrongerXi/120/head 2025-06-01T21:28:59.9522366Z * [new branch] gh/StrongerXi/120/orig -> origin/gh/StrongerXi/120/orig 2025-06-01T21:28:59.9522886Z * [new branch] gh/StrongerXi/121/base -> origin/gh/StrongerXi/121/base 2025-06-01T21:28:59.9523392Z * [new branch] gh/StrongerXi/121/head -> origin/gh/StrongerXi/121/head 2025-06-01T21:28:59.9524104Z * [new branch] gh/StrongerXi/121/orig -> origin/gh/StrongerXi/121/orig 2025-06-01T21:28:59.9524619Z * [new branch] gh/StrongerXi/122/base -> origin/gh/StrongerXi/122/base 2025-06-01T21:28:59.9525134Z * [new branch] gh/StrongerXi/122/head -> origin/gh/StrongerXi/122/head 2025-06-01T21:28:59.9525658Z * [new branch] gh/StrongerXi/122/orig -> origin/gh/StrongerXi/122/orig 2025-06-01T21:28:59.9526170Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-06-01T21:28:59.9526749Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-06-01T21:28:59.9527305Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-06-01T21:28:59.9527807Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-06-01T21:28:59.9528318Z * [new branch] gh/Xia-Weiwen/34/base -> origin/gh/Xia-Weiwen/34/base 2025-06-01T21:28:59.9528806Z * [new branch] gh/Xia-Weiwen/34/head -> origin/gh/Xia-Weiwen/34/head 2025-06-01T21:28:59.9529302Z * [new branch] gh/Xia-Weiwen/34/orig -> origin/gh/Xia-Weiwen/34/orig 2025-06-01T21:28:59.9529798Z * [new branch] gh/Xia-Weiwen/37/base -> origin/gh/Xia-Weiwen/37/base 2025-06-01T21:28:59.9530411Z * [new branch] gh/Xia-Weiwen/37/head -> origin/gh/Xia-Weiwen/37/head 2025-06-01T21:28:59.9530917Z * [new branch] gh/Xia-Weiwen/37/orig -> origin/gh/Xia-Weiwen/37/orig 2025-06-01T21:28:59.9531410Z * [new branch] gh/Xia-Weiwen/38/base -> origin/gh/Xia-Weiwen/38/base 2025-06-01T21:28:59.9531909Z * [new branch] gh/Xia-Weiwen/38/head -> origin/gh/Xia-Weiwen/38/head 2025-06-01T21:28:59.9532401Z * [new branch] gh/Xia-Weiwen/38/orig -> origin/gh/Xia-Weiwen/38/orig 2025-06-01T21:28:59.9532955Z * [new branch] gh/Xia-Weiwen/39/base -> origin/gh/Xia-Weiwen/39/base 2025-06-01T21:28:59.9533501Z * [new branch] gh/Xia-Weiwen/39/head -> origin/gh/Xia-Weiwen/39/head 2025-06-01T21:28:59.9533989Z * [new branch] gh/Xia-Weiwen/39/orig -> origin/gh/Xia-Weiwen/39/orig 2025-06-01T21:28:59.9534497Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-06-01T21:28:59.9534981Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-06-01T21:28:59.9535472Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-06-01T21:28:59.9535958Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-06-01T21:28:59.9536433Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-06-01T21:28:59.9536926Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-06-01T21:28:59.9537406Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-06-01T21:28:59.9537891Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-06-01T21:28:59.9992911Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-06-01T21:28:59.9993486Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-06-01T21:28:59.9994063Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-06-01T21:28:59.9994615Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-06-01T21:28:59.9995104Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-06-01T21:28:59.9995595Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-06-01T21:28:59.9996281Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-06-01T21:28:59.9996776Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-06-01T21:28:59.9997249Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-06-01T21:28:59.9997730Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-06-01T21:28:59.9998226Z * [new branch] gh/XilunWu/122/base -> origin/gh/XilunWu/122/base 2025-06-01T21:28:59.9998713Z * [new branch] gh/XilunWu/122/head -> origin/gh/XilunWu/122/head 2025-06-01T21:28:59.9999252Z * [new branch] gh/XilunWu/122/orig -> origin/gh/XilunWu/122/orig 2025-06-01T21:28:59.9999753Z * [new branch] gh/XilunWu/125/base -> origin/gh/XilunWu/125/base 2025-06-01T21:29:00.0000293Z * [new branch] gh/XilunWu/125/head -> origin/gh/XilunWu/125/head 2025-06-01T21:29:00.0000838Z * [new branch] gh/XilunWu/125/orig -> origin/gh/XilunWu/125/orig 2025-06-01T21:29:00.0001320Z * [new branch] gh/XilunWu/126/base -> origin/gh/XilunWu/126/base 2025-06-01T21:29:00.0001807Z * [new branch] gh/XilunWu/126/head -> origin/gh/XilunWu/126/head 2025-06-01T21:29:00.0002413Z * [new branch] gh/XilunWu/126/orig -> origin/gh/XilunWu/126/orig 2025-06-01T21:29:00.0002908Z * [new branch] gh/XilunWu/127/base -> origin/gh/XilunWu/127/base 2025-06-01T21:29:00.0003403Z * [new branch] gh/XilunWu/127/head -> origin/gh/XilunWu/127/head 2025-06-01T21:29:00.0003880Z * [new branch] gh/XilunWu/127/orig -> origin/gh/XilunWu/127/orig 2025-06-01T21:29:00.0004371Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-06-01T21:29:00.0004855Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-06-01T21:29:00.0005346Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-06-01T21:29:00.0005819Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-06-01T21:29:00.0006355Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-06-01T21:29:00.0006889Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-06-01T21:29:00.0007370Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-06-01T21:29:00.0007853Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-06-01T21:29:00.0008328Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-06-01T21:29:00.0008813Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-06-01T21:29:00.0009307Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-06-01T21:29:00.0009783Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-06-01T21:29:00.0010269Z * [new branch] gh/XilunWu/134/base -> origin/gh/XilunWu/134/base 2025-06-01T21:29:00.0010747Z * [new branch] gh/XilunWu/134/head -> origin/gh/XilunWu/134/head 2025-06-01T21:29:00.0011237Z * [new branch] gh/XilunWu/134/orig -> origin/gh/XilunWu/134/orig 2025-06-01T21:29:00.0011731Z * [new branch] gh/XilunWu/135/base -> origin/gh/XilunWu/135/base 2025-06-01T21:29:00.0012264Z * [new branch] gh/XilunWu/135/head -> origin/gh/XilunWu/135/head 2025-06-01T21:29:00.0012798Z * [new branch] gh/XilunWu/135/orig -> origin/gh/XilunWu/135/orig 2025-06-01T21:29:00.0013279Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-06-01T21:29:00.0013901Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-06-01T21:29:00.0014388Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-06-01T21:29:00.0014868Z * [new branch] gh/XilunWu/137/base -> origin/gh/XilunWu/137/base 2025-06-01T21:29:00.0015364Z * [new branch] gh/XilunWu/137/head -> origin/gh/XilunWu/137/head 2025-06-01T21:29:00.0015851Z * [new branch] gh/XilunWu/137/orig -> origin/gh/XilunWu/137/orig 2025-06-01T21:29:00.0016352Z * [new branch] gh/XilunWu/138/base -> origin/gh/XilunWu/138/base 2025-06-01T21:29:00.0519193Z * [new branch] gh/XilunWu/138/head -> origin/gh/XilunWu/138/head 2025-06-01T21:29:00.0519740Z * [new branch] gh/XilunWu/138/orig -> origin/gh/XilunWu/138/orig 2025-06-01T21:29:00.0520258Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-06-01T21:29:00.0520777Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-06-01T21:29:00.0521268Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-06-01T21:29:00.0521755Z * [new branch] gh/XilunWu/140/base -> origin/gh/XilunWu/140/base 2025-06-01T21:29:00.0522444Z * [new branch] gh/XilunWu/140/head -> origin/gh/XilunWu/140/head 2025-06-01T21:29:00.0522945Z * [new branch] gh/XilunWu/140/orig -> origin/gh/XilunWu/140/orig 2025-06-01T21:29:00.0523430Z * [new branch] gh/XilunWu/141/base -> origin/gh/XilunWu/141/base 2025-06-01T21:29:00.0523924Z * [new branch] gh/XilunWu/141/head -> origin/gh/XilunWu/141/head 2025-06-01T21:29:00.0524443Z * [new branch] gh/XilunWu/141/orig -> origin/gh/XilunWu/141/orig 2025-06-01T21:29:00.0524928Z * [new branch] gh/XilunWu/142/base -> origin/gh/XilunWu/142/base 2025-06-01T21:29:00.0525424Z * [new branch] gh/XilunWu/142/head -> origin/gh/XilunWu/142/head 2025-06-01T21:29:00.0525909Z * [new branch] gh/XilunWu/142/orig -> origin/gh/XilunWu/142/orig 2025-06-01T21:29:00.0526415Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-06-01T21:29:00.0526918Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-06-01T21:29:00.0527399Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-06-01T21:29:00.0527887Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-06-01T21:29:00.0528372Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-06-01T21:29:00.0528862Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-06-01T21:29:00.0529359Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-06-01T21:29:00.0529845Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-06-01T21:29:00.0530328Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-06-01T21:29:00.0530837Z * [new branch] gh/XuehaiPan/109/base -> origin/gh/XuehaiPan/109/base 2025-06-01T21:29:00.0531350Z * [new branch] gh/XuehaiPan/109/head -> origin/gh/XuehaiPan/109/head 2025-06-01T21:29:00.0531859Z * [new branch] gh/XuehaiPan/109/orig -> origin/gh/XuehaiPan/109/orig 2025-06-01T21:29:00.0532361Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-06-01T21:29:00.0532868Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-06-01T21:29:00.0533367Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-06-01T21:29:00.0533999Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-06-01T21:29:00.0534519Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-06-01T21:29:00.0535018Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-06-01T21:29:00.0535545Z * [new branch] gh/XuehaiPan/182/base -> origin/gh/XuehaiPan/182/base 2025-06-01T21:29:00.0536056Z * [new branch] gh/XuehaiPan/182/head -> origin/gh/XuehaiPan/182/head 2025-06-01T21:29:00.0536584Z * [new branch] gh/XuehaiPan/182/orig -> origin/gh/XuehaiPan/182/orig 2025-06-01T21:29:00.0537089Z * [new branch] gh/XuehaiPan/183/base -> origin/gh/XuehaiPan/183/base 2025-06-01T21:29:00.0537592Z * [new branch] gh/XuehaiPan/183/head -> origin/gh/XuehaiPan/183/head 2025-06-01T21:29:00.0538102Z * [new branch] gh/XuehaiPan/183/orig -> origin/gh/XuehaiPan/183/orig 2025-06-01T21:29:00.0538695Z * [new branch] gh/XuehaiPan/185/base -> origin/gh/XuehaiPan/185/base 2025-06-01T21:29:00.0539254Z * [new branch] gh/XuehaiPan/185/head -> origin/gh/XuehaiPan/185/head 2025-06-01T21:29:00.0539767Z * [new branch] gh/XuehaiPan/185/orig -> origin/gh/XuehaiPan/185/orig 2025-06-01T21:29:00.0540370Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-06-01T21:29:00.0540886Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-06-01T21:29:00.0541390Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-06-01T21:29:00.0541902Z * [new branch] gh/XuehaiPan/217/base -> origin/gh/XuehaiPan/217/base 2025-06-01T21:29:00.0542418Z * [new branch] gh/XuehaiPan/217/head -> origin/gh/XuehaiPan/217/head 2025-06-01T21:29:00.0542923Z * [new branch] gh/XuehaiPan/217/orig -> origin/gh/XuehaiPan/217/orig 2025-06-01T21:29:00.0982554Z * [new branch] gh/XuehaiPan/218/base -> origin/gh/XuehaiPan/218/base 2025-06-01T21:29:00.0983112Z * [new branch] gh/XuehaiPan/218/head -> origin/gh/XuehaiPan/218/head 2025-06-01T21:29:00.0983682Z * [new branch] gh/XuehaiPan/218/orig -> origin/gh/XuehaiPan/218/orig 2025-06-01T21:29:00.0984278Z * [new branch] gh/XuehaiPan/219/base -> origin/gh/XuehaiPan/219/base 2025-06-01T21:29:00.0984788Z * [new branch] gh/XuehaiPan/219/head -> origin/gh/XuehaiPan/219/head 2025-06-01T21:29:00.0985310Z * [new branch] gh/XuehaiPan/219/orig -> origin/gh/XuehaiPan/219/orig 2025-06-01T21:29:00.0985814Z * [new branch] gh/XuehaiPan/223/base -> origin/gh/XuehaiPan/223/base 2025-06-01T21:29:00.0986326Z * [new branch] gh/XuehaiPan/223/head -> origin/gh/XuehaiPan/223/head 2025-06-01T21:29:00.0986852Z * [new branch] gh/XuehaiPan/223/orig -> origin/gh/XuehaiPan/223/orig 2025-06-01T21:29:00.0987361Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-06-01T21:29:00.0987941Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-06-01T21:29:00.0988452Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-06-01T21:29:00.0988964Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-06-01T21:29:00.0989467Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-06-01T21:29:00.0990023Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-06-01T21:29:00.0990587Z * [new branch] gh/XuehaiPan/228/base -> origin/gh/XuehaiPan/228/base 2025-06-01T21:29:00.0991086Z * [new branch] gh/XuehaiPan/228/head -> origin/gh/XuehaiPan/228/head 2025-06-01T21:29:00.0991788Z * [new branch] gh/XuehaiPan/228/orig -> origin/gh/XuehaiPan/228/orig 2025-06-01T21:29:00.0992295Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-06-01T21:29:00.0992857Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-06-01T21:29:00.0993380Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-06-01T21:29:00.0993886Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-06-01T21:29:00.0994403Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-06-01T21:29:00.0994908Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-06-01T21:29:00.0995432Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-06-01T21:29:00.0996002Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-06-01T21:29:00.0996552Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-06-01T21:29:00.0997064Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-06-01T21:29:00.0997568Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-06-01T21:29:00.0998209Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-06-01T21:29:00.0998720Z * [new branch] gh/XuehaiPan/236/base -> origin/gh/XuehaiPan/236/base 2025-06-01T21:29:00.0999255Z * [new branch] gh/XuehaiPan/236/head -> origin/gh/XuehaiPan/236/head 2025-06-01T21:29:00.0999771Z * [new branch] gh/XuehaiPan/236/orig -> origin/gh/XuehaiPan/236/orig 2025-06-01T21:29:00.1000279Z * [new branch] gh/XuehaiPan/239/base -> origin/gh/XuehaiPan/239/base 2025-06-01T21:29:00.1000790Z * [new branch] gh/XuehaiPan/239/head -> origin/gh/XuehaiPan/239/head 2025-06-01T21:29:00.1001287Z * [new branch] gh/XuehaiPan/239/orig -> origin/gh/XuehaiPan/239/orig 2025-06-01T21:29:00.1001844Z * [new branch] gh/XuehaiPan/247/base -> origin/gh/XuehaiPan/247/base 2025-06-01T21:29:00.1002404Z * [new branch] gh/XuehaiPan/247/head -> origin/gh/XuehaiPan/247/head 2025-06-01T21:29:00.1002907Z * [new branch] gh/XuehaiPan/247/orig -> origin/gh/XuehaiPan/247/orig 2025-06-01T21:29:00.1003418Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-06-01T21:29:00.1003914Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-06-01T21:29:00.1004421Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-06-01T21:29:00.1004937Z * [new branch] gh/XuehaiPan/250/base -> origin/gh/XuehaiPan/250/base 2025-06-01T21:29:00.1005431Z * [new branch] gh/XuehaiPan/250/head -> origin/gh/XuehaiPan/250/head 2025-06-01T21:29:00.1005949Z * [new branch] gh/XuehaiPan/250/orig -> origin/gh/XuehaiPan/250/orig 2025-06-01T21:29:00.1006447Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-06-01T21:29:00.1444847Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-06-01T21:29:00.1445383Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-06-01T21:29:00.1445942Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-06-01T21:29:00.1446483Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-06-01T21:29:00.1447053Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-06-01T21:29:00.1447741Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-06-01T21:29:00.1448250Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-06-01T21:29:00.1448752Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-06-01T21:29:00.1449283Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-06-01T21:29:00.1449787Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-06-01T21:29:00.1450298Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-06-01T21:29:00.1450802Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-06-01T21:29:00.1451300Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-06-01T21:29:00.1451805Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-06-01T21:29:00.1452360Z * [new branch] gh/XuehaiPan/261/base -> origin/gh/XuehaiPan/261/base 2025-06-01T21:29:00.1452921Z * [new branch] gh/XuehaiPan/261/head -> origin/gh/XuehaiPan/261/head 2025-06-01T21:29:00.1453427Z * [new branch] gh/XuehaiPan/261/orig -> origin/gh/XuehaiPan/261/orig 2025-06-01T21:29:00.1454051Z * [new branch] gh/XuehaiPan/262/base -> origin/gh/XuehaiPan/262/base 2025-06-01T21:29:00.1454572Z * [new branch] gh/XuehaiPan/262/head -> origin/gh/XuehaiPan/262/head 2025-06-01T21:29:00.1455082Z * [new branch] gh/XuehaiPan/262/orig -> origin/gh/XuehaiPan/262/orig 2025-06-01T21:29:00.1455605Z * [new branch] gh/XuehaiPan/263/base -> origin/gh/XuehaiPan/263/base 2025-06-01T21:29:00.1456127Z * [new branch] gh/XuehaiPan/263/head -> origin/gh/XuehaiPan/263/head 2025-06-01T21:29:00.1456639Z * [new branch] gh/XuehaiPan/263/orig -> origin/gh/XuehaiPan/263/orig 2025-06-01T21:29:00.1457154Z * [new branch] gh/XuehaiPan/264/base -> origin/gh/XuehaiPan/264/base 2025-06-01T21:29:00.1457653Z * [new branch] gh/XuehaiPan/264/head -> origin/gh/XuehaiPan/264/head 2025-06-01T21:29:00.1458211Z * [new branch] gh/XuehaiPan/264/orig -> origin/gh/XuehaiPan/264/orig 2025-06-01T21:29:00.1458744Z * [new branch] gh/XuehaiPan/265/base -> origin/gh/XuehaiPan/265/base 2025-06-01T21:29:00.1459267Z * [new branch] gh/XuehaiPan/265/head -> origin/gh/XuehaiPan/265/head 2025-06-01T21:29:00.1459780Z * [new branch] gh/XuehaiPan/265/orig -> origin/gh/XuehaiPan/265/orig 2025-06-01T21:29:00.1460283Z * [new branch] gh/XuehaiPan/266/base -> origin/gh/XuehaiPan/266/base 2025-06-01T21:29:00.1460787Z * [new branch] gh/XuehaiPan/266/head -> origin/gh/XuehaiPan/266/head 2025-06-01T21:29:00.1461295Z * [new branch] gh/XuehaiPan/266/orig -> origin/gh/XuehaiPan/266/orig 2025-06-01T21:29:00.1461799Z * [new branch] gh/XuehaiPan/267/base -> origin/gh/XuehaiPan/267/base 2025-06-01T21:29:00.1462308Z * [new branch] gh/XuehaiPan/267/head -> origin/gh/XuehaiPan/267/head 2025-06-01T21:29:00.1462818Z * [new branch] gh/XuehaiPan/267/orig -> origin/gh/XuehaiPan/267/orig 2025-06-01T21:29:00.1463328Z * [new branch] gh/XuehaiPan/268/base -> origin/gh/XuehaiPan/268/base 2025-06-01T21:29:00.1463824Z * [new branch] gh/XuehaiPan/268/head -> origin/gh/XuehaiPan/268/head 2025-06-01T21:29:00.1464376Z * [new branch] gh/XuehaiPan/268/orig -> origin/gh/XuehaiPan/268/orig 2025-06-01T21:29:00.1464932Z * [new branch] gh/XuehaiPan/269/base -> origin/gh/XuehaiPan/269/base 2025-06-01T21:29:00.1465571Z * [new branch] gh/XuehaiPan/269/head -> origin/gh/XuehaiPan/269/head 2025-06-01T21:29:00.1466080Z * [new branch] gh/XuehaiPan/269/orig -> origin/gh/XuehaiPan/269/orig 2025-06-01T21:29:00.1466588Z * [new branch] gh/XuehaiPan/270/base -> origin/gh/XuehaiPan/270/base 2025-06-01T21:29:00.1467098Z * [new branch] gh/XuehaiPan/270/head -> origin/gh/XuehaiPan/270/head 2025-06-01T21:29:00.1467705Z * [new branch] gh/XuehaiPan/270/orig -> origin/gh/XuehaiPan/270/orig 2025-06-01T21:29:00.1468206Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-06-01T21:29:00.1468720Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-06-01T21:29:00.1951110Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-06-01T21:29:00.1951687Z * [new branch] gh/XuehaiPan/272/base -> origin/gh/XuehaiPan/272/base 2025-06-01T21:29:00.1952242Z * [new branch] gh/XuehaiPan/272/head -> origin/gh/XuehaiPan/272/head 2025-06-01T21:29:00.1952751Z * [new branch] gh/XuehaiPan/272/orig -> origin/gh/XuehaiPan/272/orig 2025-06-01T21:29:00.1953260Z * [new branch] gh/XuehaiPan/273/base -> origin/gh/XuehaiPan/273/base 2025-06-01T21:29:00.1953959Z * [new branch] gh/XuehaiPan/273/head -> origin/gh/XuehaiPan/273/head 2025-06-01T21:29:00.1954468Z * [new branch] gh/XuehaiPan/273/orig -> origin/gh/XuehaiPan/273/orig 2025-06-01T21:29:00.1954985Z * [new branch] gh/XuehaiPan/274/base -> origin/gh/XuehaiPan/274/base 2025-06-01T21:29:00.1955493Z * [new branch] gh/XuehaiPan/274/head -> origin/gh/XuehaiPan/274/head 2025-06-01T21:29:00.1956016Z * [new branch] gh/XuehaiPan/274/orig -> origin/gh/XuehaiPan/274/orig 2025-06-01T21:29:00.1956583Z * [new branch] gh/ZainRizvi/4/base -> origin/gh/ZainRizvi/4/base 2025-06-01T21:29:00.1957133Z * [new branch] gh/ZainRizvi/4/head -> origin/gh/ZainRizvi/4/head 2025-06-01T21:29:00.1957633Z * [new branch] gh/ZainRizvi/4/orig -> origin/gh/ZainRizvi/4/orig 2025-06-01T21:29:00.1958148Z * [new branch] gh/ZhiweiYan-96/38/base -> origin/gh/ZhiweiYan-96/38/base 2025-06-01T21:29:00.1958698Z * [new branch] gh/ZhiweiYan-96/38/head -> origin/gh/ZhiweiYan-96/38/head 2025-06-01T21:29:00.1959255Z * [new branch] gh/ZhiweiYan-96/38/orig -> origin/gh/ZhiweiYan-96/38/orig 2025-06-01T21:29:00.1959771Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-06-01T21:29:00.1960293Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-06-01T21:29:00.1960804Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-06-01T21:29:00.1961332Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-06-01T21:29:00.1961856Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-06-01T21:29:00.1962371Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-06-01T21:29:00.1962934Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-06-01T21:29:00.1963500Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-06-01T21:29:00.1964024Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-06-01T21:29:00.1964551Z * [new branch] gh/ZhiweiYan-96/56/base -> origin/gh/ZhiweiYan-96/56/base 2025-06-01T21:29:00.1965058Z * [new branch] gh/ZhiweiYan-96/56/head -> origin/gh/ZhiweiYan-96/56/head 2025-06-01T21:29:00.1965575Z * [new branch] gh/ZhiweiYan-96/56/orig -> origin/gh/ZhiweiYan-96/56/orig 2025-06-01T21:29:00.1966236Z * [new branch] gh/ZhiweiYan-96/59/base -> origin/gh/ZhiweiYan-96/59/base 2025-06-01T21:29:00.1966761Z * [new branch] gh/ZhiweiYan-96/59/head -> origin/gh/ZhiweiYan-96/59/head 2025-06-01T21:29:00.1967276Z * [new branch] gh/ZhiweiYan-96/59/orig -> origin/gh/ZhiweiYan-96/59/orig 2025-06-01T21:29:00.1967806Z * [new branch] gh/ZhiweiYan-96/60/base -> origin/gh/ZhiweiYan-96/60/base 2025-06-01T21:29:00.1968328Z * [new branch] gh/ZhiweiYan-96/60/head -> origin/gh/ZhiweiYan-96/60/head 2025-06-01T21:29:00.1968885Z * [new branch] gh/ZhiweiYan-96/60/orig -> origin/gh/ZhiweiYan-96/60/orig 2025-06-01T21:29:00.1969449Z * [new branch] gh/ZhiweiYan-96/61/base -> origin/gh/ZhiweiYan-96/61/base 2025-06-01T21:29:00.1969958Z * [new branch] gh/ZhiweiYan-96/61/head -> origin/gh/ZhiweiYan-96/61/head 2025-06-01T21:29:00.1970480Z * [new branch] gh/ZhiweiYan-96/61/orig -> origin/gh/ZhiweiYan-96/61/orig 2025-06-01T21:29:00.1971003Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-06-01T21:29:00.1971516Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-06-01T21:29:00.1972152Z * [new branch] gh/ZhiweiYan-96/63/base -> origin/gh/ZhiweiYan-96/63/base 2025-06-01T21:29:00.1972668Z * [new branch] gh/ZhiweiYan-96/63/head -> origin/gh/ZhiweiYan-96/63/head 2025-06-01T21:29:00.1973199Z * [new branch] gh/ZhiweiYan-96/63/orig -> origin/gh/ZhiweiYan-96/63/orig 2025-06-01T21:29:00.1973724Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-06-01T21:29:00.1974226Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-06-01T21:29:00.1974774Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-06-01T21:29:00.1975311Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-06-01T21:29:00.2432048Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-06-01T21:29:00.2432622Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-06-01T21:29:00.2433154Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-06-01T21:29:00.2433647Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-06-01T21:29:00.2434109Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-06-01T21:29:00.2434576Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-06-01T21:29:00.2435287Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-06-01T21:29:00.2436128Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-06-01T21:29:00.2436902Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-06-01T21:29:00.2437594Z * [new branch] gh/alexsamardzic/1/base -> origin/gh/alexsamardzic/1/base 2025-06-01T21:29:00.2438143Z * [new branch] gh/alexsamardzic/1/head -> origin/gh/alexsamardzic/1/head 2025-06-01T21:29:00.2438692Z * [new branch] gh/alexsamardzic/1/orig -> origin/gh/alexsamardzic/1/orig 2025-06-01T21:29:00.2439225Z * [new branch] gh/alexsamardzic/2/base -> origin/gh/alexsamardzic/2/base 2025-06-01T21:29:00.2439767Z * [new branch] gh/alexsamardzic/2/head -> origin/gh/alexsamardzic/2/head 2025-06-01T21:29:00.2440291Z * [new branch] gh/alexsamardzic/2/orig -> origin/gh/alexsamardzic/2/orig 2025-06-01T21:29:00.2441026Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-06-01T21:29:00.2441518Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-06-01T21:29:00.2441997Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-06-01T21:29:00.2442477Z * [new branch] gh/amjames/20/base -> origin/gh/amjames/20/base 2025-06-01T21:29:00.2442960Z * [new branch] gh/amjames/20/head -> origin/gh/amjames/20/head 2025-06-01T21:29:00.2443440Z * [new branch] gh/amjames/20/orig -> origin/gh/amjames/20/orig 2025-06-01T21:29:00.2443918Z * [new branch] gh/amjames/21/base -> origin/gh/amjames/21/base 2025-06-01T21:29:00.2444385Z * [new branch] gh/amjames/21/head -> origin/gh/amjames/21/head 2025-06-01T21:29:00.2444865Z * [new branch] gh/amjames/21/orig -> origin/gh/amjames/21/orig 2025-06-01T21:29:00.2445339Z * [new branch] gh/amjames/22/base -> origin/gh/amjames/22/base 2025-06-01T21:29:00.2445814Z * [new branch] gh/amjames/22/head -> origin/gh/amjames/22/head 2025-06-01T21:29:00.2446290Z * [new branch] gh/amjames/22/orig -> origin/gh/amjames/22/orig 2025-06-01T21:29:00.2446909Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-06-01T21:29:00.2447432Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-06-01T21:29:00.2447936Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-06-01T21:29:00.2448443Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-06-01T21:29:00.2448954Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-06-01T21:29:00.2449450Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-06-01T21:29:00.2449969Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-06-01T21:29:00.2450469Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-06-01T21:29:00.2450975Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-06-01T21:29:00.2451482Z * [new branch] gh/andyanwang/10/base -> origin/gh/andyanwang/10/base 2025-06-01T21:29:00.2451991Z * [new branch] gh/andyanwang/10/head -> origin/gh/andyanwang/10/head 2025-06-01T21:29:00.2452505Z * [new branch] gh/andyanwang/10/orig -> origin/gh/andyanwang/10/orig 2025-06-01T21:29:00.2453011Z * [new branch] gh/andyanwang/11/base -> origin/gh/andyanwang/11/base 2025-06-01T21:29:00.2453524Z * [new branch] gh/andyanwang/11/head -> origin/gh/andyanwang/11/head 2025-06-01T21:29:00.2454033Z * [new branch] gh/andyanwang/11/orig -> origin/gh/andyanwang/11/orig 2025-06-01T21:29:00.2454543Z * [new branch] gh/andyanwang/12/base -> origin/gh/andyanwang/12/base 2025-06-01T21:29:00.2455064Z * [new branch] gh/andyanwang/12/head -> origin/gh/andyanwang/12/head 2025-06-01T21:29:00.2455567Z * [new branch] gh/andyanwang/12/orig -> origin/gh/andyanwang/12/orig 2025-06-01T21:29:00.2929329Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-06-01T21:29:00.2929865Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-06-01T21:29:00.2930384Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-06-01T21:29:00.2930893Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-06-01T21:29:00.2931392Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-06-01T21:29:00.2932082Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-06-01T21:29:00.2932579Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-06-01T21:29:00.2933092Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-06-01T21:29:00.2933612Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-06-01T21:29:00.2934120Z * [new branch] gh/andyanwang/5/base -> origin/gh/andyanwang/5/base 2025-06-01T21:29:00.2934630Z * [new branch] gh/andyanwang/5/head -> origin/gh/andyanwang/5/head 2025-06-01T21:29:00.2935128Z * [new branch] gh/andyanwang/5/orig -> origin/gh/andyanwang/5/orig 2025-06-01T21:29:00.2935643Z * [new branch] gh/andyanwang/6/base -> origin/gh/andyanwang/6/base 2025-06-01T21:29:00.2936149Z * [new branch] gh/andyanwang/6/head -> origin/gh/andyanwang/6/head 2025-06-01T21:29:00.2936653Z * [new branch] gh/andyanwang/6/orig -> origin/gh/andyanwang/6/orig 2025-06-01T21:29:00.2937158Z * [new branch] gh/andyanwang/7/base -> origin/gh/andyanwang/7/base 2025-06-01T21:29:00.2937657Z * [new branch] gh/andyanwang/7/head -> origin/gh/andyanwang/7/head 2025-06-01T21:29:00.2938286Z * [new branch] gh/andyanwang/7/orig -> origin/gh/andyanwang/7/orig 2025-06-01T21:29:00.2938791Z * [new branch] gh/andyanwang/8/base -> origin/gh/andyanwang/8/base 2025-06-01T21:29:00.2939302Z * [new branch] gh/andyanwang/8/head -> origin/gh/andyanwang/8/head 2025-06-01T21:29:00.2939814Z * [new branch] gh/andyanwang/8/orig -> origin/gh/andyanwang/8/orig 2025-06-01T21:29:00.2940315Z * [new branch] gh/andyanwang/9/base -> origin/gh/andyanwang/9/base 2025-06-01T21:29:00.2940850Z * [new branch] gh/andyanwang/9/head -> origin/gh/andyanwang/9/head 2025-06-01T21:29:00.2941357Z * [new branch] gh/andyanwang/9/orig -> origin/gh/andyanwang/9/orig 2025-06-01T21:29:00.2941869Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-06-01T21:29:00.2942367Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-06-01T21:29:00.2942865Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-06-01T21:29:00.2943360Z * [new branch] gh/angelayi/90/base -> origin/gh/angelayi/90/base 2025-06-01T21:29:00.2943840Z * [new branch] gh/angelayi/90/head -> origin/gh/angelayi/90/head 2025-06-01T21:29:00.2944333Z * [new branch] gh/angelayi/90/orig -> origin/gh/angelayi/90/orig 2025-06-01T21:29:00.2944818Z * [new branch] gh/angelayi/91/base -> origin/gh/angelayi/91/base 2025-06-01T21:29:00.2945306Z * [new branch] gh/angelayi/91/head -> origin/gh/angelayi/91/head 2025-06-01T21:29:00.2945785Z * [new branch] gh/angelayi/91/orig -> origin/gh/angelayi/91/orig 2025-06-01T21:29:00.2946277Z * [new branch] gh/angelayi/92/base -> origin/gh/angelayi/92/base 2025-06-01T21:29:00.2946772Z * [new branch] gh/angelayi/92/head -> origin/gh/angelayi/92/head 2025-06-01T21:29:00.2947263Z * [new branch] gh/angelayi/92/orig -> origin/gh/angelayi/92/orig 2025-06-01T21:29:00.2947852Z * [new branch] gh/angelayi/93/base -> origin/gh/angelayi/93/base 2025-06-01T21:29:00.2948338Z * [new branch] gh/angelayi/93/head -> origin/gh/angelayi/93/head 2025-06-01T21:29:00.2948839Z * [new branch] gh/angelayi/93/orig -> origin/gh/angelayi/93/orig 2025-06-01T21:29:00.2949323Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-06-01T21:29:00.2949908Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-06-01T21:29:00.2950373Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-06-01T21:29:00.2950862Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-06-01T21:29:00.2951400Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-06-01T21:29:00.2951923Z * [new branch] gh/anijain2305/566/base -> origin/gh/anijain2305/566/base 2025-06-01T21:29:00.2952437Z * [new branch] gh/anijain2305/566/head -> origin/gh/anijain2305/566/head 2025-06-01T21:29:00.2952966Z * [new branch] gh/anijain2305/566/orig -> origin/gh/anijain2305/566/orig 2025-06-01T21:29:00.3407173Z * [new branch] gh/anijain2305/580/base -> origin/gh/anijain2305/580/base 2025-06-01T21:29:00.3407835Z * [new branch] gh/anijain2305/580/head -> origin/gh/anijain2305/580/head 2025-06-01T21:29:00.3408377Z * [new branch] gh/anijain2305/580/orig -> origin/gh/anijain2305/580/orig 2025-06-01T21:29:00.3408898Z * [new branch] gh/anijain2305/634/base -> origin/gh/anijain2305/634/base 2025-06-01T21:29:00.3409419Z * [new branch] gh/anijain2305/634/head -> origin/gh/anijain2305/634/head 2025-06-01T21:29:00.3410130Z * [new branch] gh/anijain2305/634/orig -> origin/gh/anijain2305/634/orig 2025-06-01T21:29:00.3410670Z * [new branch] gh/anijain2305/668/base -> origin/gh/anijain2305/668/base 2025-06-01T21:29:00.3411230Z * [new branch] gh/anijain2305/668/head -> origin/gh/anijain2305/668/head 2025-06-01T21:29:00.3411743Z * [new branch] gh/anijain2305/668/orig -> origin/gh/anijain2305/668/orig 2025-06-01T21:29:00.3412274Z * [new branch] gh/anijain2305/675/base -> origin/gh/anijain2305/675/base 2025-06-01T21:29:00.3412843Z * [new branch] gh/anijain2305/675/head -> origin/gh/anijain2305/675/head 2025-06-01T21:29:00.3413421Z * [new branch] gh/anijain2305/675/orig -> origin/gh/anijain2305/675/orig 2025-06-01T21:29:00.3413940Z * [new branch] gh/anijain2305/682/base -> origin/gh/anijain2305/682/base 2025-06-01T21:29:00.3414463Z * [new branch] gh/anijain2305/682/head -> origin/gh/anijain2305/682/head 2025-06-01T21:29:00.3414981Z * [new branch] gh/anijain2305/682/orig -> origin/gh/anijain2305/682/orig 2025-06-01T21:29:00.3415498Z * [new branch] gh/anijain2305/684/base -> origin/gh/anijain2305/684/base 2025-06-01T21:29:00.3416019Z * [new branch] gh/anijain2305/684/head -> origin/gh/anijain2305/684/head 2025-06-01T21:29:00.3416545Z * [new branch] gh/anijain2305/684/orig -> origin/gh/anijain2305/684/orig 2025-06-01T21:29:00.3417066Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-06-01T21:29:00.3417582Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-06-01T21:29:00.3418091Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-06-01T21:29:00.3418614Z * [new branch] gh/anijain2305/716/base -> origin/gh/anijain2305/716/base 2025-06-01T21:29:00.3419188Z * [new branch] gh/anijain2305/716/head -> origin/gh/anijain2305/716/head 2025-06-01T21:29:00.3419744Z * [new branch] gh/anijain2305/716/orig -> origin/gh/anijain2305/716/orig 2025-06-01T21:29:00.3420258Z * [new branch] gh/anijain2305/717/base -> origin/gh/anijain2305/717/base 2025-06-01T21:29:00.3420775Z * [new branch] gh/anijain2305/717/head -> origin/gh/anijain2305/717/head 2025-06-01T21:29:00.3421292Z * [new branch] gh/anijain2305/717/orig -> origin/gh/anijain2305/717/orig 2025-06-01T21:29:00.3422636Z * [new branch] gh/anijain2305/718/base -> origin/gh/anijain2305/718/base 2025-06-01T21:29:00.3423154Z * [new branch] gh/anijain2305/718/head -> origin/gh/anijain2305/718/head 2025-06-01T21:29:00.3423678Z * [new branch] gh/anijain2305/718/orig -> origin/gh/anijain2305/718/orig 2025-06-01T21:29:00.3424207Z * [new branch] gh/anijain2305/721/base -> origin/gh/anijain2305/721/base 2025-06-01T21:29:00.3424727Z * [new branch] gh/anijain2305/721/head -> origin/gh/anijain2305/721/head 2025-06-01T21:29:00.3425305Z * [new branch] gh/anijain2305/721/orig -> origin/gh/anijain2305/721/orig 2025-06-01T21:29:00.3425872Z * [new branch] gh/anijain2305/725/base -> origin/gh/anijain2305/725/base 2025-06-01T21:29:00.3426402Z * [new branch] gh/anijain2305/725/head -> origin/gh/anijain2305/725/head 2025-06-01T21:29:00.3426922Z * [new branch] gh/anijain2305/725/orig -> origin/gh/anijain2305/725/orig 2025-06-01T21:29:00.3427526Z * [new branch] gh/anijain2305/726/base -> origin/gh/anijain2305/726/base 2025-06-01T21:29:00.3428047Z * [new branch] gh/anijain2305/726/head -> origin/gh/anijain2305/726/head 2025-06-01T21:29:00.3428568Z * [new branch] gh/anijain2305/726/orig -> origin/gh/anijain2305/726/orig 2025-06-01T21:29:00.3429219Z * [new branch] gh/anijain2305/728/base -> origin/gh/anijain2305/728/base 2025-06-01T21:29:00.3429733Z * [new branch] gh/anijain2305/728/head -> origin/gh/anijain2305/728/head 2025-06-01T21:29:00.3430268Z * [new branch] gh/anijain2305/728/orig -> origin/gh/anijain2305/728/orig 2025-06-01T21:29:00.3430791Z * [new branch] gh/anijain2305/729/base -> origin/gh/anijain2305/729/base 2025-06-01T21:29:00.3431367Z * [new branch] gh/anijain2305/729/head -> origin/gh/anijain2305/729/head 2025-06-01T21:29:00.3431937Z * [new branch] gh/anijain2305/729/orig -> origin/gh/anijain2305/729/orig 2025-06-01T21:29:00.3875374Z * [new branch] gh/anijain2305/731/base -> origin/gh/anijain2305/731/base 2025-06-01T21:29:00.3875961Z * [new branch] gh/anijain2305/731/head -> origin/gh/anijain2305/731/head 2025-06-01T21:29:00.3876511Z * [new branch] gh/anijain2305/731/orig -> origin/gh/anijain2305/731/orig 2025-06-01T21:29:00.3877041Z * [new branch] gh/anijain2305/732/base -> origin/gh/anijain2305/732/base 2025-06-01T21:29:00.3877560Z * [new branch] gh/anijain2305/732/head -> origin/gh/anijain2305/732/head 2025-06-01T21:29:00.3878092Z * [new branch] gh/anijain2305/732/orig -> origin/gh/anijain2305/732/orig 2025-06-01T21:29:00.3878616Z * [new branch] gh/anijain2305/733/base -> origin/gh/anijain2305/733/base 2025-06-01T21:29:00.3879149Z * [new branch] gh/anijain2305/733/head -> origin/gh/anijain2305/733/head 2025-06-01T21:29:00.3879655Z * [new branch] gh/anijain2305/733/orig -> origin/gh/anijain2305/733/orig 2025-06-01T21:29:00.3880178Z * [new branch] gh/anijain2305/734/base -> origin/gh/anijain2305/734/base 2025-06-01T21:29:00.3880692Z * [new branch] gh/anijain2305/734/head -> origin/gh/anijain2305/734/head 2025-06-01T21:29:00.3881223Z * [new branch] gh/anijain2305/734/orig -> origin/gh/anijain2305/734/orig 2025-06-01T21:29:00.3881745Z * [new branch] gh/anijain2305/735/base -> origin/gh/anijain2305/735/base 2025-06-01T21:29:00.3882252Z * [new branch] gh/anijain2305/735/head -> origin/gh/anijain2305/735/head 2025-06-01T21:29:00.3882781Z * [new branch] gh/anijain2305/735/orig -> origin/gh/anijain2305/735/orig 2025-06-01T21:29:00.3883292Z * [new branch] gh/anijain2305/736/base -> origin/gh/anijain2305/736/base 2025-06-01T21:29:00.3884424Z * [new branch] gh/anijain2305/736/head -> origin/gh/anijain2305/736/head 2025-06-01T21:29:00.3884955Z * [new branch] gh/anijain2305/736/orig -> origin/gh/anijain2305/736/orig 2025-06-01T21:29:00.3885470Z * [new branch] gh/anijain2305/737/base -> origin/gh/anijain2305/737/base 2025-06-01T21:29:00.3886010Z * [new branch] gh/anijain2305/737/head -> origin/gh/anijain2305/737/head 2025-06-01T21:29:00.3886527Z * [new branch] gh/anijain2305/737/orig -> origin/gh/anijain2305/737/orig 2025-06-01T21:29:00.3887058Z * [new branch] gh/anijain2305/738/base -> origin/gh/anijain2305/738/base 2025-06-01T21:29:00.3887581Z * [new branch] gh/anijain2305/738/head -> origin/gh/anijain2305/738/head 2025-06-01T21:29:00.3888090Z * [new branch] gh/anijain2305/738/orig -> origin/gh/anijain2305/738/orig 2025-06-01T21:29:00.3888615Z * [new branch] gh/anijain2305/739/base -> origin/gh/anijain2305/739/base 2025-06-01T21:29:00.3889127Z * [new branch] gh/anijain2305/739/head -> origin/gh/anijain2305/739/head 2025-06-01T21:29:00.3889651Z * [new branch] gh/anijain2305/739/orig -> origin/gh/anijain2305/739/orig 2025-06-01T21:29:00.3890652Z * [new branch] gh/anijain2305/740/base -> origin/gh/anijain2305/740/base 2025-06-01T21:29:00.3891195Z * [new branch] gh/anijain2305/740/head -> origin/gh/anijain2305/740/head 2025-06-01T21:29:00.3891721Z * [new branch] gh/anijain2305/740/orig -> origin/gh/anijain2305/740/orig 2025-06-01T21:29:00.3892242Z * [new branch] gh/anijain2305/741/base -> origin/gh/anijain2305/741/base 2025-06-01T21:29:00.3892763Z * [new branch] gh/anijain2305/741/head -> origin/gh/anijain2305/741/head 2025-06-01T21:29:00.3893280Z * [new branch] gh/anijain2305/741/orig -> origin/gh/anijain2305/741/orig 2025-06-01T21:29:00.3893804Z * [new branch] gh/anijain2305/742/base -> origin/gh/anijain2305/742/base 2025-06-01T21:29:00.3894324Z * [new branch] gh/anijain2305/742/head -> origin/gh/anijain2305/742/head 2025-06-01T21:29:00.3894837Z * [new branch] gh/anijain2305/742/orig -> origin/gh/anijain2305/742/orig 2025-06-01T21:29:00.3895359Z * [new branch] gh/anijain2305/743/base -> origin/gh/anijain2305/743/base 2025-06-01T21:29:00.3895871Z * [new branch] gh/anijain2305/743/head -> origin/gh/anijain2305/743/head 2025-06-01T21:29:00.3896394Z * [new branch] gh/anijain2305/743/orig -> origin/gh/anijain2305/743/orig 2025-06-01T21:29:00.3896914Z * [new branch] gh/anijain2305/744/base -> origin/gh/anijain2305/744/base 2025-06-01T21:29:00.3897422Z * [new branch] gh/anijain2305/744/head -> origin/gh/anijain2305/744/head 2025-06-01T21:29:00.3897953Z * [new branch] gh/anijain2305/744/orig -> origin/gh/anijain2305/744/orig 2025-06-01T21:29:00.3898465Z * [new branch] gh/anijain2305/745/base -> origin/gh/anijain2305/745/base 2025-06-01T21:29:00.3898990Z * [new branch] gh/anijain2305/745/head -> origin/gh/anijain2305/745/head 2025-06-01T21:29:00.3899519Z * [new branch] gh/anijain2305/745/orig -> origin/gh/anijain2305/745/orig 2025-06-01T21:29:00.4335167Z * [new branch] gh/anijain2305/746/base -> origin/gh/anijain2305/746/base 2025-06-01T21:29:00.4335768Z * [new branch] gh/anijain2305/746/head -> origin/gh/anijain2305/746/head 2025-06-01T21:29:00.4336297Z * [new branch] gh/anijain2305/746/orig -> origin/gh/anijain2305/746/orig 2025-06-01T21:29:00.4336854Z * [new branch] gh/anijain2305/747/base -> origin/gh/anijain2305/747/base 2025-06-01T21:29:00.4337959Z * [new branch] gh/anijain2305/747/head -> origin/gh/anijain2305/747/head 2025-06-01T21:29:00.4338476Z * [new branch] gh/anijain2305/747/orig -> origin/gh/anijain2305/747/orig 2025-06-01T21:29:00.4339015Z * [new branch] gh/anijain2305/748/base -> origin/gh/anijain2305/748/base 2025-06-01T21:29:00.4339543Z * [new branch] gh/anijain2305/748/head -> origin/gh/anijain2305/748/head 2025-06-01T21:29:00.4340068Z * [new branch] gh/anijain2305/748/orig -> origin/gh/anijain2305/748/orig 2025-06-01T21:29:00.4340590Z * [new branch] gh/anijain2305/749/base -> origin/gh/anijain2305/749/base 2025-06-01T21:29:00.4341096Z * [new branch] gh/anijain2305/749/head -> origin/gh/anijain2305/749/head 2025-06-01T21:29:00.4341612Z * [new branch] gh/anijain2305/749/orig -> origin/gh/anijain2305/749/orig 2025-06-01T21:29:00.4342121Z * [new branch] gh/anijain2305/750/base -> origin/gh/anijain2305/750/base 2025-06-01T21:29:00.4342646Z * [new branch] gh/anijain2305/750/head -> origin/gh/anijain2305/750/head 2025-06-01T21:29:00.4343168Z * [new branch] gh/anijain2305/750/orig -> origin/gh/anijain2305/750/orig 2025-06-01T21:29:00.4343685Z * [new branch] gh/anijain2305/751/base -> origin/gh/anijain2305/751/base 2025-06-01T21:29:00.4344348Z * [new branch] gh/anijain2305/751/head -> origin/gh/anijain2305/751/head 2025-06-01T21:29:00.4344864Z * [new branch] gh/anijain2305/751/orig -> origin/gh/anijain2305/751/orig 2025-06-01T21:29:00.4345385Z * [new branch] gh/anijain2305/752/base -> origin/gh/anijain2305/752/base 2025-06-01T21:29:00.4345908Z * [new branch] gh/anijain2305/752/head -> origin/gh/anijain2305/752/head 2025-06-01T21:29:00.4346424Z * [new branch] gh/anijain2305/752/orig -> origin/gh/anijain2305/752/orig 2025-06-01T21:29:00.4346949Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-06-01T21:29:00.4347550Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-06-01T21:29:00.4348082Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-06-01T21:29:00.4348613Z * [new branch] gh/anijain2305/754/base -> origin/gh/anijain2305/754/base 2025-06-01T21:29:00.4349134Z * [new branch] gh/anijain2305/754/head -> origin/gh/anijain2305/754/head 2025-06-01T21:29:00.4349650Z * [new branch] gh/anijain2305/754/orig -> origin/gh/anijain2305/754/orig 2025-06-01T21:29:00.4350160Z * [new branch] gh/anijain2305/755/base -> origin/gh/anijain2305/755/base 2025-06-01T21:29:00.4350688Z * [new branch] gh/anijain2305/755/head -> origin/gh/anijain2305/755/head 2025-06-01T21:29:00.4351204Z * [new branch] gh/anijain2305/755/orig -> origin/gh/anijain2305/755/orig 2025-06-01T21:29:00.4351718Z * [new branch] gh/anijain2305/756/base -> origin/gh/anijain2305/756/base 2025-06-01T21:29:00.4352236Z * [new branch] gh/anijain2305/756/head -> origin/gh/anijain2305/756/head 2025-06-01T21:29:00.4352752Z * [new branch] gh/anijain2305/756/orig -> origin/gh/anijain2305/756/orig 2025-06-01T21:29:00.4353278Z * [new branch] gh/anijain2305/757/base -> origin/gh/anijain2305/757/base 2025-06-01T21:29:00.4353797Z * [new branch] gh/anijain2305/757/head -> origin/gh/anijain2305/757/head 2025-06-01T21:29:00.4354308Z * [new branch] gh/anijain2305/757/orig -> origin/gh/anijain2305/757/orig 2025-06-01T21:29:00.4354830Z * [new branch] gh/anijain2305/758/base -> origin/gh/anijain2305/758/base 2025-06-01T21:29:00.4355345Z * [new branch] gh/anijain2305/758/head -> origin/gh/anijain2305/758/head 2025-06-01T21:29:00.4356287Z * [new branch] gh/anijain2305/758/orig -> origin/gh/anijain2305/758/orig 2025-06-01T21:29:00.4356805Z * [new branch] gh/anijain2305/759/base -> origin/gh/anijain2305/759/base 2025-06-01T21:29:00.4357335Z * [new branch] gh/anijain2305/759/head -> origin/gh/anijain2305/759/head 2025-06-01T21:29:00.4357856Z * [new branch] gh/anijain2305/759/orig -> origin/gh/anijain2305/759/orig 2025-06-01T21:29:00.4358376Z * [new branch] gh/anijain2305/760/base -> origin/gh/anijain2305/760/base 2025-06-01T21:29:00.4358895Z * [new branch] gh/anijain2305/760/head -> origin/gh/anijain2305/760/head 2025-06-01T21:29:00.4359492Z * [new branch] gh/anijain2305/760/orig -> origin/gh/anijain2305/760/orig 2025-06-01T21:29:00.4801797Z * [new branch] gh/anijain2305/761/base -> origin/gh/anijain2305/761/base 2025-06-01T21:29:00.4802393Z * [new branch] gh/anijain2305/761/head -> origin/gh/anijain2305/761/head 2025-06-01T21:29:00.4802993Z * [new branch] gh/anijain2305/761/orig -> origin/gh/anijain2305/761/orig 2025-06-01T21:29:00.4803529Z * [new branch] gh/anijain2305/762/base -> origin/gh/anijain2305/762/base 2025-06-01T21:29:00.4805065Z * [new branch] gh/anijain2305/762/head -> origin/gh/anijain2305/762/head 2025-06-01T21:29:00.4805810Z * [new branch] gh/anijain2305/762/orig -> origin/gh/anijain2305/762/orig 2025-06-01T21:29:00.4806347Z * [new branch] gh/anijain2305/763/base -> origin/gh/anijain2305/763/base 2025-06-01T21:29:00.4806872Z * [new branch] gh/anijain2305/763/head -> origin/gh/anijain2305/763/head 2025-06-01T21:29:00.4807411Z * [new branch] gh/anijain2305/763/orig -> origin/gh/anijain2305/763/orig 2025-06-01T21:29:00.4807939Z * [new branch] gh/anijain2305/764/base -> origin/gh/anijain2305/764/base 2025-06-01T21:29:00.4808462Z * [new branch] gh/anijain2305/764/head -> origin/gh/anijain2305/764/head 2025-06-01T21:29:00.4808990Z * [new branch] gh/anijain2305/764/orig -> origin/gh/anijain2305/764/orig 2025-06-01T21:29:00.4809505Z * [new branch] gh/anijain2305/765/base -> origin/gh/anijain2305/765/base 2025-06-01T21:29:00.4810029Z * [new branch] gh/anijain2305/765/head -> origin/gh/anijain2305/765/head 2025-06-01T21:29:00.4810558Z * [new branch] gh/anijain2305/765/orig -> origin/gh/anijain2305/765/orig 2025-06-01T21:29:00.4811079Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-06-01T21:29:00.4811608Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-06-01T21:29:00.4812121Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-06-01T21:29:00.4812650Z * [new branch] gh/anijain2305/767/base -> origin/gh/anijain2305/767/base 2025-06-01T21:29:00.4813176Z * [new branch] gh/anijain2305/767/head -> origin/gh/anijain2305/767/head 2025-06-01T21:29:00.4813697Z * [new branch] gh/anijain2305/767/orig -> origin/gh/anijain2305/767/orig 2025-06-01T21:29:00.4814225Z * [new branch] gh/anijain2305/768/base -> origin/gh/anijain2305/768/base 2025-06-01T21:29:00.4814750Z * [new branch] gh/anijain2305/768/head -> origin/gh/anijain2305/768/head 2025-06-01T21:29:00.4815276Z * [new branch] gh/anijain2305/768/orig -> origin/gh/anijain2305/768/orig 2025-06-01T21:29:00.4815804Z * [new branch] gh/anijain2305/769/base -> origin/gh/anijain2305/769/base 2025-06-01T21:29:00.4816322Z * [new branch] gh/anijain2305/769/head -> origin/gh/anijain2305/769/head 2025-06-01T21:29:00.4816849Z * [new branch] gh/anijain2305/769/orig -> origin/gh/anijain2305/769/orig 2025-06-01T21:29:00.4817937Z * [new branch] gh/anijain2305/770/base -> origin/gh/anijain2305/770/base 2025-06-01T21:29:00.4818483Z * [new branch] gh/anijain2305/770/head -> origin/gh/anijain2305/770/head 2025-06-01T21:29:00.4819010Z * [new branch] gh/anijain2305/770/orig -> origin/gh/anijain2305/770/orig 2025-06-01T21:29:00.4819544Z * [new branch] gh/anijain2305/771/base -> origin/gh/anijain2305/771/base 2025-06-01T21:29:00.4820082Z * [new branch] gh/anijain2305/771/head -> origin/gh/anijain2305/771/head 2025-06-01T21:29:00.4820597Z * [new branch] gh/anijain2305/771/orig -> origin/gh/anijain2305/771/orig 2025-06-01T21:29:00.4821119Z * [new branch] gh/anijain2305/772/base -> origin/gh/anijain2305/772/base 2025-06-01T21:29:00.4821633Z * [new branch] gh/anijain2305/772/head -> origin/gh/anijain2305/772/head 2025-06-01T21:29:00.4822202Z * [new branch] gh/anijain2305/772/orig -> origin/gh/anijain2305/772/orig 2025-06-01T21:29:00.4822745Z * [new branch] gh/anijain2305/773/base -> origin/gh/anijain2305/773/base 2025-06-01T21:29:00.4823276Z * [new branch] gh/anijain2305/773/head -> origin/gh/anijain2305/773/head 2025-06-01T21:29:00.4823812Z * [new branch] gh/anijain2305/773/orig -> origin/gh/anijain2305/773/orig 2025-06-01T21:29:00.4824447Z * [new branch] gh/anijain2305/774/base -> origin/gh/anijain2305/774/base 2025-06-01T21:29:00.4824995Z * [new branch] gh/anijain2305/774/head -> origin/gh/anijain2305/774/head 2025-06-01T21:29:00.4825531Z * [new branch] gh/anijain2305/774/orig -> origin/gh/anijain2305/774/orig 2025-06-01T21:29:00.4826056Z * [new branch] gh/anijain2305/775/base -> origin/gh/anijain2305/775/base 2025-06-01T21:29:00.4826581Z * [new branch] gh/anijain2305/775/head -> origin/gh/anijain2305/775/head 2025-06-01T21:29:00.4827105Z * [new branch] gh/anijain2305/775/orig -> origin/gh/anijain2305/775/orig 2025-06-01T21:29:00.5293474Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-06-01T21:29:00.5294076Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-06-01T21:29:00.5294581Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-06-01T21:29:00.5295158Z * [new branch] gh/ankitageorge/1/base -> origin/gh/ankitageorge/1/base 2025-06-01T21:29:00.5295718Z * [new branch] gh/ankitageorge/1/head -> origin/gh/ankitageorge/1/head 2025-06-01T21:29:00.5296252Z * [new branch] gh/ankitageorge/1/orig -> origin/gh/ankitageorge/1/orig 2025-06-01T21:29:00.5296802Z * [new branch] gh/ankitageorge/2/base -> origin/gh/ankitageorge/2/base 2025-06-01T21:29:00.5297334Z * [new branch] gh/ankitageorge/2/head -> origin/gh/ankitageorge/2/head 2025-06-01T21:29:00.5297893Z * [new branch] gh/ankitageorge/2/orig -> origin/gh/ankitageorge/2/orig 2025-06-01T21:29:00.5298425Z * [new branch] gh/ankitageorge/3/base -> origin/gh/ankitageorge/3/base 2025-06-01T21:29:00.5298952Z * [new branch] gh/ankitageorge/3/head -> origin/gh/ankitageorge/3/head 2025-06-01T21:29:00.5299503Z * [new branch] gh/ankitageorge/3/orig -> origin/gh/ankitageorge/3/orig 2025-06-01T21:29:00.5300030Z * [new branch] gh/ankitageorge/4/base -> origin/gh/ankitageorge/4/base 2025-06-01T21:29:00.5300572Z * [new branch] gh/ankitageorge/4/head -> origin/gh/ankitageorge/4/head 2025-06-01T21:29:00.5301101Z * [new branch] gh/ankitageorge/4/orig -> origin/gh/ankitageorge/4/orig 2025-06-01T21:29:00.5301644Z * [new branch] gh/ankitageorge/5/base -> origin/gh/ankitageorge/5/base 2025-06-01T21:29:00.5302782Z * [new branch] gh/ankitageorge/5/head -> origin/gh/ankitageorge/5/head 2025-06-01T21:29:00.5303314Z * [new branch] gh/ankitageorge/5/orig -> origin/gh/ankitageorge/5/orig 2025-06-01T21:29:00.5303856Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-06-01T21:29:00.5304365Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-06-01T21:29:00.5304888Z * [new branch] gh/aorenste/222/base -> origin/gh/aorenste/222/base 2025-06-01T21:29:00.5305407Z * [new branch] gh/aorenste/222/head -> origin/gh/aorenste/222/head 2025-06-01T21:29:00.5305913Z * [new branch] gh/aorenste/222/orig -> origin/gh/aorenste/222/orig 2025-06-01T21:29:00.5306440Z * [new branch] gh/aorenste/223/base -> origin/gh/aorenste/223/base 2025-06-01T21:29:00.5306939Z * [new branch] gh/aorenste/223/head -> origin/gh/aorenste/223/head 2025-06-01T21:29:00.5307547Z * [new branch] gh/aorenste/223/orig -> origin/gh/aorenste/223/orig 2025-06-01T21:29:00.5308060Z * [new branch] gh/aorenste/224/base -> origin/gh/aorenste/224/base 2025-06-01T21:29:00.5308564Z * [new branch] gh/aorenste/224/head -> origin/gh/aorenste/224/head 2025-06-01T21:29:00.5309217Z * [new branch] gh/aorenste/224/orig -> origin/gh/aorenste/224/orig 2025-06-01T21:29:00.5309715Z * [new branch] gh/aorenste/225/base -> origin/gh/aorenste/225/base 2025-06-01T21:29:00.5310242Z * [new branch] gh/aorenste/225/head -> origin/gh/aorenste/225/head 2025-06-01T21:29:00.5310754Z * [new branch] gh/aorenste/225/orig -> origin/gh/aorenste/225/orig 2025-06-01T21:29:00.5311248Z * [new branch] gh/aorenste/226/base -> origin/gh/aorenste/226/base 2025-06-01T21:29:00.5311747Z * [new branch] gh/aorenste/226/head -> origin/gh/aorenste/226/head 2025-06-01T21:29:00.5312240Z * [new branch] gh/aorenste/226/orig -> origin/gh/aorenste/226/orig 2025-06-01T21:29:00.5312743Z * [new branch] gh/aorenste/227/base -> origin/gh/aorenste/227/base 2025-06-01T21:29:00.5313228Z * [new branch] gh/aorenste/227/head -> origin/gh/aorenste/227/head 2025-06-01T21:29:00.5313733Z * [new branch] gh/aorenste/227/orig -> origin/gh/aorenste/227/orig 2025-06-01T21:29:00.5314232Z * [new branch] gh/aorenste/228/base -> origin/gh/aorenste/228/base 2025-06-01T21:29:00.5314722Z * [new branch] gh/aorenste/228/head -> origin/gh/aorenste/228/head 2025-06-01T21:29:00.5315216Z * [new branch] gh/aorenste/228/orig -> origin/gh/aorenste/228/orig 2025-06-01T21:29:00.5315705Z * [new branch] gh/aorenste/229/base -> origin/gh/aorenste/229/base 2025-06-01T21:29:00.5316206Z * [new branch] gh/aorenste/229/head -> origin/gh/aorenste/229/head 2025-06-01T21:29:00.5316702Z * [new branch] gh/aorenste/229/orig -> origin/gh/aorenste/229/orig 2025-06-01T21:29:00.5317187Z * [new branch] gh/aorenste/230/base -> origin/gh/aorenste/230/base 2025-06-01T21:29:00.5317682Z * [new branch] gh/aorenste/230/head -> origin/gh/aorenste/230/head 2025-06-01T21:29:00.5798659Z * [new branch] gh/aorenste/230/orig -> origin/gh/aorenste/230/orig 2025-06-01T21:29:00.5799263Z * [new branch] gh/avikchaudhuri/59/base -> origin/gh/avikchaudhuri/59/base 2025-06-01T21:29:00.5799827Z * [new branch] gh/avikchaudhuri/59/head -> origin/gh/avikchaudhuri/59/head 2025-06-01T21:29:00.5800373Z * [new branch] gh/avikchaudhuri/59/orig -> origin/gh/avikchaudhuri/59/orig 2025-06-01T21:29:00.5800913Z * [new branch] gh/bdhirsh/604/base -> origin/gh/bdhirsh/604/base 2025-06-01T21:29:00.5802013Z * [new branch] gh/bdhirsh/604/head -> origin/gh/bdhirsh/604/head 2025-06-01T21:29:00.5802519Z * [new branch] gh/bdhirsh/604/orig -> origin/gh/bdhirsh/604/orig 2025-06-01T21:29:00.5803010Z * [new branch] gh/bdhirsh/636/base -> origin/gh/bdhirsh/636/base 2025-06-01T21:29:00.5803502Z * [new branch] gh/bdhirsh/636/head -> origin/gh/bdhirsh/636/head 2025-06-01T21:29:00.5803995Z * [new branch] gh/bdhirsh/636/orig -> origin/gh/bdhirsh/636/orig 2025-06-01T21:29:00.5804471Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-06-01T21:29:00.5804959Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-06-01T21:29:00.5805443Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-06-01T21:29:00.5805927Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-06-01T21:29:00.5806414Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-06-01T21:29:00.5806892Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-06-01T21:29:00.5807387Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-06-01T21:29:00.5808013Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-06-01T21:29:00.5808504Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-06-01T21:29:00.5808998Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-06-01T21:29:00.5809551Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-06-01T21:29:00.5810133Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-06-01T21:29:00.5810623Z * [new branch] gh/bdhirsh/654/base -> origin/gh/bdhirsh/654/base 2025-06-01T21:29:00.5811116Z * [new branch] gh/bdhirsh/654/head -> origin/gh/bdhirsh/654/head 2025-06-01T21:29:00.5811608Z * [new branch] gh/bdhirsh/654/orig -> origin/gh/bdhirsh/654/orig 2025-06-01T21:29:00.5812092Z * [new branch] gh/bdhirsh/655/base -> origin/gh/bdhirsh/655/base 2025-06-01T21:29:00.5812584Z * [new branch] gh/bdhirsh/655/head -> origin/gh/bdhirsh/655/head 2025-06-01T21:29:00.5813061Z * [new branch] gh/bdhirsh/655/orig -> origin/gh/bdhirsh/655/orig 2025-06-01T21:29:00.5813572Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-06-01T21:29:00.5814060Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-06-01T21:29:00.5814549Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-06-01T21:29:00.5815045Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-06-01T21:29:00.5815532Z * [new branch] gh/bdhirsh/658/base -> origin/gh/bdhirsh/658/base 2025-06-01T21:29:00.5816025Z * [new branch] gh/bdhirsh/658/head -> origin/gh/bdhirsh/658/head 2025-06-01T21:29:00.5816513Z * [new branch] gh/bdhirsh/658/orig -> origin/gh/bdhirsh/658/orig 2025-06-01T21:29:00.5817002Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-06-01T21:29:00.5817492Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-06-01T21:29:00.5817973Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-06-01T21:29:00.5818463Z * [new branch] gh/bdhirsh/660/base -> origin/gh/bdhirsh/660/base 2025-06-01T21:29:00.5818952Z * [new branch] gh/bdhirsh/660/head -> origin/gh/bdhirsh/660/head 2025-06-01T21:29:00.5819826Z * [new branch] gh/bdhirsh/660/orig -> origin/gh/bdhirsh/660/orig 2025-06-01T21:29:00.5820320Z * [new branch] gh/bdhirsh/661/base -> origin/gh/bdhirsh/661/base 2025-06-01T21:29:00.5820810Z * [new branch] gh/bdhirsh/661/head -> origin/gh/bdhirsh/661/head 2025-06-01T21:29:00.5821314Z * [new branch] gh/bdhirsh/661/orig -> origin/gh/bdhirsh/661/orig 2025-06-01T21:29:00.5821804Z * [new branch] gh/bdhirsh/662/base -> origin/gh/bdhirsh/662/base 2025-06-01T21:29:00.5822288Z * [new branch] gh/bdhirsh/662/head -> origin/gh/bdhirsh/662/head 2025-06-01T21:29:00.5822775Z * [new branch] gh/bdhirsh/662/orig -> origin/gh/bdhirsh/662/orig 2025-06-01T21:29:00.6294717Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-06-01T21:29:00.6295283Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-06-01T21:29:00.6295814Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-06-01T21:29:00.6296358Z * [new branch] gh/bdhirsh/664/base -> origin/gh/bdhirsh/664/base 2025-06-01T21:29:00.6296929Z * [new branch] gh/bdhirsh/664/head -> origin/gh/bdhirsh/664/head 2025-06-01T21:29:00.6297593Z * [new branch] gh/bdhirsh/664/orig -> origin/gh/bdhirsh/664/orig 2025-06-01T21:29:00.6298145Z * [new branch] gh/benjaminglass1/51/base -> origin/gh/benjaminglass1/51/base 2025-06-01T21:29:00.6298723Z * [new branch] gh/benjaminglass1/51/head -> origin/gh/benjaminglass1/51/head 2025-06-01T21:29:00.6299283Z * [new branch] gh/benjaminglass1/51/orig -> origin/gh/benjaminglass1/51/orig 2025-06-01T21:29:00.6299847Z * [new branch] gh/benjaminglass1/77/base -> origin/gh/benjaminglass1/77/base 2025-06-01T21:29:00.6300420Z * [new branch] gh/benjaminglass1/77/head -> origin/gh/benjaminglass1/77/head 2025-06-01T21:29:00.6300973Z * [new branch] gh/benjaminglass1/77/orig -> origin/gh/benjaminglass1/77/orig 2025-06-01T21:29:00.6301527Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-06-01T21:29:00.6302084Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-06-01T21:29:00.6302645Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-06-01T21:29:00.6303190Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-06-01T21:29:00.6303742Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-06-01T21:29:00.6304295Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-06-01T21:29:00.6304852Z * [new branch] gh/benjaminglass1/84/base -> origin/gh/benjaminglass1/84/base 2025-06-01T21:29:00.6305405Z * [new branch] gh/benjaminglass1/84/head -> origin/gh/benjaminglass1/84/head 2025-06-01T21:29:00.6305950Z * [new branch] gh/benjaminglass1/84/orig -> origin/gh/benjaminglass1/84/orig 2025-06-01T21:29:00.6306509Z * [new branch] gh/benjaminglass1/85/base -> origin/gh/benjaminglass1/85/base 2025-06-01T21:29:00.6307067Z * [new branch] gh/benjaminglass1/85/head -> origin/gh/benjaminglass1/85/head 2025-06-01T21:29:00.6307703Z * [new branch] gh/benjaminglass1/85/orig -> origin/gh/benjaminglass1/85/orig 2025-06-01T21:29:00.6308263Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-06-01T21:29:00.6308821Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-06-01T21:29:00.6309379Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-06-01T21:29:00.6310476Z * [new branch] gh/bertmaher/1/base -> origin/gh/bertmaher/1/base 2025-06-01T21:29:00.6337507Z * [new branch] gh/bertmaher/1/head -> origin/gh/bertmaher/1/head 2025-06-01T21:29:00.6338297Z * [new branch] gh/bertmaher/1/orig -> origin/gh/bertmaher/1/orig 2025-06-01T21:29:00.6338847Z * [new branch] gh/bertmaher/3/base -> origin/gh/bertmaher/3/base 2025-06-01T21:29:00.6339353Z * [new branch] gh/bertmaher/3/head -> origin/gh/bertmaher/3/head 2025-06-01T21:29:00.6339853Z * [new branch] gh/bertmaher/3/orig -> origin/gh/bertmaher/3/orig 2025-06-01T21:29:00.6340356Z * [new branch] gh/bertmaher/5/base -> origin/gh/bertmaher/5/base 2025-06-01T21:29:00.6340848Z * [new branch] gh/bertmaher/5/head -> origin/gh/bertmaher/5/head 2025-06-01T21:29:00.6341369Z * [new branch] gh/bertmaher/5/orig -> origin/gh/bertmaher/5/orig 2025-06-01T21:29:00.6341876Z * [new branch] gh/bobrenjc93/307/base -> origin/gh/bobrenjc93/307/base 2025-06-01T21:29:00.6342403Z * [new branch] gh/bobrenjc93/307/head -> origin/gh/bobrenjc93/307/head 2025-06-01T21:29:00.6342927Z * [new branch] gh/bobrenjc93/307/orig -> origin/gh/bobrenjc93/307/orig 2025-06-01T21:29:00.6343633Z * [new branch] gh/bobrenjc93/317/base -> origin/gh/bobrenjc93/317/base 2025-06-01T21:29:00.6344159Z * [new branch] gh/bobrenjc93/317/head -> origin/gh/bobrenjc93/317/head 2025-06-01T21:29:00.6344667Z * [new branch] gh/bobrenjc93/317/orig -> origin/gh/bobrenjc93/317/orig 2025-06-01T21:29:00.6345184Z * [new branch] gh/bobrenjc93/318/base -> origin/gh/bobrenjc93/318/base 2025-06-01T21:29:00.6345709Z * [new branch] gh/bobrenjc93/318/head -> origin/gh/bobrenjc93/318/head 2025-06-01T21:29:00.6346225Z * [new branch] gh/bobrenjc93/318/orig -> origin/gh/bobrenjc93/318/orig 2025-06-01T21:29:00.6781192Z * [new branch] gh/bobrenjc93/319/base -> origin/gh/bobrenjc93/319/base 2025-06-01T21:29:00.6781758Z * [new branch] gh/bobrenjc93/319/head -> origin/gh/bobrenjc93/319/head 2025-06-01T21:29:00.6782321Z * [new branch] gh/bobrenjc93/319/orig -> origin/gh/bobrenjc93/319/orig 2025-06-01T21:29:00.6782854Z * [new branch] gh/bobrenjc93/323/base -> origin/gh/bobrenjc93/323/base 2025-06-01T21:29:00.6783371Z * [new branch] gh/bobrenjc93/323/head -> origin/gh/bobrenjc93/323/head 2025-06-01T21:29:00.6783902Z * [new branch] gh/bobrenjc93/323/orig -> origin/gh/bobrenjc93/323/orig 2025-06-01T21:29:00.6784410Z * [new branch] gh/bobrenjc93/324/base -> origin/gh/bobrenjc93/324/base 2025-06-01T21:29:00.6784937Z * [new branch] gh/bobrenjc93/324/head -> origin/gh/bobrenjc93/324/head 2025-06-01T21:29:00.6785467Z * [new branch] gh/bobrenjc93/324/orig -> origin/gh/bobrenjc93/324/orig 2025-06-01T21:29:00.6785980Z * [new branch] gh/bobrenjc93/325/base -> origin/gh/bobrenjc93/325/base 2025-06-01T21:29:00.6786504Z * [new branch] gh/bobrenjc93/325/head -> origin/gh/bobrenjc93/325/head 2025-06-01T21:29:00.6787014Z * [new branch] gh/bobrenjc93/325/orig -> origin/gh/bobrenjc93/325/orig 2025-06-01T21:29:00.6787567Z * [new branch] gh/bobrenjc93/326/base -> origin/gh/bobrenjc93/326/base 2025-06-01T21:29:00.6788085Z * [new branch] gh/bobrenjc93/326/head -> origin/gh/bobrenjc93/326/head 2025-06-01T21:29:00.6788611Z * [new branch] gh/bobrenjc93/326/orig -> origin/gh/bobrenjc93/326/orig 2025-06-01T21:29:00.6789131Z * [new branch] gh/bobrenjc93/327/base -> origin/gh/bobrenjc93/327/base 2025-06-01T21:29:00.6790273Z * [new branch] gh/bobrenjc93/327/head -> origin/gh/bobrenjc93/327/head 2025-06-01T21:29:00.6790795Z * [new branch] gh/bobrenjc93/327/orig -> origin/gh/bobrenjc93/327/orig 2025-06-01T21:29:00.6791306Z * [new branch] gh/bobrenjc93/328/base -> origin/gh/bobrenjc93/328/base 2025-06-01T21:29:00.6791885Z * [new branch] gh/bobrenjc93/328/head -> origin/gh/bobrenjc93/328/head 2025-06-01T21:29:00.6792458Z * [new branch] gh/bobrenjc93/328/orig -> origin/gh/bobrenjc93/328/orig 2025-06-01T21:29:00.6793007Z * [new branch] gh/bobrenjc93/329/base -> origin/gh/bobrenjc93/329/base 2025-06-01T21:29:00.6793531Z * [new branch] gh/bobrenjc93/329/head -> origin/gh/bobrenjc93/329/head 2025-06-01T21:29:00.6794038Z * [new branch] gh/bobrenjc93/329/orig -> origin/gh/bobrenjc93/329/orig 2025-06-01T21:29:00.6794552Z * [new branch] gh/bobrenjc93/330/base -> origin/gh/bobrenjc93/330/base 2025-06-01T21:29:00.6795076Z * [new branch] gh/bobrenjc93/330/head -> origin/gh/bobrenjc93/330/head 2025-06-01T21:29:00.6795583Z * [new branch] gh/bobrenjc93/330/orig -> origin/gh/bobrenjc93/330/orig 2025-06-01T21:29:00.6796094Z * [new branch] gh/bobrenjc93/331/base -> origin/gh/bobrenjc93/331/base 2025-06-01T21:29:00.6796732Z * [new branch] gh/bobrenjc93/331/head -> origin/gh/bobrenjc93/331/head 2025-06-01T21:29:00.6797282Z * [new branch] gh/bobrenjc93/331/orig -> origin/gh/bobrenjc93/331/orig 2025-06-01T21:29:00.6797806Z * [new branch] gh/bobrenjc93/332/base -> origin/gh/bobrenjc93/332/base 2025-06-01T21:29:00.6798313Z * [new branch] gh/bobrenjc93/332/head -> origin/gh/bobrenjc93/332/head 2025-06-01T21:29:00.6798831Z * [new branch] gh/bobrenjc93/332/orig -> origin/gh/bobrenjc93/332/orig 2025-06-01T21:29:00.6799342Z * [new branch] gh/bobrenjc93/333/base -> origin/gh/bobrenjc93/333/base 2025-06-01T21:29:00.6799865Z * [new branch] gh/bobrenjc93/333/head -> origin/gh/bobrenjc93/333/head 2025-06-01T21:29:00.6800378Z * [new branch] gh/bobrenjc93/333/orig -> origin/gh/bobrenjc93/333/orig 2025-06-01T21:29:00.6800884Z * [new branch] gh/bobrenjc93/334/base -> origin/gh/bobrenjc93/334/base 2025-06-01T21:29:00.6801413Z * [new branch] gh/bobrenjc93/334/head -> origin/gh/bobrenjc93/334/head 2025-06-01T21:29:00.6801925Z * [new branch] gh/bobrenjc93/334/orig -> origin/gh/bobrenjc93/334/orig 2025-06-01T21:29:00.6802443Z * [new branch] gh/bobrenjc93/335/base -> origin/gh/bobrenjc93/335/base 2025-06-01T21:29:00.6802961Z * [new branch] gh/bobrenjc93/335/head -> origin/gh/bobrenjc93/335/head 2025-06-01T21:29:00.6803469Z * [new branch] gh/bobrenjc93/335/orig -> origin/gh/bobrenjc93/335/orig 2025-06-01T21:29:00.6804003Z * [new branch] gh/bobrenjc93/336/base -> origin/gh/bobrenjc93/336/base 2025-06-01T21:29:00.6804518Z * [new branch] gh/bobrenjc93/336/head -> origin/gh/bobrenjc93/336/head 2025-06-01T21:29:00.6805049Z * [new branch] gh/bobrenjc93/336/orig -> origin/gh/bobrenjc93/336/orig 2025-06-01T21:29:00.6805581Z * [new branch] gh/bobrenjc93/337/base -> origin/gh/bobrenjc93/337/base 2025-06-01T21:29:00.7229178Z * [new branch] gh/bobrenjc93/337/head -> origin/gh/bobrenjc93/337/head 2025-06-01T21:29:00.7229859Z * [new branch] gh/bobrenjc93/337/orig -> origin/gh/bobrenjc93/337/orig 2025-06-01T21:29:00.7230470Z * [new branch] gh/bobrenjc93/338/base -> origin/gh/bobrenjc93/338/base 2025-06-01T21:29:00.7231025Z * [new branch] gh/bobrenjc93/338/head -> origin/gh/bobrenjc93/338/head 2025-06-01T21:29:00.7232285Z * [new branch] gh/bobrenjc93/338/orig -> origin/gh/bobrenjc93/338/orig 2025-06-01T21:29:00.7232848Z * [new branch] gh/bobrenjc93/339/base -> origin/gh/bobrenjc93/339/base 2025-06-01T21:29:00.7233451Z * [new branch] gh/bobrenjc93/339/head -> origin/gh/bobrenjc93/339/head 2025-06-01T21:29:00.7233960Z * [new branch] gh/bobrenjc93/339/orig -> origin/gh/bobrenjc93/339/orig 2025-06-01T21:29:00.7234505Z * [new branch] gh/bobrenjc93/340/base -> origin/gh/bobrenjc93/340/base 2025-06-01T21:29:00.7235024Z * [new branch] gh/bobrenjc93/340/head -> origin/gh/bobrenjc93/340/head 2025-06-01T21:29:00.7235530Z * [new branch] gh/bobrenjc93/340/orig -> origin/gh/bobrenjc93/340/orig 2025-06-01T21:29:00.7236057Z * [new branch] gh/bobrenjc93/341/base -> origin/gh/bobrenjc93/341/base 2025-06-01T21:29:00.7236564Z * [new branch] gh/bobrenjc93/341/head -> origin/gh/bobrenjc93/341/head 2025-06-01T21:29:00.7237090Z * [new branch] gh/bobrenjc93/341/orig -> origin/gh/bobrenjc93/341/orig 2025-06-01T21:29:00.7237605Z * [new branch] gh/bobrenjc93/342/base -> origin/gh/bobrenjc93/342/base 2025-06-01T21:29:00.7238112Z * [new branch] gh/bobrenjc93/342/head -> origin/gh/bobrenjc93/342/head 2025-06-01T21:29:00.7238828Z * [new branch] gh/bobrenjc93/342/orig -> origin/gh/bobrenjc93/342/orig 2025-06-01T21:29:00.7239376Z * [new branch] gh/bobrenjc93/343/base -> origin/gh/bobrenjc93/343/base 2025-06-01T21:29:00.7239936Z * [new branch] gh/bobrenjc93/343/head -> origin/gh/bobrenjc93/343/head 2025-06-01T21:29:00.7240454Z * [new branch] gh/bobrenjc93/343/orig -> origin/gh/bobrenjc93/343/orig 2025-06-01T21:29:00.7240960Z * [new branch] gh/bobrenjc93/344/base -> origin/gh/bobrenjc93/344/base 2025-06-01T21:29:00.7241486Z * [new branch] gh/bobrenjc93/344/head -> origin/gh/bobrenjc93/344/head 2025-06-01T21:29:00.7241991Z * [new branch] gh/bobrenjc93/344/orig -> origin/gh/bobrenjc93/344/orig 2025-06-01T21:29:00.7242508Z * [new branch] gh/bobrenjc93/345/base -> origin/gh/bobrenjc93/345/base 2025-06-01T21:29:00.7243025Z * [new branch] gh/bobrenjc93/345/head -> origin/gh/bobrenjc93/345/head 2025-06-01T21:29:00.7243533Z * [new branch] gh/bobrenjc93/345/orig -> origin/gh/bobrenjc93/345/orig 2025-06-01T21:29:00.7244052Z * [new branch] gh/bobrenjc93/346/base -> origin/gh/bobrenjc93/346/base 2025-06-01T21:29:00.7244564Z * [new branch] gh/bobrenjc93/346/head -> origin/gh/bobrenjc93/346/head 2025-06-01T21:29:00.7245165Z * [new branch] gh/bobrenjc93/346/orig -> origin/gh/bobrenjc93/346/orig 2025-06-01T21:29:00.7245718Z * [new branch] gh/bobrenjc93/347/base -> origin/gh/bobrenjc93/347/base 2025-06-01T21:29:00.7246235Z * [new branch] gh/bobrenjc93/347/head -> origin/gh/bobrenjc93/347/head 2025-06-01T21:29:00.7246750Z * [new branch] gh/bobrenjc93/347/orig -> origin/gh/bobrenjc93/347/orig 2025-06-01T21:29:00.7247257Z * [new branch] gh/bobrenjc93/348/base -> origin/gh/bobrenjc93/348/base 2025-06-01T21:29:00.7247774Z * [new branch] gh/bobrenjc93/348/head -> origin/gh/bobrenjc93/348/head 2025-06-01T21:29:00.7248286Z * [new branch] gh/bobrenjc93/348/orig -> origin/gh/bobrenjc93/348/orig 2025-06-01T21:29:00.7248799Z * [new branch] gh/bobrenjc93/349/base -> origin/gh/bobrenjc93/349/base 2025-06-01T21:29:00.7249311Z * [new branch] gh/bobrenjc93/349/head -> origin/gh/bobrenjc93/349/head 2025-06-01T21:29:00.7249813Z * [new branch] gh/bobrenjc93/349/orig -> origin/gh/bobrenjc93/349/orig 2025-06-01T21:29:00.7250769Z * [new branch] gh/bobrenjc93/350/base -> origin/gh/bobrenjc93/350/base 2025-06-01T21:29:00.7251371Z * [new branch] gh/bobrenjc93/350/head -> origin/gh/bobrenjc93/350/head 2025-06-01T21:29:00.7251947Z * [new branch] gh/bobrenjc93/350/orig -> origin/gh/bobrenjc93/350/orig 2025-06-01T21:29:00.7252478Z * [new branch] gh/bobrenjc93/351/base -> origin/gh/bobrenjc93/351/base 2025-06-01T21:29:00.7253003Z * [new branch] gh/bobrenjc93/351/head -> origin/gh/bobrenjc93/351/head 2025-06-01T21:29:00.7253539Z * [new branch] gh/bobrenjc93/351/orig -> origin/gh/bobrenjc93/351/orig 2025-06-01T21:29:00.7254061Z * [new branch] gh/bobrenjc93/352/base -> origin/gh/bobrenjc93/352/base 2025-06-01T21:29:00.7684422Z * [new branch] gh/bobrenjc93/352/head -> origin/gh/bobrenjc93/352/head 2025-06-01T21:29:00.7684997Z * [new branch] gh/bobrenjc93/352/orig -> origin/gh/bobrenjc93/352/orig 2025-06-01T21:29:00.7685537Z * [new branch] gh/bobrenjc93/353/base -> origin/gh/bobrenjc93/353/base 2025-06-01T21:29:00.7686113Z * [new branch] gh/bobrenjc93/353/head -> origin/gh/bobrenjc93/353/head 2025-06-01T21:29:00.7686658Z * [new branch] gh/bobrenjc93/353/orig -> origin/gh/bobrenjc93/353/orig 2025-06-01T21:29:00.7687381Z * [new branch] gh/bobrenjc93/354/base -> origin/gh/bobrenjc93/354/base 2025-06-01T21:29:00.7687911Z * [new branch] gh/bobrenjc93/354/head -> origin/gh/bobrenjc93/354/head 2025-06-01T21:29:00.7688424Z * [new branch] gh/bobrenjc93/354/orig -> origin/gh/bobrenjc93/354/orig 2025-06-01T21:29:00.7688971Z * [new branch] gh/bobrenjc93/355/base -> origin/gh/bobrenjc93/355/base 2025-06-01T21:29:00.7689492Z * [new branch] gh/bobrenjc93/355/head -> origin/gh/bobrenjc93/355/head 2025-06-01T21:29:00.7690008Z * [new branch] gh/bobrenjc93/355/orig -> origin/gh/bobrenjc93/355/orig 2025-06-01T21:29:00.7690524Z * [new branch] gh/bobrenjc93/356/base -> origin/gh/bobrenjc93/356/base 2025-06-01T21:29:00.7691050Z * [new branch] gh/bobrenjc93/356/head -> origin/gh/bobrenjc93/356/head 2025-06-01T21:29:00.7691560Z * [new branch] gh/bobrenjc93/356/orig -> origin/gh/bobrenjc93/356/orig 2025-06-01T21:29:00.7692127Z * [new branch] gh/bobrenjc93/357/base -> origin/gh/bobrenjc93/357/base 2025-06-01T21:29:00.7692683Z * [new branch] gh/bobrenjc93/357/head -> origin/gh/bobrenjc93/357/head 2025-06-01T21:29:00.7693182Z * [new branch] gh/bobrenjc93/357/orig -> origin/gh/bobrenjc93/357/orig 2025-06-01T21:29:00.7693695Z * [new branch] gh/bobrenjc93/358/base -> origin/gh/bobrenjc93/358/base 2025-06-01T21:29:00.7694202Z * [new branch] gh/bobrenjc93/358/head -> origin/gh/bobrenjc93/358/head 2025-06-01T21:29:00.7694721Z * [new branch] gh/bobrenjc93/358/orig -> origin/gh/bobrenjc93/358/orig 2025-06-01T21:29:00.7695225Z * [new branch] gh/bobrenjc93/359/base -> origin/gh/bobrenjc93/359/base 2025-06-01T21:29:00.7695747Z * [new branch] gh/bobrenjc93/359/head -> origin/gh/bobrenjc93/359/head 2025-06-01T21:29:00.7696264Z * [new branch] gh/bobrenjc93/359/orig -> origin/gh/bobrenjc93/359/orig 2025-06-01T21:29:00.7696768Z * [new branch] gh/bobrenjc93/360/base -> origin/gh/bobrenjc93/360/base 2025-06-01T21:29:00.7697282Z * [new branch] gh/bobrenjc93/360/head -> origin/gh/bobrenjc93/360/head 2025-06-01T21:29:00.7697826Z * [new branch] gh/bobrenjc93/360/orig -> origin/gh/bobrenjc93/360/orig 2025-06-01T21:29:00.7698375Z * [new branch] gh/bobrenjc93/361/base -> origin/gh/bobrenjc93/361/base 2025-06-01T21:29:00.7699016Z * [new branch] gh/bobrenjc93/361/head -> origin/gh/bobrenjc93/361/head 2025-06-01T21:29:00.7699521Z * [new branch] gh/bobrenjc93/361/orig -> origin/gh/bobrenjc93/361/orig 2025-06-01T21:29:00.7700042Z * [new branch] gh/bobrenjc93/362/base -> origin/gh/bobrenjc93/362/base 2025-06-01T21:29:00.7700554Z * [new branch] gh/bobrenjc93/362/head -> origin/gh/bobrenjc93/362/head 2025-06-01T21:29:00.7701083Z * [new branch] gh/bobrenjc93/362/orig -> origin/gh/bobrenjc93/362/orig 2025-06-01T21:29:00.7701591Z * [new branch] gh/bobrenjc93/363/base -> origin/gh/bobrenjc93/363/base 2025-06-01T21:29:00.7702095Z * [new branch] gh/bobrenjc93/363/head -> origin/gh/bobrenjc93/363/head 2025-06-01T21:29:00.7702613Z * [new branch] gh/bobrenjc93/363/orig -> origin/gh/bobrenjc93/363/orig 2025-06-01T21:29:00.7703119Z * [new branch] gh/bobrenjc93/364/base -> origin/gh/bobrenjc93/364/base 2025-06-01T21:29:00.7703684Z * [new branch] gh/bobrenjc93/364/head -> origin/gh/bobrenjc93/364/head 2025-06-01T21:29:00.7704235Z * [new branch] gh/bobrenjc93/364/orig -> origin/gh/bobrenjc93/364/orig 2025-06-01T21:29:00.7704745Z * [new branch] gh/bobrenjc93/365/base -> origin/gh/bobrenjc93/365/base 2025-06-01T21:29:00.7705358Z * [new branch] gh/bobrenjc93/365/head -> origin/gh/bobrenjc93/365/head 2025-06-01T21:29:00.7705870Z * [new branch] gh/bobrenjc93/365/orig -> origin/gh/bobrenjc93/365/orig 2025-06-01T21:29:00.7706389Z * [new branch] gh/bobrenjc93/366/base -> origin/gh/bobrenjc93/366/base 2025-06-01T21:29:00.7706910Z * [new branch] gh/bobrenjc93/366/head -> origin/gh/bobrenjc93/366/head 2025-06-01T21:29:00.7707490Z * [new branch] gh/bobrenjc93/366/orig -> origin/gh/bobrenjc93/366/orig 2025-06-01T21:29:00.7708027Z * [new branch] gh/bobrenjc93/367/base -> origin/gh/bobrenjc93/367/base 2025-06-01T21:29:00.7708556Z * [new branch] gh/bobrenjc93/367/head -> origin/gh/bobrenjc93/367/head 2025-06-01T21:29:00.8122784Z * [new branch] gh/bobrenjc93/367/orig -> origin/gh/bobrenjc93/367/orig 2025-06-01T21:29:00.8123385Z * [new branch] gh/bobrenjc93/368/base -> origin/gh/bobrenjc93/368/base 2025-06-01T21:29:00.8123922Z * [new branch] gh/bobrenjc93/368/head -> origin/gh/bobrenjc93/368/head 2025-06-01T21:29:00.8124450Z * [new branch] gh/bobrenjc93/368/orig -> origin/gh/bobrenjc93/368/orig 2025-06-01T21:29:00.8124965Z * [new branch] gh/bobrenjc93/369/base -> origin/gh/bobrenjc93/369/base 2025-06-01T21:29:00.8125489Z * [new branch] gh/bobrenjc93/369/head -> origin/gh/bobrenjc93/369/head 2025-06-01T21:29:00.8126007Z * [new branch] gh/bobrenjc93/369/orig -> origin/gh/bobrenjc93/369/orig 2025-06-01T21:29:00.8126562Z * [new branch] gh/bobrenjc93/370/base -> origin/gh/bobrenjc93/370/base 2025-06-01T21:29:00.8127120Z * [new branch] gh/bobrenjc93/370/head -> origin/gh/bobrenjc93/370/head 2025-06-01T21:29:00.8127632Z * [new branch] gh/bobrenjc93/370/orig -> origin/gh/bobrenjc93/370/orig 2025-06-01T21:29:00.8128155Z * [new branch] gh/bobrenjc93/371/base -> origin/gh/bobrenjc93/371/base 2025-06-01T21:29:00.8128668Z * [new branch] gh/bobrenjc93/371/head -> origin/gh/bobrenjc93/371/head 2025-06-01T21:29:00.8129168Z * [new branch] gh/bobrenjc93/371/orig -> origin/gh/bobrenjc93/371/orig 2025-06-01T21:29:00.8129679Z * [new branch] gh/bobrenjc93/372/base -> origin/gh/bobrenjc93/372/base 2025-06-01T21:29:00.8130178Z * [new branch] gh/bobrenjc93/372/head -> origin/gh/bobrenjc93/372/head 2025-06-01T21:29:00.8130695Z * [new branch] gh/bobrenjc93/372/orig -> origin/gh/bobrenjc93/372/orig 2025-06-01T21:29:00.8131400Z * [new branch] gh/bobrenjc93/373/base -> origin/gh/bobrenjc93/373/base 2025-06-01T21:29:00.8131902Z * [new branch] gh/bobrenjc93/373/head -> origin/gh/bobrenjc93/373/head 2025-06-01T21:29:00.8132423Z * [new branch] gh/bobrenjc93/373/orig -> origin/gh/bobrenjc93/373/orig 2025-06-01T21:29:00.8133008Z * [new branch] gh/bobrenjc93/374/base -> origin/gh/bobrenjc93/374/base 2025-06-01T21:29:00.8133530Z * [new branch] gh/bobrenjc93/374/head -> origin/gh/bobrenjc93/374/head 2025-06-01T21:29:00.8134056Z * [new branch] gh/bobrenjc93/374/orig -> origin/gh/bobrenjc93/374/orig 2025-06-01T21:29:00.8134576Z * [new branch] gh/bobrenjc93/375/base -> origin/gh/bobrenjc93/375/base 2025-06-01T21:29:00.8135101Z * [new branch] gh/bobrenjc93/375/head -> origin/gh/bobrenjc93/375/head 2025-06-01T21:29:00.8135613Z * [new branch] gh/bobrenjc93/375/orig -> origin/gh/bobrenjc93/375/orig 2025-06-01T21:29:00.8136123Z * [new branch] gh/bobrenjc93/376/base -> origin/gh/bobrenjc93/376/base 2025-06-01T21:29:00.8136630Z * [new branch] gh/bobrenjc93/376/head -> origin/gh/bobrenjc93/376/head 2025-06-01T21:29:00.8137146Z * [new branch] gh/bobrenjc93/376/orig -> origin/gh/bobrenjc93/376/orig 2025-06-01T21:29:00.8137777Z * [new branch] gh/bobrenjc93/377/base -> origin/gh/bobrenjc93/377/base 2025-06-01T21:29:00.8138285Z * [new branch] gh/bobrenjc93/377/head -> origin/gh/bobrenjc93/377/head 2025-06-01T21:29:00.8138868Z * [new branch] gh/bobrenjc93/377/orig -> origin/gh/bobrenjc93/377/orig 2025-06-01T21:29:00.8139382Z * [new branch] gh/bobrenjc93/378/base -> origin/gh/bobrenjc93/378/base 2025-06-01T21:29:00.8139892Z * [new branch] gh/bobrenjc93/378/head -> origin/gh/bobrenjc93/378/head 2025-06-01T21:29:00.8140418Z * [new branch] gh/bobrenjc93/378/orig -> origin/gh/bobrenjc93/378/orig 2025-06-01T21:29:00.8140928Z * [new branch] gh/bobrenjc93/379/base -> origin/gh/bobrenjc93/379/base 2025-06-01T21:29:00.8141436Z * [new branch] gh/bobrenjc93/379/head -> origin/gh/bobrenjc93/379/head 2025-06-01T21:29:00.8141943Z * [new branch] gh/bobrenjc93/379/orig -> origin/gh/bobrenjc93/379/orig 2025-06-01T21:29:00.8142457Z * [new branch] gh/bobrenjc93/380/base -> origin/gh/bobrenjc93/380/base 2025-06-01T21:29:00.8142965Z * [new branch] gh/bobrenjc93/380/head -> origin/gh/bobrenjc93/380/head 2025-06-01T21:29:00.8143479Z * [new branch] gh/bobrenjc93/380/orig -> origin/gh/bobrenjc93/380/orig 2025-06-01T21:29:00.8143990Z * [new branch] gh/bobrenjc93/381/base -> origin/gh/bobrenjc93/381/base 2025-06-01T21:29:00.8144574Z * [new branch] gh/bobrenjc93/381/head -> origin/gh/bobrenjc93/381/head 2025-06-01T21:29:00.8145086Z * [new branch] gh/bobrenjc93/381/orig -> origin/gh/bobrenjc93/381/orig 2025-06-01T21:29:00.8145595Z * [new branch] gh/bobrenjc93/382/base -> origin/gh/bobrenjc93/382/base 2025-06-01T21:29:00.8146113Z * [new branch] gh/bobrenjc93/382/head -> origin/gh/bobrenjc93/382/head 2025-06-01T21:29:00.9213692Z * [new branch] gh/bobrenjc93/382/orig -> origin/gh/bobrenjc93/382/orig 2025-06-01T21:29:00.9214301Z * [new branch] gh/bobrenjc93/383/base -> origin/gh/bobrenjc93/383/base 2025-06-01T21:29:00.9214926Z * [new branch] gh/bobrenjc93/383/head -> origin/gh/bobrenjc93/383/head 2025-06-01T21:29:00.9215438Z * [new branch] gh/bobrenjc93/383/orig -> origin/gh/bobrenjc93/383/orig 2025-06-01T21:29:00.9215967Z * [new branch] gh/bobrenjc93/384/base -> origin/gh/bobrenjc93/384/base 2025-06-01T21:29:00.9216726Z * [new branch] gh/bobrenjc93/384/head -> origin/gh/bobrenjc93/384/head 2025-06-01T21:29:00.9217275Z * [new branch] gh/bobrenjc93/384/orig -> origin/gh/bobrenjc93/384/orig 2025-06-01T21:29:00.9217853Z * [new branch] gh/bobrenjc93/385/base -> origin/gh/bobrenjc93/385/base 2025-06-01T21:29:00.9218360Z * [new branch] gh/bobrenjc93/385/head -> origin/gh/bobrenjc93/385/head 2025-06-01T21:29:00.9218913Z * [new branch] gh/bobrenjc93/385/orig -> origin/gh/bobrenjc93/385/orig 2025-06-01T21:29:00.9219425Z * [new branch] gh/bobrenjc93/386/base -> origin/gh/bobrenjc93/386/base 2025-06-01T21:29:00.9219999Z * [new branch] gh/bobrenjc93/386/head -> origin/gh/bobrenjc93/386/head 2025-06-01T21:29:00.9220553Z * [new branch] gh/bobrenjc93/386/orig -> origin/gh/bobrenjc93/386/orig 2025-06-01T21:29:00.9221099Z * [new branch] gh/bobrenjc93/387/base -> origin/gh/bobrenjc93/387/base 2025-06-01T21:29:00.9221621Z * [new branch] gh/bobrenjc93/387/head -> origin/gh/bobrenjc93/387/head 2025-06-01T21:29:00.9222171Z * [new branch] gh/bobrenjc93/387/orig -> origin/gh/bobrenjc93/387/orig 2025-06-01T21:29:00.9222715Z * [new branch] gh/bobrenjc93/388/base -> origin/gh/bobrenjc93/388/base 2025-06-01T21:29:00.9223396Z * [new branch] gh/bobrenjc93/388/head -> origin/gh/bobrenjc93/388/head 2025-06-01T21:29:00.9223912Z * [new branch] gh/bobrenjc93/388/orig -> origin/gh/bobrenjc93/388/orig 2025-06-01T21:29:00.9224429Z * [new branch] gh/bobrenjc93/389/base -> origin/gh/bobrenjc93/389/base 2025-06-01T21:29:00.9224952Z * [new branch] gh/bobrenjc93/389/head -> origin/gh/bobrenjc93/389/head 2025-06-01T21:29:00.9225491Z * [new branch] gh/bobrenjc93/389/orig -> origin/gh/bobrenjc93/389/orig 2025-06-01T21:29:00.9226084Z * [new branch] gh/bobrenjc93/390/base -> origin/gh/bobrenjc93/390/base 2025-06-01T21:29:00.9226595Z * [new branch] gh/bobrenjc93/390/head -> origin/gh/bobrenjc93/390/head 2025-06-01T21:29:00.9227156Z * [new branch] gh/bobrenjc93/390/orig -> origin/gh/bobrenjc93/390/orig 2025-06-01T21:29:00.9227741Z * [new branch] gh/bobrenjc93/391/base -> origin/gh/bobrenjc93/391/base 2025-06-01T21:29:00.9228263Z * [new branch] gh/bobrenjc93/391/head -> origin/gh/bobrenjc93/391/head 2025-06-01T21:29:00.9228818Z * [new branch] gh/bobrenjc93/391/orig -> origin/gh/bobrenjc93/391/orig 2025-06-01T21:29:00.9229326Z * [new branch] gh/bobrenjc93/392/base -> origin/gh/bobrenjc93/392/base 2025-06-01T21:29:00.9229839Z * [new branch] gh/bobrenjc93/392/head -> origin/gh/bobrenjc93/392/head 2025-06-01T21:29:00.9230398Z * [new branch] gh/bobrenjc93/392/orig -> origin/gh/bobrenjc93/392/orig 2025-06-01T21:29:00.9230940Z * [new branch] gh/bobrenjc93/393/base -> origin/gh/bobrenjc93/393/base 2025-06-01T21:29:00.9231534Z * [new branch] gh/bobrenjc93/393/head -> origin/gh/bobrenjc93/393/head 2025-06-01T21:29:00.9232108Z * [new branch] gh/bobrenjc93/393/orig -> origin/gh/bobrenjc93/393/orig 2025-06-01T21:29:00.9232699Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-06-01T21:29:00.9233246Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-06-01T21:29:00.9233740Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-06-01T21:29:00.9234198Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-06-01T21:29:00.9234645Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-06-01T21:29:00.9235261Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-06-01T21:29:00.9235705Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-06-01T21:29:00.9236223Z * [new branch] gh/c00w/44/base -> origin/gh/c00w/44/base 2025-06-01T21:29:00.9236674Z * [new branch] gh/c00w/44/head -> origin/gh/c00w/44/head 2025-06-01T21:29:00.9237153Z * [new branch] gh/c00w/44/orig -> origin/gh/c00w/44/orig 2025-06-01T21:29:00.9237641Z * [new branch] gh/c00w/45/base -> origin/gh/c00w/45/base 2025-06-01T21:29:00.9238110Z * [new branch] gh/c00w/45/orig -> origin/gh/c00w/45/orig 2025-06-01T21:29:00.9238589Z * [new branch] gh/c00w/46/base -> origin/gh/c00w/46/base 2025-06-01T21:29:00.9955105Z * [new branch] gh/c00w/46/head -> origin/gh/c00w/46/head 2025-06-01T21:29:00.9955680Z * [new branch] gh/c00w/46/orig -> origin/gh/c00w/46/orig 2025-06-01T21:29:00.9956192Z * [new branch] gh/c00w/47/base -> origin/gh/c00w/47/base 2025-06-01T21:29:00.9956692Z * [new branch] gh/c00w/47/head -> origin/gh/c00w/47/head 2025-06-01T21:29:00.9957140Z * [new branch] gh/c00w/47/orig -> origin/gh/c00w/47/orig 2025-06-01T21:29:00.9957778Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-06-01T21:29:00.9958223Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-06-01T21:29:00.9958679Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-06-01T21:29:00.9959146Z * [new branch] gh/chillee/377/base -> origin/gh/chillee/377/base 2025-06-01T21:29:00.9959655Z * [new branch] gh/chillee/377/head -> origin/gh/chillee/377/head 2025-06-01T21:29:00.9960152Z * [new branch] gh/chillee/377/orig -> origin/gh/chillee/377/orig 2025-06-01T21:29:00.9960651Z * [new branch] gh/chunyuan-w/1/base -> origin/gh/chunyuan-w/1/base 2025-06-01T21:29:00.9961165Z * [new branch] gh/chunyuan-w/1/head -> origin/gh/chunyuan-w/1/head 2025-06-01T21:29:00.9961661Z * [new branch] gh/chunyuan-w/1/orig -> origin/gh/chunyuan-w/1/orig 2025-06-01T21:29:00.9962199Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-06-01T21:29:00.9962724Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-06-01T21:29:00.9963196Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-06-01T21:29:00.9963716Z * [new branch] gh/davidberard98/335/base -> origin/gh/davidberard98/335/base 2025-06-01T21:29:00.9964270Z * [new branch] gh/davidberard98/335/head -> origin/gh/davidberard98/335/head 2025-06-01T21:29:00.9964837Z * [new branch] gh/davidberard98/335/orig -> origin/gh/davidberard98/335/orig 2025-06-01T21:29:00.9965394Z * [new branch] gh/davidberard98/343/base -> origin/gh/davidberard98/343/base 2025-06-01T21:29:00.9965943Z * [new branch] gh/davidberard98/343/head -> origin/gh/davidberard98/343/head 2025-06-01T21:29:00.9966496Z * [new branch] gh/davidberard98/343/orig -> origin/gh/davidberard98/343/orig 2025-06-01T21:29:00.9967043Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-06-01T21:29:00.9967603Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-06-01T21:29:00.9968212Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-06-01T21:29:00.9968800Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-06-01T21:29:00.9969970Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-06-01T21:29:00.9970514Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-06-01T21:29:00.9971073Z * [new branch] gh/davidberard98/352/base -> origin/gh/davidberard98/352/base 2025-06-01T21:29:00.9971637Z * [new branch] gh/davidberard98/352/head -> origin/gh/davidberard98/352/head 2025-06-01T21:29:00.9972179Z * [new branch] gh/davidberard98/352/orig -> origin/gh/davidberard98/352/orig 2025-06-01T21:29:00.9972727Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-06-01T21:29:00.9973274Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-06-01T21:29:00.9973828Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-06-01T21:29:00.9974426Z * [new branch] gh/davidberard98/354/base -> origin/gh/davidberard98/354/base 2025-06-01T21:29:00.9975019Z * [new branch] gh/davidberard98/354/head -> origin/gh/davidberard98/354/head 2025-06-01T21:29:00.9975570Z * [new branch] gh/davidberard98/354/orig -> origin/gh/davidberard98/354/orig 2025-06-01T21:29:00.9976110Z * [new branch] gh/davidberard98/355/base -> origin/gh/davidberard98/355/base 2025-06-01T21:29:00.9976782Z * [new branch] gh/davidberard98/355/head -> origin/gh/davidberard98/355/head 2025-06-01T21:29:00.9977331Z * [new branch] gh/davidberard98/355/orig -> origin/gh/davidberard98/355/orig 2025-06-01T21:29:00.9977899Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-06-01T21:29:00.9978460Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-06-01T21:29:00.9979005Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-06-01T21:29:00.9979564Z * [new branch] gh/davidberard98/357/base -> origin/gh/davidberard98/357/base 2025-06-01T21:29:01.0552116Z * [new branch] gh/davidberard98/357/head -> origin/gh/davidberard98/357/head 2025-06-01T21:29:01.0552778Z * [new branch] gh/davidberard98/357/orig -> origin/gh/davidberard98/357/orig 2025-06-01T21:29:01.0553375Z * [new branch] gh/davidberard98/358/base -> origin/gh/davidberard98/358/base 2025-06-01T21:29:01.0553935Z * [new branch] gh/davidberard98/358/head -> origin/gh/davidberard98/358/head 2025-06-01T21:29:01.0554477Z * [new branch] gh/davidberard98/358/orig -> origin/gh/davidberard98/358/orig 2025-06-01T21:29:01.0555014Z * [new branch] gh/desertfire/535/base -> origin/gh/desertfire/535/base 2025-06-01T21:29:01.0555531Z * [new branch] gh/desertfire/535/head -> origin/gh/desertfire/535/head 2025-06-01T21:29:01.0556066Z * [new branch] gh/desertfire/535/orig -> origin/gh/desertfire/535/orig 2025-06-01T21:29:01.0556589Z * [new branch] gh/desertfire/542/base -> origin/gh/desertfire/542/base 2025-06-01T21:29:01.0557099Z * [new branch] gh/desertfire/542/head -> origin/gh/desertfire/542/head 2025-06-01T21:29:01.0557623Z * [new branch] gh/desertfire/542/orig -> origin/gh/desertfire/542/orig 2025-06-01T21:29:01.0558179Z * [new branch] gh/desertfire/547/base -> origin/gh/desertfire/547/base 2025-06-01T21:29:01.0558741Z * [new branch] gh/desertfire/547/head -> origin/gh/desertfire/547/head 2025-06-01T21:29:01.0559264Z * [new branch] gh/desertfire/547/orig -> origin/gh/desertfire/547/orig 2025-06-01T21:29:01.0559776Z * [new branch] gh/desertfire/551/base -> origin/gh/desertfire/551/base 2025-06-01T21:29:01.0560294Z * [new branch] gh/desertfire/551/head -> origin/gh/desertfire/551/head 2025-06-01T21:29:01.0561017Z * [new branch] gh/desertfire/551/orig -> origin/gh/desertfire/551/orig 2025-06-01T21:29:01.0561539Z * [new branch] gh/desertfire/559/base -> origin/gh/desertfire/559/base 2025-06-01T21:29:01.0562065Z * [new branch] gh/desertfire/559/head -> origin/gh/desertfire/559/head 2025-06-01T21:29:01.0562592Z * [new branch] gh/desertfire/559/orig -> origin/gh/desertfire/559/orig 2025-06-01T21:29:01.0563113Z * [new branch] gh/desertfire/564/base -> origin/gh/desertfire/564/base 2025-06-01T21:29:01.0563629Z * [new branch] gh/desertfire/564/head -> origin/gh/desertfire/564/head 2025-06-01T21:29:01.0564213Z * [new branch] gh/desertfire/564/orig -> origin/gh/desertfire/564/orig 2025-06-01T21:29:01.0564786Z * [new branch] gh/desertfire/566/base -> origin/gh/desertfire/566/base 2025-06-01T21:29:01.0565305Z * [new branch] gh/desertfire/566/head -> origin/gh/desertfire/566/head 2025-06-01T21:29:01.0565818Z * [new branch] gh/desertfire/566/orig -> origin/gh/desertfire/566/orig 2025-06-01T21:29:01.0566329Z * [new branch] gh/desertfire/567/base -> origin/gh/desertfire/567/base 2025-06-01T21:29:01.0566849Z * [new branch] gh/desertfire/567/head -> origin/gh/desertfire/567/head 2025-06-01T21:29:01.0568032Z * [new branch] gh/desertfire/567/orig -> origin/gh/desertfire/567/orig 2025-06-01T21:29:01.0568558Z * [new branch] gh/desertfire/568/base -> origin/gh/desertfire/568/base 2025-06-01T21:29:01.0569087Z * [new branch] gh/desertfire/568/head -> origin/gh/desertfire/568/head 2025-06-01T21:29:01.0569599Z * [new branch] gh/desertfire/568/orig -> origin/gh/desertfire/568/orig 2025-06-01T21:29:01.0570122Z * [new branch] gh/desertfire/569/base -> origin/gh/desertfire/569/base 2025-06-01T21:29:01.0570724Z * [new branch] gh/desertfire/569/head -> origin/gh/desertfire/569/head 2025-06-01T21:29:01.0571289Z * [new branch] gh/desertfire/569/orig -> origin/gh/desertfire/569/orig 2025-06-01T21:29:01.0571817Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-06-01T21:29:01.0572333Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-06-01T21:29:01.0572850Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-06-01T21:29:01.0573356Z * [new branch] gh/desertfire/571/base -> origin/gh/desertfire/571/base 2025-06-01T21:29:01.0573872Z * [new branch] gh/desertfire/571/head -> origin/gh/desertfire/571/head 2025-06-01T21:29:01.0574388Z * [new branch] gh/desertfire/571/orig -> origin/gh/desertfire/571/orig 2025-06-01T21:29:01.0574906Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-06-01T21:29:01.0575420Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-06-01T21:29:01.0575929Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-06-01T21:29:01.0576502Z * [new branch] gh/desertfire/573/base -> origin/gh/desertfire/573/base 2025-06-01T21:29:01.1022441Z * [new branch] gh/desertfire/573/head -> origin/gh/desertfire/573/head 2025-06-01T21:29:01.1022978Z * [new branch] gh/desertfire/573/orig -> origin/gh/desertfire/573/orig 2025-06-01T21:29:01.1023514Z * [new branch] gh/desertfire/574/base -> origin/gh/desertfire/574/base 2025-06-01T21:29:01.1024026Z * [new branch] gh/desertfire/574/head -> origin/gh/desertfire/574/head 2025-06-01T21:29:01.1024548Z * [new branch] gh/desertfire/574/orig -> origin/gh/desertfire/574/orig 2025-06-01T21:29:01.1025256Z * [new branch] gh/desertfire/575/base -> origin/gh/desertfire/575/base 2025-06-01T21:29:01.1025790Z * [new branch] gh/desertfire/575/head -> origin/gh/desertfire/575/head 2025-06-01T21:29:01.1026318Z * [new branch] gh/desertfire/575/orig -> origin/gh/desertfire/575/orig 2025-06-01T21:29:01.1026854Z * [new branch] gh/desertfire/576/base -> origin/gh/desertfire/576/base 2025-06-01T21:29:01.1027367Z * [new branch] gh/desertfire/576/head -> origin/gh/desertfire/576/head 2025-06-01T21:29:01.1027926Z * [new branch] gh/desertfire/576/orig -> origin/gh/desertfire/576/orig 2025-06-01T21:29:01.1028446Z * [new branch] gh/desertfire/577/base -> origin/gh/desertfire/577/base 2025-06-01T21:29:01.1028970Z * [new branch] gh/desertfire/577/head -> origin/gh/desertfire/577/head 2025-06-01T21:29:01.1029494Z * [new branch] gh/desertfire/577/orig -> origin/gh/desertfire/577/orig 2025-06-01T21:29:01.1030004Z * [new branch] gh/desertfire/578/base -> origin/gh/desertfire/578/base 2025-06-01T21:29:01.1030522Z * [new branch] gh/desertfire/578/head -> origin/gh/desertfire/578/head 2025-06-01T21:29:01.1031028Z * [new branch] gh/desertfire/578/orig -> origin/gh/desertfire/578/orig 2025-06-01T21:29:01.1031662Z * [new branch] gh/desertfire/579/base -> origin/gh/desertfire/579/base 2025-06-01T21:29:01.1032182Z * [new branch] gh/desertfire/579/head -> origin/gh/desertfire/579/head 2025-06-01T21:29:01.1032705Z * [new branch] gh/desertfire/579/orig -> origin/gh/desertfire/579/orig 2025-06-01T21:29:01.1033228Z * [new branch] gh/desertfire/580/base -> origin/gh/desertfire/580/base 2025-06-01T21:29:01.1033738Z * [new branch] gh/desertfire/580/head -> origin/gh/desertfire/580/head 2025-06-01T21:29:01.1034273Z * [new branch] gh/desertfire/580/orig -> origin/gh/desertfire/580/orig 2025-06-01T21:29:01.1034787Z * [new branch] gh/desertfire/581/base -> origin/gh/desertfire/581/base 2025-06-01T21:29:01.1035305Z * [new branch] gh/desertfire/581/head -> origin/gh/desertfire/581/head 2025-06-01T21:29:01.1035830Z * [new branch] gh/desertfire/581/orig -> origin/gh/desertfire/581/orig 2025-06-01T21:29:01.1036329Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-06-01T21:29:01.1036824Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-06-01T21:29:01.1037299Z * [new branch] gh/dharakk/2/base -> origin/gh/dharakk/2/base 2025-06-01T21:29:01.1037786Z * [new branch] gh/dharakk/2/head -> origin/gh/dharakk/2/head 2025-06-01T21:29:01.1038261Z * [new branch] gh/dharakk/2/orig -> origin/gh/dharakk/2/orig 2025-06-01T21:29:01.1038731Z * [new branch] gh/dharakk/3/base -> origin/gh/dharakk/3/base 2025-06-01T21:29:01.1039210Z * [new branch] gh/dharakk/3/head -> origin/gh/dharakk/3/head 2025-06-01T21:29:01.1039677Z * [new branch] gh/dharakk/3/orig -> origin/gh/dharakk/3/orig 2025-06-01T21:29:01.1040178Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-06-01T21:29:01.1040649Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-06-01T21:29:01.1041115Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-06-01T21:29:01.1041586Z * [new branch] gh/dharakk/5/base -> origin/gh/dharakk/5/base 2025-06-01T21:29:01.1042054Z * [new branch] gh/dharakk/5/head -> origin/gh/dharakk/5/head 2025-06-01T21:29:01.1042644Z * [new branch] gh/dharakk/5/orig -> origin/gh/dharakk/5/orig 2025-06-01T21:29:01.1043129Z * [new branch] gh/drisspg/113/head -> origin/gh/drisspg/113/head 2025-06-01T21:29:01.1043621Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-06-01T21:29:01.1044126Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-06-01T21:29:01.1044614Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-06-01T21:29:01.1045098Z * [new branch] gh/drisspg/137/base -> origin/gh/drisspg/137/base 2025-06-01T21:29:01.1045579Z * [new branch] gh/drisspg/137/head -> origin/gh/drisspg/137/head 2025-06-01T21:29:01.1046063Z * [new branch] gh/drisspg/137/orig -> origin/gh/drisspg/137/orig 2025-06-01T21:29:01.1500393Z * [new branch] gh/drisspg/138/base -> origin/gh/drisspg/138/base 2025-06-01T21:29:01.1500983Z * [new branch] gh/drisspg/138/head -> origin/gh/drisspg/138/head 2025-06-01T21:29:01.1501497Z * [new branch] gh/drisspg/138/orig -> origin/gh/drisspg/138/orig 2025-06-01T21:29:01.1501986Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-06-01T21:29:01.1502477Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-06-01T21:29:01.1503172Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-06-01T21:29:01.1503657Z * [new branch] gh/drisspg/143/base -> origin/gh/drisspg/143/base 2025-06-01T21:29:01.1504149Z * [new branch] gh/drisspg/143/head -> origin/gh/drisspg/143/head 2025-06-01T21:29:01.1504638Z * [new branch] gh/drisspg/143/orig -> origin/gh/drisspg/143/orig 2025-06-01T21:29:01.1505130Z * [new branch] gh/drisspg/144/base -> origin/gh/drisspg/144/base 2025-06-01T21:29:01.1505628Z * [new branch] gh/drisspg/144/head -> origin/gh/drisspg/144/head 2025-06-01T21:29:01.1506110Z * [new branch] gh/drisspg/144/orig -> origin/gh/drisspg/144/orig 2025-06-01T21:29:01.1506593Z * [new branch] gh/drisspg/145/base -> origin/gh/drisspg/145/base 2025-06-01T21:29:01.1507071Z * [new branch] gh/drisspg/145/head -> origin/gh/drisspg/145/head 2025-06-01T21:29:01.1507639Z * [new branch] gh/drisspg/145/orig -> origin/gh/drisspg/145/orig 2025-06-01T21:29:01.1508125Z * [new branch] gh/drisspg/146/base -> origin/gh/drisspg/146/base 2025-06-01T21:29:01.1508604Z * [new branch] gh/drisspg/146/head -> origin/gh/drisspg/146/head 2025-06-01T21:29:01.1509097Z * [new branch] gh/drisspg/146/orig -> origin/gh/drisspg/146/orig 2025-06-01T21:29:01.1509575Z * [new branch] gh/drisspg/147/base -> origin/gh/drisspg/147/base 2025-06-01T21:29:01.1510096Z * [new branch] gh/drisspg/147/head -> origin/gh/drisspg/147/head 2025-06-01T21:29:01.1510580Z * [new branch] gh/drisspg/147/orig -> origin/gh/drisspg/147/orig 2025-06-01T21:29:01.1511057Z * [new branch] gh/drisspg/148/base -> origin/gh/drisspg/148/base 2025-06-01T21:29:01.1511547Z * [new branch] gh/drisspg/148/head -> origin/gh/drisspg/148/head 2025-06-01T21:29:01.1512026Z * [new branch] gh/drisspg/148/orig -> origin/gh/drisspg/148/orig 2025-06-01T21:29:01.1512515Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-06-01T21:29:01.1513003Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-06-01T21:29:01.1513481Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-06-01T21:29:01.1514112Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-06-01T21:29:01.1514597Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-06-01T21:29:01.1515087Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-06-01T21:29:01.1515588Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-06-01T21:29:01.1516077Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-06-01T21:29:01.1516561Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-06-01T21:29:01.1517041Z * [new branch] gh/drisspg/152/base -> origin/gh/drisspg/152/base 2025-06-01T21:29:01.1517529Z * [new branch] gh/drisspg/152/head -> origin/gh/drisspg/152/head 2025-06-01T21:29:01.1518007Z * [new branch] gh/drisspg/152/orig -> origin/gh/drisspg/152/orig 2025-06-01T21:29:01.1518504Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-06-01T21:29:01.1518996Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-06-01T21:29:01.1519488Z * [new branch] gh/eellison/691/base -> origin/gh/eellison/691/base 2025-06-01T21:29:01.1519992Z * [new branch] gh/eellison/691/head -> origin/gh/eellison/691/head 2025-06-01T21:29:01.1520572Z * [new branch] gh/eellison/691/orig -> origin/gh/eellison/691/orig 2025-06-01T21:29:01.1521082Z * [new branch] gh/eellison/761/base -> origin/gh/eellison/761/base 2025-06-01T21:29:01.1521584Z * [new branch] gh/eellison/761/head -> origin/gh/eellison/761/head 2025-06-01T21:29:01.1522075Z * [new branch] gh/eellison/761/orig -> origin/gh/eellison/761/orig 2025-06-01T21:29:01.1522578Z * [new branch] gh/eellison/764/base -> origin/gh/eellison/764/base 2025-06-01T21:29:01.1523069Z * [new branch] gh/eellison/764/head -> origin/gh/eellison/764/head 2025-06-01T21:29:01.1523571Z * [new branch] gh/eellison/764/orig -> origin/gh/eellison/764/orig 2025-06-01T21:29:01.2508552Z * [new branch] gh/eellison/767/base -> origin/gh/eellison/767/base 2025-06-01T21:29:01.2509143Z * [new branch] gh/eellison/767/head -> origin/gh/eellison/767/head 2025-06-01T21:29:01.2509654Z * [new branch] gh/eellison/767/orig -> origin/gh/eellison/767/orig 2025-06-01T21:29:01.2510200Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-06-01T21:29:01.2510747Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-06-01T21:29:01.2511261Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-06-01T21:29:01.2511753Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-06-01T21:29:01.2512265Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-06-01T21:29:01.2512753Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-06-01T21:29:01.2513250Z * [new branch] gh/eellison/783/base -> origin/gh/eellison/783/base 2025-06-01T21:29:01.2513754Z * [new branch] gh/eellison/783/head -> origin/gh/eellison/783/head 2025-06-01T21:29:01.2514241Z * [new branch] gh/eellison/783/orig -> origin/gh/eellison/783/orig 2025-06-01T21:29:01.2514742Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-06-01T21:29:01.2515231Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-06-01T21:29:01.2515729Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-06-01T21:29:01.2516516Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-06-01T21:29:01.2517031Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-06-01T21:29:01.2517552Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-06-01T21:29:01.2518042Z * [new branch] gh/eellison/786/base -> origin/gh/eellison/786/base 2025-06-01T21:29:01.2518556Z * [new branch] gh/eellison/786/head -> origin/gh/eellison/786/head 2025-06-01T21:29:01.2519042Z * [new branch] gh/eellison/786/orig -> origin/gh/eellison/786/orig 2025-06-01T21:29:01.2519540Z * [new branch] gh/eellison/787/base -> origin/gh/eellison/787/base 2025-06-01T21:29:01.2520042Z * [new branch] gh/eellison/787/head -> origin/gh/eellison/787/head 2025-06-01T21:29:01.2520531Z * [new branch] gh/eellison/787/orig -> origin/gh/eellison/787/orig 2025-06-01T21:29:01.2521029Z * [new branch] gh/eellison/788/base -> origin/gh/eellison/788/base 2025-06-01T21:29:01.2521519Z * [new branch] gh/eellison/788/head -> origin/gh/eellison/788/head 2025-06-01T21:29:01.2522058Z * [new branch] gh/eellison/788/orig -> origin/gh/eellison/788/orig 2025-06-01T21:29:01.2522751Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-06-01T21:29:01.2523250Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-06-01T21:29:01.2523748Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-06-01T21:29:01.2524240Z * [new branch] gh/eellison/790/base -> origin/gh/eellison/790/base 2025-06-01T21:29:01.2524749Z * [new branch] gh/eellison/790/head -> origin/gh/eellison/790/head 2025-06-01T21:29:01.2525247Z * [new branch] gh/eellison/790/orig -> origin/gh/eellison/790/orig 2025-06-01T21:29:01.2525741Z * [new branch] gh/eellison/791/base -> origin/gh/eellison/791/base 2025-06-01T21:29:01.2526233Z * [new branch] gh/eellison/791/head -> origin/gh/eellison/791/head 2025-06-01T21:29:01.2526723Z * [new branch] gh/eellison/791/orig -> origin/gh/eellison/791/orig 2025-06-01T21:29:01.2527220Z * [new branch] gh/eellison/792/base -> origin/gh/eellison/792/base 2025-06-01T21:29:01.2527714Z * [new branch] gh/eellison/792/head -> origin/gh/eellison/792/head 2025-06-01T21:29:01.2528247Z * [new branch] gh/eellison/792/orig -> origin/gh/eellison/792/orig 2025-06-01T21:29:01.2528781Z * [new branch] gh/eellison/793/base -> origin/gh/eellison/793/base 2025-06-01T21:29:01.2529272Z * [new branch] gh/eellison/793/head -> origin/gh/eellison/793/head 2025-06-01T21:29:01.2529779Z * [new branch] gh/eellison/793/orig -> origin/gh/eellison/793/orig 2025-06-01T21:29:01.2530268Z * [new branch] gh/eellison/794/base -> origin/gh/eellison/794/base 2025-06-01T21:29:01.2530771Z * [new branch] gh/eellison/794/head -> origin/gh/eellison/794/head 2025-06-01T21:29:01.2531268Z * [new branch] gh/eellison/794/orig -> origin/gh/eellison/794/orig 2025-06-01T21:29:01.2531761Z * [new branch] gh/eellison/795/base -> origin/gh/eellison/795/base 2025-06-01T21:29:01.3017063Z * [new branch] gh/eellison/795/head -> origin/gh/eellison/795/head 2025-06-01T21:29:01.3017592Z * [new branch] gh/eellison/795/orig -> origin/gh/eellison/795/orig 2025-06-01T21:29:01.3018099Z * [new branch] gh/eellison/796/base -> origin/gh/eellison/796/base 2025-06-01T21:29:01.3018605Z * [new branch] gh/eellison/796/head -> origin/gh/eellison/796/head 2025-06-01T21:29:01.3019300Z * [new branch] gh/eellison/796/orig -> origin/gh/eellison/796/orig 2025-06-01T21:29:01.3019804Z * [new branch] gh/eellison/797/base -> origin/gh/eellison/797/base 2025-06-01T21:29:01.3020299Z * [new branch] gh/eellison/797/head -> origin/gh/eellison/797/head 2025-06-01T21:29:01.3020816Z * [new branch] gh/eellison/797/orig -> origin/gh/eellison/797/orig 2025-06-01T21:29:01.3021319Z * [new branch] gh/eellison/798/base -> origin/gh/eellison/798/base 2025-06-01T21:29:01.3021810Z * [new branch] gh/eellison/798/head -> origin/gh/eellison/798/head 2025-06-01T21:29:01.3022304Z * [new branch] gh/eellison/798/orig -> origin/gh/eellison/798/orig 2025-06-01T21:29:01.3022793Z * [new branch] gh/eellison/799/base -> origin/gh/eellison/799/base 2025-06-01T21:29:01.3023286Z * [new branch] gh/eellison/799/head -> origin/gh/eellison/799/head 2025-06-01T21:29:01.3023784Z * [new branch] gh/eellison/799/orig -> origin/gh/eellison/799/orig 2025-06-01T21:29:01.3024275Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-06-01T21:29:01.3024789Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-06-01T21:29:01.3025400Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-06-01T21:29:01.3025899Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-06-01T21:29:01.3026402Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-06-01T21:29:01.3026893Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-06-01T21:29:01.3027455Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-06-01T21:29:01.3027950Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-06-01T21:29:01.3028454Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-06-01T21:29:01.3028953Z * [new branch] gh/eellison/803/base -> origin/gh/eellison/803/base 2025-06-01T21:29:01.3029449Z * [new branch] gh/eellison/803/head -> origin/gh/eellison/803/head 2025-06-01T21:29:01.3029955Z * [new branch] gh/eellison/803/orig -> origin/gh/eellison/803/orig 2025-06-01T21:29:01.3030429Z * [new branch] gh/etaf/117/base -> origin/gh/etaf/117/base 2025-06-01T21:29:01.3030892Z * [new branch] gh/etaf/117/head -> origin/gh/etaf/117/head 2025-06-01T21:29:01.3031353Z * [new branch] gh/etaf/117/orig -> origin/gh/etaf/117/orig 2025-06-01T21:29:01.3031797Z * [new branch] gh/etaf/119/base -> origin/gh/etaf/119/base 2025-06-01T21:29:01.3032254Z * [new branch] gh/etaf/119/head -> origin/gh/etaf/119/head 2025-06-01T21:29:01.3032703Z * [new branch] gh/etaf/119/orig -> origin/gh/etaf/119/orig 2025-06-01T21:29:01.3033165Z * [new branch] gh/etaf/120/base -> origin/gh/etaf/120/base 2025-06-01T21:29:01.3033614Z * [new branch] gh/etaf/120/head -> origin/gh/etaf/120/head 2025-06-01T21:29:01.3034080Z * [new branch] gh/etaf/120/orig -> origin/gh/etaf/120/orig 2025-06-01T21:29:01.3034540Z * [new branch] gh/etaf/121/base -> origin/gh/etaf/121/base 2025-06-01T21:29:01.3034990Z * [new branch] gh/etaf/121/head -> origin/gh/etaf/121/head 2025-06-01T21:29:01.3035444Z * [new branch] gh/etaf/121/orig -> origin/gh/etaf/121/orig 2025-06-01T21:29:01.3035893Z * [new branch] gh/etaf/122/base -> origin/gh/etaf/122/base 2025-06-01T21:29:01.3036465Z * [new branch] gh/etaf/122/head -> origin/gh/etaf/122/head 2025-06-01T21:29:01.3036933Z * [new branch] gh/etaf/122/orig -> origin/gh/etaf/122/orig 2025-06-01T21:29:01.3037392Z * [new branch] gh/etaf/123/base -> origin/gh/etaf/123/base 2025-06-01T21:29:01.3037860Z * [new branch] gh/etaf/123/head -> origin/gh/etaf/123/head 2025-06-01T21:29:01.3038315Z * [new branch] gh/etaf/123/orig -> origin/gh/etaf/123/orig 2025-06-01T21:29:01.3038773Z * [new branch] gh/etaf/124/base -> origin/gh/etaf/124/base 2025-06-01T21:29:01.3039233Z * [new branch] gh/etaf/124/head -> origin/gh/etaf/124/head 2025-06-01T21:29:01.3039686Z * [new branch] gh/etaf/124/orig -> origin/gh/etaf/124/orig 2025-06-01T21:29:01.3040146Z * [new branch] gh/etaf/125/base -> origin/gh/etaf/125/base 2025-06-01T21:29:01.3540675Z * [new branch] gh/etaf/125/head -> origin/gh/etaf/125/head 2025-06-01T21:29:01.3541166Z * [new branch] gh/etaf/125/orig -> origin/gh/etaf/125/orig 2025-06-01T21:29:01.3541637Z * [new branch] gh/etaf/126/base -> origin/gh/etaf/126/base 2025-06-01T21:29:01.3542092Z * [new branch] gh/etaf/126/head -> origin/gh/etaf/126/head 2025-06-01T21:29:01.3542720Z * [new branch] gh/etaf/126/orig -> origin/gh/etaf/126/orig 2025-06-01T21:29:01.3543172Z * [new branch] gh/etaf/127/base -> origin/gh/etaf/127/base 2025-06-01T21:29:01.3543631Z * [new branch] gh/etaf/127/head -> origin/gh/etaf/127/head 2025-06-01T21:29:01.3544086Z * [new branch] gh/etaf/127/orig -> origin/gh/etaf/127/orig 2025-06-01T21:29:01.3544549Z * [new branch] gh/etaf/128/base -> origin/gh/etaf/128/base 2025-06-01T21:29:01.3545014Z * [new branch] gh/etaf/128/head -> origin/gh/etaf/128/head 2025-06-01T21:29:01.3545468Z * [new branch] gh/etaf/128/orig -> origin/gh/etaf/128/orig 2025-06-01T21:29:01.3545928Z * [new branch] gh/etaf/129/base -> origin/gh/etaf/129/base 2025-06-01T21:29:01.3546380Z * [new branch] gh/etaf/129/head -> origin/gh/etaf/129/head 2025-06-01T21:29:01.3546840Z * [new branch] gh/etaf/129/orig -> origin/gh/etaf/129/orig 2025-06-01T21:29:01.3547315Z * [new branch] gh/etaf/130/base -> origin/gh/etaf/130/base 2025-06-01T21:29:01.3547818Z * [new branch] gh/etaf/130/head -> origin/gh/etaf/130/head 2025-06-01T21:29:01.3548276Z * [new branch] gh/etaf/130/orig -> origin/gh/etaf/130/orig 2025-06-01T21:29:01.3548738Z * [new branch] gh/etaf/131/base -> origin/gh/etaf/131/base 2025-06-01T21:29:01.3549199Z * [new branch] gh/etaf/131/head -> origin/gh/etaf/131/head 2025-06-01T21:29:01.3549671Z * [new branch] gh/etaf/131/orig -> origin/gh/etaf/131/orig 2025-06-01T21:29:01.3550125Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-06-01T21:29:01.3550593Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-06-01T21:29:01.3551049Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-06-01T21:29:01.3551512Z * [new branch] gh/etaf/133/base -> origin/gh/etaf/133/base 2025-06-01T21:29:01.3551971Z * [new branch] gh/etaf/133/head -> origin/gh/etaf/133/head 2025-06-01T21:29:01.3552417Z * [new branch] gh/etaf/133/orig -> origin/gh/etaf/133/orig 2025-06-01T21:29:01.3552896Z * [new branch] gh/etaf/134/base -> origin/gh/etaf/134/base 2025-06-01T21:29:01.3553486Z * [new branch] gh/etaf/134/head -> origin/gh/etaf/134/head 2025-06-01T21:29:01.3553940Z * [new branch] gh/etaf/134/orig -> origin/gh/etaf/134/orig 2025-06-01T21:29:01.3554425Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-06-01T21:29:01.3554911Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-06-01T21:29:01.3555409Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-06-01T21:29:01.3555897Z * [new branch] gh/ezyang/2479/next -> origin/gh/ezyang/2479/next 2025-06-01T21:29:01.3556373Z * [new branch] gh/ezyang/2480/next -> origin/gh/ezyang/2480/next 2025-06-01T21:29:01.3556863Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-06-01T21:29:01.3557337Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-06-01T21:29:01.3557821Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-06-01T21:29:01.3558296Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-06-01T21:29:01.3558787Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-06-01T21:29:01.3559371Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-06-01T21:29:01.3559857Z * [new branch] gh/ezyang/3031/base -> origin/gh/ezyang/3031/base 2025-06-01T21:29:01.3560338Z * [new branch] gh/ezyang/3031/head -> origin/gh/ezyang/3031/head 2025-06-01T21:29:01.3560814Z * [new branch] gh/ezyang/3031/orig -> origin/gh/ezyang/3031/orig 2025-06-01T21:29:01.3561301Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-06-01T21:29:01.3561788Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-06-01T21:29:01.3562266Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-06-01T21:29:01.3562747Z * [new branch] gh/ezyang/3069/base -> origin/gh/ezyang/3069/base 2025-06-01T21:29:01.3563223Z * [new branch] gh/ezyang/3069/head -> origin/gh/ezyang/3069/head 2025-06-01T21:29:01.4042041Z * [new branch] gh/ezyang/3069/orig -> origin/gh/ezyang/3069/orig 2025-06-01T21:29:01.4042548Z * [new branch] gh/ezyang/3070/base -> origin/gh/ezyang/3070/base 2025-06-01T21:29:01.4043022Z * [new branch] gh/ezyang/3070/head -> origin/gh/ezyang/3070/head 2025-06-01T21:29:01.4043526Z * [new branch] gh/ezyang/3070/orig -> origin/gh/ezyang/3070/orig 2025-06-01T21:29:01.4044015Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-06-01T21:29:01.4044507Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-06-01T21:29:01.4044994Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-06-01T21:29:01.4045467Z * [new branch] gh/fduwjj/134/base -> origin/gh/fduwjj/134/base 2025-06-01T21:29:01.4045943Z * [new branch] gh/fduwjj/134/head -> origin/gh/fduwjj/134/head 2025-06-01T21:29:01.4046414Z * [new branch] gh/fduwjj/134/orig -> origin/gh/fduwjj/134/orig 2025-06-01T21:29:01.4046898Z * [new branch] gh/fduwjj/135/base -> origin/gh/fduwjj/135/base 2025-06-01T21:29:01.4047378Z * [new branch] gh/fduwjj/135/head -> origin/gh/fduwjj/135/head 2025-06-01T21:29:01.4047845Z * [new branch] gh/fduwjj/135/orig -> origin/gh/fduwjj/135/orig 2025-06-01T21:29:01.4048329Z * [new branch] gh/fduwjj/136/base -> origin/gh/fduwjj/136/base 2025-06-01T21:29:01.4048974Z * [new branch] gh/fduwjj/136/head -> origin/gh/fduwjj/136/head 2025-06-01T21:29:01.4049454Z * [new branch] gh/fduwjj/136/orig -> origin/gh/fduwjj/136/orig 2025-06-01T21:29:01.4049936Z * [new branch] gh/fduwjj/137/base -> origin/gh/fduwjj/137/base 2025-06-01T21:29:01.4050407Z * [new branch] gh/fduwjj/137/head -> origin/gh/fduwjj/137/head 2025-06-01T21:29:01.4050904Z * [new branch] gh/fduwjj/137/orig -> origin/gh/fduwjj/137/orig 2025-06-01T21:29:01.4051373Z * [new branch] gh/fduwjj/138/base -> origin/gh/fduwjj/138/base 2025-06-01T21:29:01.4051852Z * [new branch] gh/fduwjj/138/head -> origin/gh/fduwjj/138/head 2025-06-01T21:29:01.4052327Z * [new branch] gh/fduwjj/138/orig -> origin/gh/fduwjj/138/orig 2025-06-01T21:29:01.4052797Z * [new branch] gh/fduwjj/139/base -> origin/gh/fduwjj/139/base 2025-06-01T21:29:01.4053281Z * [new branch] gh/fduwjj/139/head -> origin/gh/fduwjj/139/head 2025-06-01T21:29:01.4053755Z * [new branch] gh/fduwjj/139/orig -> origin/gh/fduwjj/139/orig 2025-06-01T21:29:01.4054231Z * [new branch] gh/fduwjj/140/base -> origin/gh/fduwjj/140/base 2025-06-01T21:29:01.4054699Z * [new branch] gh/fduwjj/140/head -> origin/gh/fduwjj/140/head 2025-06-01T21:29:01.4055300Z * [new branch] gh/fduwjj/140/orig -> origin/gh/fduwjj/140/orig 2025-06-01T21:29:01.4055783Z * [new branch] gh/fduwjj/141/base -> origin/gh/fduwjj/141/base 2025-06-01T21:29:01.4056254Z * [new branch] gh/fduwjj/141/head -> origin/gh/fduwjj/141/head 2025-06-01T21:29:01.4056733Z * [new branch] gh/fduwjj/141/orig -> origin/gh/fduwjj/141/orig 2025-06-01T21:29:01.4057201Z * [new branch] gh/fduwjj/142/base -> origin/gh/fduwjj/142/base 2025-06-01T21:29:01.4057684Z * [new branch] gh/fduwjj/142/head -> origin/gh/fduwjj/142/head 2025-06-01T21:29:01.4058163Z * [new branch] gh/fduwjj/142/orig -> origin/gh/fduwjj/142/orig 2025-06-01T21:29:01.4058638Z * [new branch] gh/fegin/297/base -> origin/gh/fegin/297/base 2025-06-01T21:29:01.4059116Z * [new branch] gh/fegin/297/head -> origin/gh/fegin/297/head 2025-06-01T21:29:01.4059577Z * [new branch] gh/fegin/297/orig -> origin/gh/fegin/297/orig 2025-06-01T21:29:01.4060044Z * [new branch] gh/fegin/299/base -> origin/gh/fegin/299/base 2025-06-01T21:29:01.4060514Z * [new branch] gh/fegin/299/head -> origin/gh/fegin/299/head 2025-06-01T21:29:01.4060976Z * [new branch] gh/fegin/299/orig -> origin/gh/fegin/299/orig 2025-06-01T21:29:01.4061442Z * [new branch] gh/fegin/300/base -> origin/gh/fegin/300/base 2025-06-01T21:29:01.4061904Z * [new branch] gh/fegin/300/head -> origin/gh/fegin/300/head 2025-06-01T21:29:01.4062374Z * [new branch] gh/fegin/300/orig -> origin/gh/fegin/300/orig 2025-06-01T21:29:01.4062832Z * [new branch] gh/fegin/301/base -> origin/gh/fegin/301/base 2025-06-01T21:29:01.4063305Z * [new branch] gh/fegin/301/head -> origin/gh/fegin/301/head 2025-06-01T21:29:01.4063777Z * [new branch] gh/fegin/301/orig -> origin/gh/fegin/301/orig 2025-06-01T21:29:01.4064244Z * [new branch] gh/fegin/302/base -> origin/gh/fegin/302/base 2025-06-01T21:29:01.4064718Z * [new branch] gh/fegin/302/head -> origin/gh/fegin/302/head 2025-06-01T21:29:01.4567551Z * [new branch] gh/fegin/302/orig -> origin/gh/fegin/302/orig 2025-06-01T21:29:01.4568101Z * [new branch] gh/fegin/303/base -> origin/gh/fegin/303/base 2025-06-01T21:29:01.4568829Z * [new branch] gh/fegin/303/head -> origin/gh/fegin/303/head 2025-06-01T21:29:01.4569303Z * [new branch] gh/fegin/303/orig -> origin/gh/fegin/303/orig 2025-06-01T21:29:01.4569789Z * [new branch] gh/fegin/304/base -> origin/gh/fegin/304/base 2025-06-01T21:29:01.4570267Z * [new branch] gh/fegin/304/head -> origin/gh/fegin/304/head 2025-06-01T21:29:01.4570727Z * [new branch] gh/fegin/304/orig -> origin/gh/fegin/304/orig 2025-06-01T21:29:01.4571195Z * [new branch] gh/fegin/305/base -> origin/gh/fegin/305/base 2025-06-01T21:29:01.4571657Z * [new branch] gh/fegin/305/head -> origin/gh/fegin/305/head 2025-06-01T21:29:01.4572135Z * [new branch] gh/fegin/305/orig -> origin/gh/fegin/305/orig 2025-06-01T21:29:01.4572611Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-06-01T21:29:01.4573075Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-06-01T21:29:01.4573542Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-06-01T21:29:01.4574002Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-06-01T21:29:01.4574593Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-06-01T21:29:01.4575058Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-06-01T21:29:01.4575535Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-06-01T21:29:01.4576010Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-06-01T21:29:01.4576475Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-06-01T21:29:01.4576954Z * [new branch] gh/fffrog/49/base -> origin/gh/fffrog/49/base 2025-06-01T21:29:01.4577420Z * [new branch] gh/fffrog/49/head -> origin/gh/fffrog/49/head 2025-06-01T21:29:01.4577894Z * [new branch] gh/fffrog/49/orig -> origin/gh/fffrog/49/orig 2025-06-01T21:29:01.4578373Z * [new branch] gh/fffrog/67/base -> origin/gh/fffrog/67/base 2025-06-01T21:29:01.4578841Z * [new branch] gh/fffrog/67/head -> origin/gh/fffrog/67/head 2025-06-01T21:29:01.4579313Z * [new branch] gh/fffrog/67/orig -> origin/gh/fffrog/67/orig 2025-06-01T21:29:01.4579777Z * [new branch] gh/fffrog/75/base -> origin/gh/fffrog/75/base 2025-06-01T21:29:01.4580248Z * [new branch] gh/fffrog/75/head -> origin/gh/fffrog/75/head 2025-06-01T21:29:01.4580711Z * [new branch] gh/fffrog/75/orig -> origin/gh/fffrog/75/orig 2025-06-01T21:29:01.4581189Z * [new branch] gh/fffrog/76/base -> origin/gh/fffrog/76/base 2025-06-01T21:29:01.4581657Z * [new branch] gh/fffrog/76/head -> origin/gh/fffrog/76/head 2025-06-01T21:29:01.4582121Z * [new branch] gh/fffrog/76/orig -> origin/gh/fffrog/76/orig 2025-06-01T21:29:01.4582595Z * [new branch] gh/fffrog/77/base -> origin/gh/fffrog/77/base 2025-06-01T21:29:01.4583055Z * [new branch] gh/fffrog/77/head -> origin/gh/fffrog/77/head 2025-06-01T21:29:01.4583522Z * [new branch] gh/fffrog/77/orig -> origin/gh/fffrog/77/orig 2025-06-01T21:29:01.4583985Z * [new branch] gh/fffrog/78/base -> origin/gh/fffrog/78/base 2025-06-01T21:29:01.4584445Z * [new branch] gh/fffrog/78/head -> origin/gh/fffrog/78/head 2025-06-01T21:29:01.4584912Z * [new branch] gh/fffrog/78/orig -> origin/gh/fffrog/78/orig 2025-06-01T21:29:01.4585476Z * [new branch] gh/fffrog/80/base -> origin/gh/fffrog/80/base 2025-06-01T21:29:01.4585947Z * [new branch] gh/fffrog/80/head -> origin/gh/fffrog/80/head 2025-06-01T21:29:01.4586418Z * [new branch] gh/fffrog/80/orig -> origin/gh/fffrog/80/orig 2025-06-01T21:29:01.4586885Z * [new branch] gh/fffrog/81/base -> origin/gh/fffrog/81/base 2025-06-01T21:29:01.4587451Z * [new branch] gh/fffrog/81/head -> origin/gh/fffrog/81/head 2025-06-01T21:29:01.4587923Z * [new branch] gh/fffrog/81/orig -> origin/gh/fffrog/81/orig 2025-06-01T21:29:01.4588404Z * [new branch] gh/fffrog/84/base -> origin/gh/fffrog/84/base 2025-06-01T21:29:01.4588870Z * [new branch] gh/fffrog/84/head -> origin/gh/fffrog/84/head 2025-06-01T21:29:01.4589356Z * [new branch] gh/fffrog/84/orig -> origin/gh/fffrog/84/orig 2025-06-01T21:29:01.4589837Z * [new branch] gh/fffrog/85/base -> origin/gh/fffrog/85/base 2025-06-01T21:29:01.4590298Z * [new branch] gh/fffrog/85/head -> origin/gh/fffrog/85/head 2025-06-01T21:29:01.5070800Z * [new branch] gh/fffrog/85/orig -> origin/gh/fffrog/85/orig 2025-06-01T21:29:01.5071329Z * [new branch] gh/fffrog/86/base -> origin/gh/fffrog/86/base 2025-06-01T21:29:01.5072049Z * [new branch] gh/fffrog/86/head -> origin/gh/fffrog/86/head 2025-06-01T21:29:01.5072534Z * [new branch] gh/fffrog/86/orig -> origin/gh/fffrog/86/orig 2025-06-01T21:29:01.5072997Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-06-01T21:29:01.5073467Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-06-01T21:29:01.5073934Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-06-01T21:29:01.5074410Z * [new branch] gh/fffrog/88/base -> origin/gh/fffrog/88/base 2025-06-01T21:29:01.5074883Z * [new branch] gh/fffrog/88/head -> origin/gh/fffrog/88/head 2025-06-01T21:29:01.5075341Z * [new branch] gh/fffrog/88/orig -> origin/gh/fffrog/88/orig 2025-06-01T21:29:01.5075808Z * [new branch] gh/fffrog/89/base -> origin/gh/fffrog/89/base 2025-06-01T21:29:01.5076449Z * [new branch] gh/fffrog/89/head -> origin/gh/fffrog/89/head 2025-06-01T21:29:01.5076987Z * [new branch] gh/fffrog/89/orig -> origin/gh/fffrog/89/orig 2025-06-01T21:29:01.5077459Z * [new branch] gh/fffrog/90/base -> origin/gh/fffrog/90/base 2025-06-01T21:29:01.5077923Z * [new branch] gh/fffrog/90/head -> origin/gh/fffrog/90/head 2025-06-01T21:29:01.5078394Z * [new branch] gh/fffrog/90/orig -> origin/gh/fffrog/90/orig 2025-06-01T21:29:01.5078860Z * [new branch] gh/fffrog/91/base -> origin/gh/fffrog/91/base 2025-06-01T21:29:01.5079333Z * [new branch] gh/fffrog/91/head -> origin/gh/fffrog/91/head 2025-06-01T21:29:01.5079801Z * [new branch] gh/fffrog/91/orig -> origin/gh/fffrog/91/orig 2025-06-01T21:29:01.5080260Z * [new branch] gh/fffrog/92/base -> origin/gh/fffrog/92/base 2025-06-01T21:29:01.5080900Z * [new branch] gh/fffrog/92/head -> origin/gh/fffrog/92/head 2025-06-01T21:29:01.5081370Z * [new branch] gh/fffrog/92/orig -> origin/gh/fffrog/92/orig 2025-06-01T21:29:01.5081840Z * [new branch] gh/fffrog/93/base -> origin/gh/fffrog/93/base 2025-06-01T21:29:01.5082308Z * [new branch] gh/fffrog/93/head -> origin/gh/fffrog/93/head 2025-06-01T21:29:01.5082766Z * [new branch] gh/fffrog/93/orig -> origin/gh/fffrog/93/orig 2025-06-01T21:29:01.5083422Z * [new branch] gh/fffrog/94/base -> origin/gh/fffrog/94/base 2025-06-01T21:29:01.5083890Z * [new branch] gh/fffrog/94/head -> origin/gh/fffrog/94/head 2025-06-01T21:29:01.5084366Z * [new branch] gh/fffrog/94/orig -> origin/gh/fffrog/94/orig 2025-06-01T21:29:01.5084837Z * [new branch] gh/fffrog/95/base -> origin/gh/fffrog/95/base 2025-06-01T21:29:01.5085312Z * [new branch] gh/fffrog/95/head -> origin/gh/fffrog/95/head 2025-06-01T21:29:01.5085800Z * [new branch] gh/fffrog/95/orig -> origin/gh/fffrog/95/orig 2025-06-01T21:29:01.5086264Z * [new branch] gh/fffrog/96/base -> origin/gh/fffrog/96/base 2025-06-01T21:29:01.5086732Z * [new branch] gh/fffrog/96/head -> origin/gh/fffrog/96/head 2025-06-01T21:29:01.5087193Z * [new branch] gh/fffrog/96/orig -> origin/gh/fffrog/96/orig 2025-06-01T21:29:01.5087666Z * [new branch] gh/fffrog/97/base -> origin/gh/fffrog/97/base 2025-06-01T21:29:01.5088135Z * [new branch] gh/fffrog/97/head -> origin/gh/fffrog/97/head 2025-06-01T21:29:01.5088595Z * [new branch] gh/fffrog/97/orig -> origin/gh/fffrog/97/orig 2025-06-01T21:29:01.5089180Z * [new branch] gh/fffrog/98/base -> origin/gh/fffrog/98/base 2025-06-01T21:29:01.5089644Z * [new branch] gh/fffrog/98/head -> origin/gh/fffrog/98/head 2025-06-01T21:29:01.5090122Z * [new branch] gh/fffrog/98/orig -> origin/gh/fffrog/98/orig 2025-06-01T21:29:01.5090613Z * [new branch] gh/guangyey/126/base -> origin/gh/guangyey/126/base 2025-06-01T21:29:01.5091121Z * [new branch] gh/guangyey/126/head -> origin/gh/guangyey/126/head 2025-06-01T21:29:01.5091632Z * [new branch] gh/guangyey/126/orig -> origin/gh/guangyey/126/orig 2025-06-01T21:29:01.5092124Z * [new branch] gh/guangyey/127/base -> origin/gh/guangyey/127/base 2025-06-01T21:29:01.5092624Z * [new branch] gh/guangyey/127/head -> origin/gh/guangyey/127/head 2025-06-01T21:29:01.5093112Z * [new branch] gh/guangyey/127/orig -> origin/gh/guangyey/127/orig 2025-06-01T21:29:01.5093635Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-06-01T21:29:01.5094137Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-06-01T21:29:01.5560177Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-06-01T21:29:01.5561003Z * [new branch] gh/guangyey/132/base -> origin/gh/guangyey/132/base 2025-06-01T21:29:01.5561759Z * [new branch] gh/guangyey/132/head -> origin/gh/guangyey/132/head 2025-06-01T21:29:01.5562484Z * [new branch] gh/guangyey/132/orig -> origin/gh/guangyey/132/orig 2025-06-01T21:29:01.5562991Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-06-01T21:29:01.5563484Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-06-01T21:29:01.5563988Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-06-01T21:29:01.5564497Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-06-01T21:29:01.5564987Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-06-01T21:29:01.5565484Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-06-01T21:29:01.5565970Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-06-01T21:29:01.5566468Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-06-01T21:29:01.5567172Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-06-01T21:29:01.5567668Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-06-01T21:29:01.5568173Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-06-01T21:29:01.5568670Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-06-01T21:29:01.5569172Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-06-01T21:29:01.5569666Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-06-01T21:29:01.5570167Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-06-01T21:29:01.5570671Z * [new branch] gh/guangyey/141/base -> origin/gh/guangyey/141/base 2025-06-01T21:29:01.5571162Z * [new branch] gh/guangyey/141/head -> origin/gh/guangyey/141/head 2025-06-01T21:29:01.5571666Z * [new branch] gh/guangyey/141/orig -> origin/gh/guangyey/141/orig 2025-06-01T21:29:01.5572155Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-06-01T21:29:01.5572650Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-06-01T21:29:01.5573268Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-06-01T21:29:01.5573762Z * [new branch] gh/guangyey/143/base -> origin/gh/guangyey/143/base 2025-06-01T21:29:01.5574265Z * [new branch] gh/guangyey/143/head -> origin/gh/guangyey/143/head 2025-06-01T21:29:01.5574759Z * [new branch] gh/guangyey/143/orig -> origin/gh/guangyey/143/orig 2025-06-01T21:29:01.5575286Z * [new branch] gh/guangyey/144/base -> origin/gh/guangyey/144/base 2025-06-01T21:29:01.5575792Z * [new branch] gh/guangyey/144/head -> origin/gh/guangyey/144/head 2025-06-01T21:29:01.5576283Z * [new branch] gh/guangyey/144/orig -> origin/gh/guangyey/144/orig 2025-06-01T21:29:01.5576784Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-06-01T21:29:01.5577275Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-06-01T21:29:01.5577783Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-06-01T21:29:01.5578284Z * [new branch] gh/guangyey/146/base -> origin/gh/guangyey/146/base 2025-06-01T21:29:01.5578777Z * [new branch] gh/guangyey/146/head -> origin/gh/guangyey/146/head 2025-06-01T21:29:01.5579277Z * [new branch] gh/guangyey/146/orig -> origin/gh/guangyey/146/orig 2025-06-01T21:29:01.5579767Z * [new branch] gh/guangyey/147/base -> origin/gh/guangyey/147/base 2025-06-01T21:29:01.5580270Z * [new branch] gh/guangyey/147/head -> origin/gh/guangyey/147/head 2025-06-01T21:29:01.5580756Z * [new branch] gh/guangyey/147/orig -> origin/gh/guangyey/147/orig 2025-06-01T21:29:01.5581252Z * [new branch] gh/guangyey/148/base -> origin/gh/guangyey/148/base 2025-06-01T21:29:01.5581753Z * [new branch] gh/guangyey/148/head -> origin/gh/guangyey/148/head 2025-06-01T21:29:01.5582243Z * [new branch] gh/guangyey/148/orig -> origin/gh/guangyey/148/orig 2025-06-01T21:29:01.5582742Z * [new branch] gh/guangyey/149/base -> origin/gh/guangyey/149/base 2025-06-01T21:29:01.5583228Z * [new branch] gh/guangyey/149/head -> origin/gh/guangyey/149/head 2025-06-01T21:29:01.5583718Z * [new branch] gh/guangyey/149/orig -> origin/gh/guangyey/149/orig 2025-06-01T21:29:01.6048420Z * [new branch] gh/guangyey/150/base -> origin/gh/guangyey/150/base 2025-06-01T21:29:01.6049215Z * [new branch] gh/guangyey/150/head -> origin/gh/guangyey/150/head 2025-06-01T21:29:01.6049722Z * [new branch] gh/guangyey/150/orig -> origin/gh/guangyey/150/orig 2025-06-01T21:29:01.6050227Z * [new branch] gh/guangyey/151/base -> origin/gh/guangyey/151/base 2025-06-01T21:29:01.6050749Z * [new branch] gh/guangyey/151/head -> origin/gh/guangyey/151/head 2025-06-01T21:29:01.6051246Z * [new branch] gh/guangyey/151/orig -> origin/gh/guangyey/151/orig 2025-06-01T21:29:01.6051742Z * [new branch] gh/guangyey/152/base -> origin/gh/guangyey/152/base 2025-06-01T21:29:01.6052235Z * [new branch] gh/guangyey/152/head -> origin/gh/guangyey/152/head 2025-06-01T21:29:01.6052730Z * [new branch] gh/guangyey/152/orig -> origin/gh/guangyey/152/orig 2025-06-01T21:29:01.6053228Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-06-01T21:29:01.6053725Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-06-01T21:29:01.6054221Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-06-01T21:29:01.6054701Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-06-01T21:29:01.6055334Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-06-01T21:29:01.6055821Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-06-01T21:29:01.6056372Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-06-01T21:29:01.6056963Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-06-01T21:29:01.6057552Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-06-01T21:29:01.6058141Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-06-01T21:29:01.6058716Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-06-01T21:29:01.6059295Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-06-01T21:29:01.6059869Z * [new branch] gh/guilhermeleobas/109/base -> origin/gh/guilhermeleobas/109/base 2025-06-01T21:29:01.6060445Z * [new branch] gh/guilhermeleobas/109/head -> origin/gh/guilhermeleobas/109/head 2025-06-01T21:29:01.6061028Z * [new branch] gh/guilhermeleobas/109/orig -> origin/gh/guilhermeleobas/109/orig 2025-06-01T21:29:01.6061596Z * [new branch] gh/guilhermeleobas/113/base -> origin/gh/guilhermeleobas/113/base 2025-06-01T21:29:01.6062183Z * [new branch] gh/guilhermeleobas/113/head -> origin/gh/guilhermeleobas/113/head 2025-06-01T21:29:01.6062757Z * [new branch] gh/guilhermeleobas/113/orig -> origin/gh/guilhermeleobas/113/orig 2025-06-01T21:29:01.6063346Z * [new branch] gh/guilhermeleobas/114/base -> origin/gh/guilhermeleobas/114/base 2025-06-01T21:29:01.6063925Z * [new branch] gh/guilhermeleobas/114/head -> origin/gh/guilhermeleobas/114/head 2025-06-01T21:29:01.6064503Z * [new branch] gh/guilhermeleobas/114/orig -> origin/gh/guilhermeleobas/114/orig 2025-06-01T21:29:01.6065083Z * [new branch] gh/guilhermeleobas/115/base -> origin/gh/guilhermeleobas/115/base 2025-06-01T21:29:01.6065656Z * [new branch] gh/guilhermeleobas/115/head -> origin/gh/guilhermeleobas/115/head 2025-06-01T21:29:01.6066235Z * [new branch] gh/guilhermeleobas/115/orig -> origin/gh/guilhermeleobas/115/orig 2025-06-01T21:29:01.6066813Z * [new branch] gh/guilhermeleobas/116/base -> origin/gh/guilhermeleobas/116/base 2025-06-01T21:29:01.6067556Z * [new branch] gh/guilhermeleobas/116/head -> origin/gh/guilhermeleobas/116/head 2025-06-01T21:29:01.6068144Z * [new branch] gh/guilhermeleobas/116/orig -> origin/gh/guilhermeleobas/116/orig 2025-06-01T21:29:01.6068716Z * [new branch] gh/guilhermeleobas/118/base -> origin/gh/guilhermeleobas/118/base 2025-06-01T21:29:01.6069299Z * [new branch] gh/guilhermeleobas/118/head -> origin/gh/guilhermeleobas/118/head 2025-06-01T21:29:01.6069887Z * [new branch] gh/guilhermeleobas/118/orig -> origin/gh/guilhermeleobas/118/orig 2025-06-01T21:29:01.6070455Z * [new branch] gh/guilhermeleobas/119/base -> origin/gh/guilhermeleobas/119/base 2025-06-01T21:29:01.6071033Z * [new branch] gh/guilhermeleobas/119/head -> origin/gh/guilhermeleobas/119/head 2025-06-01T21:29:01.6071601Z * [new branch] gh/guilhermeleobas/119/orig -> origin/gh/guilhermeleobas/119/orig 2025-06-01T21:29:01.6072186Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-06-01T21:29:01.6072771Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-06-01T21:29:01.6073350Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-06-01T21:29:01.6487629Z * [new branch] gh/guilhermeleobas/121/base -> origin/gh/guilhermeleobas/121/base 2025-06-01T21:29:01.6488481Z * [new branch] gh/guilhermeleobas/121/head -> origin/gh/guilhermeleobas/121/head 2025-06-01T21:29:01.6489114Z * [new branch] gh/guilhermeleobas/121/orig -> origin/gh/guilhermeleobas/121/orig 2025-06-01T21:29:01.6489703Z * [new branch] gh/guilhermeleobas/122/base -> origin/gh/guilhermeleobas/122/base 2025-06-01T21:29:01.6490282Z * [new branch] gh/guilhermeleobas/122/head -> origin/gh/guilhermeleobas/122/head 2025-06-01T21:29:01.6490859Z * [new branch] gh/guilhermeleobas/122/orig -> origin/gh/guilhermeleobas/122/orig 2025-06-01T21:29:01.6491453Z * [new branch] gh/guilhermeleobas/123/base -> origin/gh/guilhermeleobas/123/base 2025-06-01T21:29:01.6492026Z * [new branch] gh/guilhermeleobas/123/head -> origin/gh/guilhermeleobas/123/head 2025-06-01T21:29:01.6492606Z * [new branch] gh/guilhermeleobas/123/orig -> origin/gh/guilhermeleobas/123/orig 2025-06-01T21:29:01.6493185Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-06-01T21:29:01.6493773Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-06-01T21:29:01.6494354Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-06-01T21:29:01.6494922Z * [new branch] gh/guilhermeleobas/125/base -> origin/gh/guilhermeleobas/125/base 2025-06-01T21:29:01.6495505Z * [new branch] gh/guilhermeleobas/125/head -> origin/gh/guilhermeleobas/125/head 2025-06-01T21:29:01.6496082Z * [new branch] gh/guilhermeleobas/125/orig -> origin/gh/guilhermeleobas/125/orig 2025-06-01T21:29:01.6496660Z * [new branch] gh/guilhermeleobas/126/base -> origin/gh/guilhermeleobas/126/base 2025-06-01T21:29:01.6497236Z * [new branch] gh/guilhermeleobas/126/head -> origin/gh/guilhermeleobas/126/head 2025-06-01T21:29:01.6497812Z * [new branch] gh/guilhermeleobas/126/orig -> origin/gh/guilhermeleobas/126/orig 2025-06-01T21:29:01.6498393Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-06-01T21:29:01.6498966Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-06-01T21:29:01.6499544Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-06-01T21:29:01.6500123Z * [new branch] gh/guilhermeleobas/128/base -> origin/gh/guilhermeleobas/128/base 2025-06-01T21:29:01.6501596Z * [new branch] gh/guilhermeleobas/128/head -> origin/gh/guilhermeleobas/128/head 2025-06-01T21:29:01.6502189Z * [new branch] gh/guilhermeleobas/128/orig -> origin/gh/guilhermeleobas/128/orig 2025-06-01T21:29:01.6502772Z * [new branch] gh/guilhermeleobas/129/base -> origin/gh/guilhermeleobas/129/base 2025-06-01T21:29:01.6503370Z * [new branch] gh/guilhermeleobas/129/head -> origin/gh/guilhermeleobas/129/head 2025-06-01T21:29:01.6518798Z * [new branch] gh/guilhermeleobas/129/orig -> origin/gh/guilhermeleobas/129/orig 2025-06-01T21:29:01.6519423Z * [new branch] gh/guilhermeleobas/130/base -> origin/gh/guilhermeleobas/130/base 2025-06-01T21:29:01.6520018Z * [new branch] gh/guilhermeleobas/130/head -> origin/gh/guilhermeleobas/130/head 2025-06-01T21:29:01.6520596Z * [new branch] gh/guilhermeleobas/130/orig -> origin/gh/guilhermeleobas/130/orig 2025-06-01T21:29:01.6521213Z * [new branch] gh/guilhermeleobas/131/base -> origin/gh/guilhermeleobas/131/base 2025-06-01T21:29:01.6521786Z * [new branch] gh/guilhermeleobas/131/head -> origin/gh/guilhermeleobas/131/head 2025-06-01T21:29:01.6522370Z * [new branch] gh/guilhermeleobas/131/orig -> origin/gh/guilhermeleobas/131/orig 2025-06-01T21:29:01.6522952Z * [new branch] gh/guilhermeleobas/132/base -> origin/gh/guilhermeleobas/132/base 2025-06-01T21:29:01.6523712Z * [new branch] gh/guilhermeleobas/132/head -> origin/gh/guilhermeleobas/132/head 2025-06-01T21:29:01.6524308Z * [new branch] gh/guilhermeleobas/132/orig -> origin/gh/guilhermeleobas/132/orig 2025-06-01T21:29:01.6524887Z * [new branch] gh/guilhermeleobas/133/base -> origin/gh/guilhermeleobas/133/base 2025-06-01T21:29:01.6525477Z * [new branch] gh/guilhermeleobas/133/head -> origin/gh/guilhermeleobas/133/head 2025-06-01T21:29:01.6526060Z * [new branch] gh/guilhermeleobas/133/orig -> origin/gh/guilhermeleobas/133/orig 2025-06-01T21:29:01.6526654Z * [new branch] gh/guilhermeleobas/134/base -> origin/gh/guilhermeleobas/134/base 2025-06-01T21:29:01.6527243Z * [new branch] gh/guilhermeleobas/134/head -> origin/gh/guilhermeleobas/134/head 2025-06-01T21:29:01.6527818Z * [new branch] gh/guilhermeleobas/134/orig -> origin/gh/guilhermeleobas/134/orig 2025-06-01T21:29:01.6528402Z * [new branch] gh/guilhermeleobas/135/base -> origin/gh/guilhermeleobas/135/base 2025-06-01T21:29:01.6938869Z * [new branch] gh/guilhermeleobas/135/head -> origin/gh/guilhermeleobas/135/head 2025-06-01T21:29:01.6939506Z * [new branch] gh/guilhermeleobas/135/orig -> origin/gh/guilhermeleobas/135/orig 2025-06-01T21:29:01.6940115Z * [new branch] gh/guilhermeleobas/136/base -> origin/gh/guilhermeleobas/136/base 2025-06-01T21:29:01.6940704Z * [new branch] gh/guilhermeleobas/136/head -> origin/gh/guilhermeleobas/136/head 2025-06-01T21:29:01.6941316Z * [new branch] gh/guilhermeleobas/136/orig -> origin/gh/guilhermeleobas/136/orig 2025-06-01T21:29:01.6941903Z * [new branch] gh/guilhermeleobas/137/base -> origin/gh/guilhermeleobas/137/base 2025-06-01T21:29:01.6942481Z * [new branch] gh/guilhermeleobas/137/head -> origin/gh/guilhermeleobas/137/head 2025-06-01T21:29:01.6943085Z * [new branch] gh/guilhermeleobas/137/orig -> origin/gh/guilhermeleobas/137/orig 2025-06-01T21:29:01.6943662Z * [new branch] gh/guilhermeleobas/138/base -> origin/gh/guilhermeleobas/138/base 2025-06-01T21:29:01.6944238Z * [new branch] gh/guilhermeleobas/138/head -> origin/gh/guilhermeleobas/138/head 2025-06-01T21:29:01.6944816Z * [new branch] gh/guilhermeleobas/138/orig -> origin/gh/guilhermeleobas/138/orig 2025-06-01T21:29:01.6945386Z * [new branch] gh/guilhermeleobas/139/base -> origin/gh/guilhermeleobas/139/base 2025-06-01T21:29:01.6946163Z * [new branch] gh/guilhermeleobas/139/head -> origin/gh/guilhermeleobas/139/head 2025-06-01T21:29:01.6946748Z * [new branch] gh/guilhermeleobas/139/orig -> origin/gh/guilhermeleobas/139/orig 2025-06-01T21:29:01.6947327Z * [new branch] gh/guilhermeleobas/140/base -> origin/gh/guilhermeleobas/140/base 2025-06-01T21:29:01.6947997Z * [new branch] gh/guilhermeleobas/140/head -> origin/gh/guilhermeleobas/140/head 2025-06-01T21:29:01.6948566Z * [new branch] gh/guilhermeleobas/140/orig -> origin/gh/guilhermeleobas/140/orig 2025-06-01T21:29:01.6949167Z * [new branch] gh/guilhermeleobas/141/base -> origin/gh/guilhermeleobas/141/base 2025-06-01T21:29:01.6949820Z * [new branch] gh/guilhermeleobas/141/head -> origin/gh/guilhermeleobas/141/head 2025-06-01T21:29:01.6950448Z * [new branch] gh/guilhermeleobas/141/orig -> origin/gh/guilhermeleobas/141/orig 2025-06-01T21:29:01.6951038Z * [new branch] gh/guilhermeleobas/142/base -> origin/gh/guilhermeleobas/142/base 2025-06-01T21:29:01.6951614Z * [new branch] gh/guilhermeleobas/142/head -> origin/gh/guilhermeleobas/142/head 2025-06-01T21:29:01.6952198Z * [new branch] gh/guilhermeleobas/142/orig -> origin/gh/guilhermeleobas/142/orig 2025-06-01T21:29:01.6953554Z * [new branch] gh/guilhermeleobas/143/base -> origin/gh/guilhermeleobas/143/base 2025-06-01T21:29:01.6954144Z * [new branch] gh/guilhermeleobas/143/head -> origin/gh/guilhermeleobas/143/head 2025-06-01T21:29:01.6954725Z * [new branch] gh/guilhermeleobas/143/orig -> origin/gh/guilhermeleobas/143/orig 2025-06-01T21:29:01.6955296Z * [new branch] gh/guilhermeleobas/144/base -> origin/gh/guilhermeleobas/144/base 2025-06-01T21:29:01.6955875Z * [new branch] gh/guilhermeleobas/144/head -> origin/gh/guilhermeleobas/144/head 2025-06-01T21:29:01.6956462Z * [new branch] gh/guilhermeleobas/144/orig -> origin/gh/guilhermeleobas/144/orig 2025-06-01T21:29:01.6957038Z * [new branch] gh/guilhermeleobas/145/base -> origin/gh/guilhermeleobas/145/base 2025-06-01T21:29:01.6957625Z * [new branch] gh/guilhermeleobas/145/head -> origin/gh/guilhermeleobas/145/head 2025-06-01T21:29:01.6958204Z * [new branch] gh/guilhermeleobas/145/orig -> origin/gh/guilhermeleobas/145/orig 2025-06-01T21:29:01.6958794Z * [new branch] gh/guilhermeleobas/146/base -> origin/gh/guilhermeleobas/146/base 2025-06-01T21:29:01.6959385Z * [new branch] gh/guilhermeleobas/146/head -> origin/gh/guilhermeleobas/146/head 2025-06-01T21:29:01.6959961Z * [new branch] gh/guilhermeleobas/146/orig -> origin/gh/guilhermeleobas/146/orig 2025-06-01T21:29:01.6960610Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-06-01T21:29:01.6961249Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-06-01T21:29:01.6961838Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-06-01T21:29:01.6962429Z * [new branch] gh/guilhermeleobas/148/base -> origin/gh/guilhermeleobas/148/base 2025-06-01T21:29:01.6963006Z * [new branch] gh/guilhermeleobas/148/head -> origin/gh/guilhermeleobas/148/head 2025-06-01T21:29:01.6963614Z * [new branch] gh/guilhermeleobas/148/orig -> origin/gh/guilhermeleobas/148/orig 2025-06-01T21:29:01.6964202Z * [new branch] gh/guilhermeleobas/149/base -> origin/gh/guilhermeleobas/149/base 2025-06-01T21:29:01.6964796Z * [new branch] gh/guilhermeleobas/149/head -> origin/gh/guilhermeleobas/149/head 2025-06-01T21:29:01.7517662Z * [new branch] gh/guilhermeleobas/149/orig -> origin/gh/guilhermeleobas/149/orig 2025-06-01T21:29:01.7518307Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-06-01T21:29:01.7519139Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-06-01T21:29:01.7519738Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-06-01T21:29:01.7520325Z * [new branch] gh/guilhermeleobas/151/base -> origin/gh/guilhermeleobas/151/base 2025-06-01T21:29:01.7520942Z * [new branch] gh/guilhermeleobas/151/head -> origin/gh/guilhermeleobas/151/head 2025-06-01T21:29:01.7521525Z * [new branch] gh/guilhermeleobas/151/orig -> origin/gh/guilhermeleobas/151/orig 2025-06-01T21:29:01.7522114Z * [new branch] gh/guilhermeleobas/152/base -> origin/gh/guilhermeleobas/152/base 2025-06-01T21:29:01.7522713Z * [new branch] gh/guilhermeleobas/152/head -> origin/gh/guilhermeleobas/152/head 2025-06-01T21:29:01.7523289Z * [new branch] gh/guilhermeleobas/152/orig -> origin/gh/guilhermeleobas/152/orig 2025-06-01T21:29:01.7523882Z * [new branch] gh/guilhermeleobas/153/base -> origin/gh/guilhermeleobas/153/base 2025-06-01T21:29:01.7524458Z * [new branch] gh/guilhermeleobas/153/head -> origin/gh/guilhermeleobas/153/head 2025-06-01T21:29:01.7525036Z * [new branch] gh/guilhermeleobas/153/orig -> origin/gh/guilhermeleobas/153/orig 2025-06-01T21:29:01.7525751Z * [new branch] gh/guilhermeleobas/154/base -> origin/gh/guilhermeleobas/154/base 2025-06-01T21:29:01.7526330Z * [new branch] gh/guilhermeleobas/154/head -> origin/gh/guilhermeleobas/154/head 2025-06-01T21:29:01.7526917Z * [new branch] gh/guilhermeleobas/154/orig -> origin/gh/guilhermeleobas/154/orig 2025-06-01T21:29:01.7527497Z * [new branch] gh/guilhermeleobas/155/base -> origin/gh/guilhermeleobas/155/base 2025-06-01T21:29:01.7528081Z * [new branch] gh/guilhermeleobas/155/head -> origin/gh/guilhermeleobas/155/head 2025-06-01T21:29:01.7528669Z * [new branch] gh/guilhermeleobas/155/orig -> origin/gh/guilhermeleobas/155/orig 2025-06-01T21:29:01.7529245Z * [new branch] gh/guilhermeleobas/156/base -> origin/gh/guilhermeleobas/156/base 2025-06-01T21:29:01.7529840Z * [new branch] gh/guilhermeleobas/156/head -> origin/gh/guilhermeleobas/156/head 2025-06-01T21:29:01.7530423Z * [new branch] gh/guilhermeleobas/156/orig -> origin/gh/guilhermeleobas/156/orig 2025-06-01T21:29:01.7531004Z * [new branch] gh/guilhermeleobas/157/base -> origin/gh/guilhermeleobas/157/base 2025-06-01T21:29:01.7531585Z * [new branch] gh/guilhermeleobas/157/head -> origin/gh/guilhermeleobas/157/head 2025-06-01T21:29:01.7532159Z * [new branch] gh/guilhermeleobas/157/orig -> origin/gh/guilhermeleobas/157/orig 2025-06-01T21:29:01.7532744Z * [new branch] gh/guilhermeleobas/158/base -> origin/gh/guilhermeleobas/158/base 2025-06-01T21:29:01.7533325Z * [new branch] gh/guilhermeleobas/158/head -> origin/gh/guilhermeleobas/158/head 2025-06-01T21:29:01.7533907Z * [new branch] gh/guilhermeleobas/158/orig -> origin/gh/guilhermeleobas/158/orig 2025-06-01T21:29:01.7534494Z * [new branch] gh/guilhermeleobas/159/base -> origin/gh/guilhermeleobas/159/base 2025-06-01T21:29:01.7535069Z * [new branch] gh/guilhermeleobas/159/head -> origin/gh/guilhermeleobas/159/head 2025-06-01T21:29:01.7535649Z * [new branch] gh/guilhermeleobas/159/orig -> origin/gh/guilhermeleobas/159/orig 2025-06-01T21:29:01.7536229Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-06-01T21:29:01.7536807Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-06-01T21:29:01.7537389Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-06-01T21:29:01.7538053Z * [new branch] gh/henrylhtsang/13/base -> origin/gh/henrylhtsang/13/base 2025-06-01T21:29:01.7538605Z * [new branch] gh/henrylhtsang/13/head -> origin/gh/henrylhtsang/13/head 2025-06-01T21:29:01.7539135Z * [new branch] gh/henrylhtsang/13/orig -> origin/gh/henrylhtsang/13/orig 2025-06-01T21:29:01.7539675Z * [new branch] gh/henrylhtsang/31/base -> origin/gh/henrylhtsang/31/base 2025-06-01T21:29:01.7540218Z * [new branch] gh/henrylhtsang/31/head -> origin/gh/henrylhtsang/31/head 2025-06-01T21:29:01.7540748Z * [new branch] gh/henrylhtsang/31/orig -> origin/gh/henrylhtsang/31/orig 2025-06-01T21:29:01.7541281Z * [new branch] gh/henrylhtsang/58/base -> origin/gh/henrylhtsang/58/base 2025-06-01T21:29:01.7541820Z * [new branch] gh/henrylhtsang/58/head -> origin/gh/henrylhtsang/58/head 2025-06-01T21:29:01.7542379Z * [new branch] gh/henrylhtsang/58/orig -> origin/gh/henrylhtsang/58/orig 2025-06-01T21:29:01.7979193Z * [new branch] gh/henrylhtsang/59/base -> origin/gh/henrylhtsang/59/base 2025-06-01T21:29:01.7979790Z * [new branch] gh/henrylhtsang/59/head -> origin/gh/henrylhtsang/59/head 2025-06-01T21:29:01.7980380Z * [new branch] gh/henrylhtsang/60/base -> origin/gh/henrylhtsang/60/base 2025-06-01T21:29:01.7981124Z * [new branch] gh/henrylhtsang/60/head -> origin/gh/henrylhtsang/60/head 2025-06-01T21:29:01.7981694Z * [new branch] gh/henrylhtsang/60/orig -> origin/gh/henrylhtsang/60/orig 2025-06-01T21:29:01.7982256Z * [new branch] gh/henrylhtsang/61/base -> origin/gh/henrylhtsang/61/base 2025-06-01T21:29:01.7982800Z * [new branch] gh/henrylhtsang/61/head -> origin/gh/henrylhtsang/61/head 2025-06-01T21:29:01.7983354Z * [new branch] gh/henrylhtsang/61/orig -> origin/gh/henrylhtsang/61/orig 2025-06-01T21:29:01.7983927Z * [new branch] gh/henrylhtsang/62/base -> origin/gh/henrylhtsang/62/base 2025-06-01T21:29:01.7984463Z * [new branch] gh/henrylhtsang/62/head -> origin/gh/henrylhtsang/62/head 2025-06-01T21:29:01.7985009Z * [new branch] gh/henrylhtsang/62/orig -> origin/gh/henrylhtsang/62/orig 2025-06-01T21:29:01.7985561Z * [new branch] gh/henrylhtsang/63/base -> origin/gh/henrylhtsang/63/base 2025-06-01T21:29:01.7986102Z * [new branch] gh/henrylhtsang/63/head -> origin/gh/henrylhtsang/63/head 2025-06-01T21:29:01.7986650Z * [new branch] gh/henrylhtsang/63/orig -> origin/gh/henrylhtsang/63/orig 2025-06-01T21:29:01.7987184Z * [new branch] gh/henrylhtsang/64/base -> origin/gh/henrylhtsang/64/base 2025-06-01T21:29:01.7987808Z * [new branch] gh/henrylhtsang/64/head -> origin/gh/henrylhtsang/64/head 2025-06-01T21:29:01.7988365Z * [new branch] gh/henrylhtsang/64/orig -> origin/gh/henrylhtsang/64/orig 2025-06-01T21:29:01.7988911Z * [new branch] gh/henrylhtsang/65/base -> origin/gh/henrylhtsang/65/base 2025-06-01T21:29:01.7989462Z * [new branch] gh/henrylhtsang/65/head -> origin/gh/henrylhtsang/65/head 2025-06-01T21:29:01.7990003Z * [new branch] gh/henrylhtsang/65/orig -> origin/gh/henrylhtsang/65/orig 2025-06-01T21:29:01.7990560Z * [new branch] gh/henrylhtsang/66/base -> origin/gh/henrylhtsang/66/base 2025-06-01T21:29:01.7991110Z * [new branch] gh/henrylhtsang/66/head -> origin/gh/henrylhtsang/66/head 2025-06-01T21:29:01.7991648Z * [new branch] gh/henrylhtsang/66/orig -> origin/gh/henrylhtsang/66/orig 2025-06-01T21:29:01.7992207Z * [new branch] gh/henrylhtsang/67/base -> origin/gh/henrylhtsang/67/base 2025-06-01T21:29:01.7992742Z * [new branch] gh/henrylhtsang/67/head -> origin/gh/henrylhtsang/67/head 2025-06-01T21:29:01.7993437Z * [new branch] gh/henrylhtsang/67/orig -> origin/gh/henrylhtsang/67/orig 2025-06-01T21:29:01.7993989Z * [new branch] gh/henrylhtsang/68/base -> origin/gh/henrylhtsang/68/base 2025-06-01T21:29:01.7994528Z * [new branch] gh/henrylhtsang/68/head -> origin/gh/henrylhtsang/68/head 2025-06-01T21:29:01.7995093Z * [new branch] gh/henrylhtsang/68/orig -> origin/gh/henrylhtsang/68/orig 2025-06-01T21:29:01.7995636Z * [new branch] gh/henrylhtsang/69/base -> origin/gh/henrylhtsang/69/base 2025-06-01T21:29:01.7996187Z * [new branch] gh/henrylhtsang/69/head -> origin/gh/henrylhtsang/69/head 2025-06-01T21:29:01.7996722Z * [new branch] gh/henrylhtsang/69/orig -> origin/gh/henrylhtsang/69/orig 2025-06-01T21:29:01.7997272Z * [new branch] gh/henrylhtsang/70/base -> origin/gh/henrylhtsang/70/base 2025-06-01T21:29:01.7997823Z * [new branch] gh/henrylhtsang/70/head -> origin/gh/henrylhtsang/70/head 2025-06-01T21:29:01.7998362Z * [new branch] gh/henrylhtsang/70/orig -> origin/gh/henrylhtsang/70/orig 2025-06-01T21:29:01.7998914Z * [new branch] gh/henrylhtsang/71/base -> origin/gh/henrylhtsang/71/base 2025-06-01T21:29:01.7999453Z * [new branch] gh/henrylhtsang/71/head -> origin/gh/henrylhtsang/71/head 2025-06-01T21:29:01.8000098Z * [new branch] gh/henrylhtsang/71/orig -> origin/gh/henrylhtsang/71/orig 2025-06-01T21:29:01.8000657Z * [new branch] gh/henrylhtsang/72/base -> origin/gh/henrylhtsang/72/base 2025-06-01T21:29:01.8001193Z * [new branch] gh/henrylhtsang/72/head -> origin/gh/henrylhtsang/72/head 2025-06-01T21:29:01.8001748Z * [new branch] gh/henrylhtsang/72/orig -> origin/gh/henrylhtsang/72/orig 2025-06-01T21:29:01.8002283Z * [new branch] gh/henrylhtsang/73/base -> origin/gh/henrylhtsang/73/base 2025-06-01T21:29:01.8002824Z * [new branch] gh/henrylhtsang/73/head -> origin/gh/henrylhtsang/73/head 2025-06-01T21:29:01.8003363Z * [new branch] gh/henrylhtsang/73/orig -> origin/gh/henrylhtsang/73/orig 2025-06-01T21:29:01.8003894Z * [new branch] gh/henrylhtsang/74/base -> origin/gh/henrylhtsang/74/base 2025-06-01T21:29:01.8434472Z * [new branch] gh/henrylhtsang/74/head -> origin/gh/henrylhtsang/74/head 2025-06-01T21:29:01.8435119Z * [new branch] gh/henrylhtsang/74/orig -> origin/gh/henrylhtsang/74/orig 2025-06-01T21:29:01.8435692Z * [new branch] gh/henrylhtsang/75/base -> origin/gh/henrylhtsang/75/base 2025-06-01T21:29:01.8436249Z * [new branch] gh/henrylhtsang/75/head -> origin/gh/henrylhtsang/75/head 2025-06-01T21:29:01.8436784Z * [new branch] gh/henrylhtsang/75/orig -> origin/gh/henrylhtsang/75/orig 2025-06-01T21:29:01.8437328Z * [new branch] gh/henrylhtsang/76/base -> origin/gh/henrylhtsang/76/base 2025-06-01T21:29:01.8437883Z * [new branch] gh/henrylhtsang/76/head -> origin/gh/henrylhtsang/76/head 2025-06-01T21:29:01.8438440Z * [new branch] gh/henrylhtsang/76/orig -> origin/gh/henrylhtsang/76/orig 2025-06-01T21:29:01.8438987Z * [new branch] gh/henrylhtsang/77/base -> origin/gh/henrylhtsang/77/base 2025-06-01T21:29:01.8439523Z * [new branch] gh/henrylhtsang/77/head -> origin/gh/henrylhtsang/77/head 2025-06-01T21:29:01.8440067Z * [new branch] gh/henrylhtsang/77/orig -> origin/gh/henrylhtsang/77/orig 2025-06-01T21:29:01.8440637Z * [new branch] gh/henrylhtsang/78/base -> origin/gh/henrylhtsang/78/base 2025-06-01T21:29:01.8441171Z * [new branch] gh/henrylhtsang/78/head -> origin/gh/henrylhtsang/78/head 2025-06-01T21:29:01.8441717Z * [new branch] gh/henrylhtsang/78/orig -> origin/gh/henrylhtsang/78/orig 2025-06-01T21:29:01.8442450Z * [new branch] gh/henrylhtsang/79/base -> origin/gh/henrylhtsang/79/base 2025-06-01T21:29:01.8443003Z * [new branch] gh/henrylhtsang/79/head -> origin/gh/henrylhtsang/79/head 2025-06-01T21:29:01.8443556Z * [new branch] gh/henrylhtsang/79/orig -> origin/gh/henrylhtsang/79/orig 2025-06-01T21:29:01.8444093Z * [new branch] gh/henrylhtsang/80/base -> origin/gh/henrylhtsang/80/base 2025-06-01T21:29:01.8444651Z * [new branch] gh/henrylhtsang/80/head -> origin/gh/henrylhtsang/80/head 2025-06-01T21:29:01.8445195Z * [new branch] gh/henrylhtsang/80/orig -> origin/gh/henrylhtsang/80/orig 2025-06-01T21:29:01.8445731Z * [new branch] gh/henrylhtsang/81/base -> origin/gh/henrylhtsang/81/base 2025-06-01T21:29:01.8446254Z * [new branch] gh/henrylhtsang/81/head -> origin/gh/henrylhtsang/81/head 2025-06-01T21:29:01.8446786Z * [new branch] gh/henrylhtsang/81/orig -> origin/gh/henrylhtsang/81/orig 2025-06-01T21:29:01.8447320Z * [new branch] gh/henrylhtsang/82/base -> origin/gh/henrylhtsang/82/base 2025-06-01T21:29:01.8447848Z * [new branch] gh/henrylhtsang/82/head -> origin/gh/henrylhtsang/82/head 2025-06-01T21:29:01.8448376Z * [new branch] gh/henrylhtsang/82/orig -> origin/gh/henrylhtsang/82/orig 2025-06-01T21:29:01.8449026Z * [new branch] gh/henrylhtsang/83/base -> origin/gh/henrylhtsang/83/base 2025-06-01T21:29:01.8449576Z * [new branch] gh/henrylhtsang/83/head -> origin/gh/henrylhtsang/83/head 2025-06-01T21:29:01.8450104Z * [new branch] gh/henrylhtsang/83/orig -> origin/gh/henrylhtsang/83/orig 2025-06-01T21:29:01.8450648Z * [new branch] gh/henrylhtsang/84/base -> origin/gh/henrylhtsang/84/base 2025-06-01T21:29:01.8451180Z * [new branch] gh/henrylhtsang/84/head -> origin/gh/henrylhtsang/84/head 2025-06-01T21:29:01.8451710Z * [new branch] gh/henrylhtsang/84/orig -> origin/gh/henrylhtsang/84/orig 2025-06-01T21:29:01.8452258Z * [new branch] gh/henrylhtsang/85/base -> origin/gh/henrylhtsang/85/base 2025-06-01T21:29:01.8452776Z * [new branch] gh/henrylhtsang/85/head -> origin/gh/henrylhtsang/85/head 2025-06-01T21:29:01.8453311Z * [new branch] gh/henrylhtsang/85/orig -> origin/gh/henrylhtsang/85/orig 2025-06-01T21:29:01.8453843Z * [new branch] gh/henrylhtsang/86/base -> origin/gh/henrylhtsang/86/base 2025-06-01T21:29:01.8454372Z * [new branch] gh/henrylhtsang/86/head -> origin/gh/henrylhtsang/86/head 2025-06-01T21:29:01.8454900Z * [new branch] gh/henrylhtsang/86/orig -> origin/gh/henrylhtsang/86/orig 2025-06-01T21:29:01.8455426Z * [new branch] gh/henrylhtsang/87/base -> origin/gh/henrylhtsang/87/base 2025-06-01T21:29:01.8455963Z * [new branch] gh/henrylhtsang/87/head -> origin/gh/henrylhtsang/87/head 2025-06-01T21:29:01.8456499Z * [new branch] gh/henrylhtsang/87/orig -> origin/gh/henrylhtsang/87/orig 2025-06-01T21:29:01.8457021Z * [new branch] gh/henrylhtsang/88/base -> origin/gh/henrylhtsang/88/base 2025-06-01T21:29:01.8457555Z * [new branch] gh/henrylhtsang/88/head -> origin/gh/henrylhtsang/88/head 2025-06-01T21:29:01.8458081Z * [new branch] gh/henrylhtsang/88/orig -> origin/gh/henrylhtsang/88/orig 2025-06-01T21:29:01.8458822Z * [new branch] gh/henrylhtsang/89/base -> origin/gh/henrylhtsang/89/base 2025-06-01T21:29:01.8459361Z * [new branch] gh/henrylhtsang/89/head -> origin/gh/henrylhtsang/89/head 2025-06-01T21:29:01.8924723Z * [new branch] gh/henrylhtsang/89/orig -> origin/gh/henrylhtsang/89/orig 2025-06-01T21:29:01.8925333Z * [new branch] gh/henrylhtsang/90/base -> origin/gh/henrylhtsang/90/base 2025-06-01T21:29:01.8926090Z * [new branch] gh/henrylhtsang/90/head -> origin/gh/henrylhtsang/90/head 2025-06-01T21:29:01.8926669Z * [new branch] gh/henrylhtsang/90/orig -> origin/gh/henrylhtsang/90/orig 2025-06-01T21:29:01.8927210Z * [new branch] gh/henrylhtsang/91/base -> origin/gh/henrylhtsang/91/base 2025-06-01T21:29:01.8927759Z * [new branch] gh/henrylhtsang/91/head -> origin/gh/henrylhtsang/91/head 2025-06-01T21:29:01.8928290Z * [new branch] gh/henrylhtsang/91/orig -> origin/gh/henrylhtsang/91/orig 2025-06-01T21:29:01.8928838Z * [new branch] gh/henrylhtsang/92/base -> origin/gh/henrylhtsang/92/base 2025-06-01T21:29:01.8929362Z * [new branch] gh/henrylhtsang/92/head -> origin/gh/henrylhtsang/92/head 2025-06-01T21:29:01.8929900Z * [new branch] gh/henrylhtsang/92/orig -> origin/gh/henrylhtsang/92/orig 2025-06-01T21:29:01.8930397Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-06-01T21:29:01.8930859Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-06-01T21:29:01.8931325Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-06-01T21:29:01.8931809Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-06-01T21:29:01.8932428Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-06-01T21:29:01.8932901Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-06-01T21:29:01.8933394Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-06-01T21:29:01.8933865Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-06-01T21:29:01.8934346Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-06-01T21:29:01.8934834Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-06-01T21:29:01.8935302Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-06-01T21:29:01.8935778Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-06-01T21:29:01.8936249Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-06-01T21:29:01.8936729Z * [new branch] gh/isuruf/119/base -> origin/gh/isuruf/119/base 2025-06-01T21:29:01.8937204Z * [new branch] gh/isuruf/119/head -> origin/gh/isuruf/119/head 2025-06-01T21:29:01.8937676Z * [new branch] gh/isuruf/119/orig -> origin/gh/isuruf/119/orig 2025-06-01T21:29:01.8938152Z * [new branch] gh/isuruf/120/base -> origin/gh/isuruf/120/base 2025-06-01T21:29:01.8938624Z * [new branch] gh/isuruf/120/head -> origin/gh/isuruf/120/head 2025-06-01T21:29:01.8939106Z * [new branch] gh/isuruf/120/orig -> origin/gh/isuruf/120/orig 2025-06-01T21:29:01.8939575Z * [new branch] gh/isuruf/127/base -> origin/gh/isuruf/127/base 2025-06-01T21:29:01.8940055Z * [new branch] gh/isuruf/127/head -> origin/gh/isuruf/127/head 2025-06-01T21:29:01.8940528Z * [new branch] gh/isuruf/127/orig -> origin/gh/isuruf/127/orig 2025-06-01T21:29:01.8940997Z * [new branch] gh/isuruf/136/base -> origin/gh/isuruf/136/base 2025-06-01T21:29:01.8941470Z * [new branch] gh/isuruf/136/head -> origin/gh/isuruf/136/head 2025-06-01T21:29:01.8941937Z * [new branch] gh/isuruf/136/orig -> origin/gh/isuruf/136/orig 2025-06-01T21:29:01.8942419Z * [new branch] gh/isuruf/137/base -> origin/gh/isuruf/137/base 2025-06-01T21:29:01.8942901Z * [new branch] gh/isuruf/137/head -> origin/gh/isuruf/137/head 2025-06-01T21:29:01.8943481Z * [new branch] gh/isuruf/137/orig -> origin/gh/isuruf/137/orig 2025-06-01T21:29:01.8943955Z * [new branch] gh/isuruf/138/base -> origin/gh/isuruf/138/base 2025-06-01T21:29:01.8944433Z * [new branch] gh/isuruf/138/orig -> origin/gh/isuruf/138/orig 2025-06-01T21:29:01.8944926Z * [new branch] gh/isuruf/139/base -> origin/gh/isuruf/139/base 2025-06-01T21:29:01.8945412Z * [new branch] gh/isuruf/139/head -> origin/gh/isuruf/139/head 2025-06-01T21:29:01.8945892Z * [new branch] gh/isuruf/139/orig -> origin/gh/isuruf/139/orig 2025-06-01T21:29:01.8946377Z * [new branch] gh/isuruf/140/base -> origin/gh/isuruf/140/base 2025-06-01T21:29:01.8946845Z * [new branch] gh/isuruf/140/head -> origin/gh/isuruf/140/head 2025-06-01T21:29:01.8947320Z * [new branch] gh/isuruf/140/orig -> origin/gh/isuruf/140/orig 2025-06-01T21:29:01.8947887Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-06-01T21:29:01.9406934Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-06-01T21:29:01.9407502Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-06-01T21:29:01.9408205Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-06-01T21:29:01.9408706Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-06-01T21:29:01.9409194Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-06-01T21:29:01.9409673Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-06-01T21:29:01.9410155Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-06-01T21:29:01.9410630Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-06-01T21:29:01.9411138Z * [new branch] gh/isuruf/144/base -> origin/gh/isuruf/144/base 2025-06-01T21:29:01.9411622Z * [new branch] gh/isuruf/144/head -> origin/gh/isuruf/144/head 2025-06-01T21:29:01.9412089Z * [new branch] gh/isuruf/144/orig -> origin/gh/isuruf/144/orig 2025-06-01T21:29:01.9412574Z * [new branch] gh/isuruf/145/base -> origin/gh/isuruf/145/base 2025-06-01T21:29:01.9413045Z * [new branch] gh/isuruf/145/head -> origin/gh/isuruf/145/head 2025-06-01T21:29:01.9413527Z * [new branch] gh/isuruf/145/orig -> origin/gh/isuruf/145/orig 2025-06-01T21:29:01.9414006Z * [new branch] gh/isuruf/146/base -> origin/gh/isuruf/146/base 2025-06-01T21:29:01.9414482Z * [new branch] gh/isuruf/146/head -> origin/gh/isuruf/146/head 2025-06-01T21:29:01.9414960Z * [new branch] gh/isuruf/146/orig -> origin/gh/isuruf/146/orig 2025-06-01T21:29:01.9415435Z * [new branch] gh/isuruf/147/base -> origin/gh/isuruf/147/base 2025-06-01T21:29:01.9415920Z * [new branch] gh/isuruf/147/head -> origin/gh/isuruf/147/head 2025-06-01T21:29:01.9416402Z * [new branch] gh/isuruf/147/orig -> origin/gh/isuruf/147/orig 2025-06-01T21:29:01.9416893Z * [new branch] gh/jamesjwu/100/base -> origin/gh/jamesjwu/100/base 2025-06-01T21:29:01.9417396Z * [new branch] gh/jamesjwu/100/head -> origin/gh/jamesjwu/100/head 2025-06-01T21:29:01.9417888Z * [new branch] gh/jamesjwu/100/orig -> origin/gh/jamesjwu/100/orig 2025-06-01T21:29:01.9418389Z * [new branch] gh/jamesjwu/102/base -> origin/gh/jamesjwu/102/base 2025-06-01T21:29:01.9418875Z * [new branch] gh/jamesjwu/102/head -> origin/gh/jamesjwu/102/head 2025-06-01T21:29:01.9419502Z * [new branch] gh/jamesjwu/105/base -> origin/gh/jamesjwu/105/base 2025-06-01T21:29:01.9420016Z * [new branch] gh/jamesjwu/105/head -> origin/gh/jamesjwu/105/head 2025-06-01T21:29:01.9420506Z * [new branch] gh/jamesjwu/105/orig -> origin/gh/jamesjwu/105/orig 2025-06-01T21:29:01.9421011Z * [new branch] gh/jamesjwu/108/base -> origin/gh/jamesjwu/108/base 2025-06-01T21:29:01.9421509Z * [new branch] gh/jamesjwu/108/head -> origin/gh/jamesjwu/108/head 2025-06-01T21:29:01.9422082Z * [new branch] gh/jamesjwu/108/orig -> origin/gh/jamesjwu/108/orig 2025-06-01T21:29:01.9422629Z * [new branch] gh/jamesjwu/111/base -> origin/gh/jamesjwu/111/base 2025-06-01T21:29:01.9423164Z * [new branch] gh/jamesjwu/111/head -> origin/gh/jamesjwu/111/head 2025-06-01T21:29:01.9423668Z * [new branch] gh/jamesjwu/111/orig -> origin/gh/jamesjwu/111/orig 2025-06-01T21:29:01.9424172Z * [new branch] gh/jamesjwu/113/base -> origin/gh/jamesjwu/113/base 2025-06-01T21:29:01.9424672Z * [new branch] gh/jamesjwu/113/head -> origin/gh/jamesjwu/113/head 2025-06-01T21:29:01.9425171Z * [new branch] gh/jamesjwu/113/orig -> origin/gh/jamesjwu/113/orig 2025-06-01T21:29:01.9425774Z * [new branch] gh/jamesjwu/122/base -> origin/gh/jamesjwu/122/base 2025-06-01T21:29:01.9426281Z * [new branch] gh/jamesjwu/122/head -> origin/gh/jamesjwu/122/head 2025-06-01T21:29:01.9426773Z * [new branch] gh/jamesjwu/122/orig -> origin/gh/jamesjwu/122/orig 2025-06-01T21:29:01.9427283Z * [new branch] gh/jamesjwu/124/base -> origin/gh/jamesjwu/124/base 2025-06-01T21:29:01.9427855Z * [new branch] gh/jamesjwu/124/head -> origin/gh/jamesjwu/124/head 2025-06-01T21:29:01.9428349Z * [new branch] gh/jamesjwu/124/orig -> origin/gh/jamesjwu/124/orig 2025-06-01T21:29:01.9428867Z * [new branch] gh/jamesjwu/128/base -> origin/gh/jamesjwu/128/base 2025-06-01T21:29:01.9429362Z * [new branch] gh/jamesjwu/128/head -> origin/gh/jamesjwu/128/head 2025-06-01T21:29:01.9429860Z * [new branch] gh/jamesjwu/128/orig -> origin/gh/jamesjwu/128/orig 2025-06-01T21:29:01.9430352Z * [new branch] gh/jamesjwu/129/base -> origin/gh/jamesjwu/129/base 2025-06-01T21:29:01.9856701Z * [new branch] gh/jamesjwu/129/head -> origin/gh/jamesjwu/129/head 2025-06-01T21:29:01.9857268Z * [new branch] gh/jamesjwu/129/orig -> origin/gh/jamesjwu/129/orig 2025-06-01T21:29:01.9857770Z * [new branch] gh/jamesjwu/139/base -> origin/gh/jamesjwu/139/base 2025-06-01T21:29:01.9858275Z * [new branch] gh/jamesjwu/139/head -> origin/gh/jamesjwu/139/head 2025-06-01T21:29:01.9858817Z * [new branch] gh/jamesjwu/139/orig -> origin/gh/jamesjwu/139/orig 2025-06-01T21:29:01.9859303Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-06-01T21:29:01.9859802Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-06-01T21:29:01.9860294Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-06-01T21:29:01.9860803Z * [new branch] gh/jamesjwu/141/base -> origin/gh/jamesjwu/141/base 2025-06-01T21:29:01.9861290Z * [new branch] gh/jamesjwu/141/head -> origin/gh/jamesjwu/141/head 2025-06-01T21:29:01.9861840Z * [new branch] gh/jamesjwu/141/orig -> origin/gh/jamesjwu/141/orig 2025-06-01T21:29:01.9862380Z * [new branch] gh/jamesjwu/142/base -> origin/gh/jamesjwu/142/base 2025-06-01T21:29:01.9862913Z * [new branch] gh/jamesjwu/142/head -> origin/gh/jamesjwu/142/head 2025-06-01T21:29:01.9863594Z * [new branch] gh/jamesjwu/142/orig -> origin/gh/jamesjwu/142/orig 2025-06-01T21:29:01.9864083Z * [new branch] gh/jamesjwu/143/base -> origin/gh/jamesjwu/143/base 2025-06-01T21:29:01.9864581Z * [new branch] gh/jamesjwu/143/head -> origin/gh/jamesjwu/143/head 2025-06-01T21:29:01.9865095Z * [new branch] gh/jamesjwu/143/orig -> origin/gh/jamesjwu/143/orig 2025-06-01T21:29:01.9865585Z * [new branch] gh/jamesjwu/144/base -> origin/gh/jamesjwu/144/base 2025-06-01T21:29:01.9866083Z * [new branch] gh/jamesjwu/144/head -> origin/gh/jamesjwu/144/head 2025-06-01T21:29:01.9866586Z * [new branch] gh/jamesjwu/144/orig -> origin/gh/jamesjwu/144/orig 2025-06-01T21:29:01.9867082Z * [new branch] gh/jamesjwu/145/base -> origin/gh/jamesjwu/145/base 2025-06-01T21:29:01.9867673Z * [new branch] gh/jamesjwu/145/head -> origin/gh/jamesjwu/145/head 2025-06-01T21:29:01.9868175Z * [new branch] gh/jamesjwu/145/orig -> origin/gh/jamesjwu/145/orig 2025-06-01T21:29:01.9868685Z * [new branch] gh/jamesjwu/146/base -> origin/gh/jamesjwu/146/base 2025-06-01T21:29:01.9869177Z * [new branch] gh/jamesjwu/146/head -> origin/gh/jamesjwu/146/head 2025-06-01T21:29:01.9869812Z * [new branch] gh/jamesjwu/146/orig -> origin/gh/jamesjwu/146/orig 2025-06-01T21:29:01.9870317Z * [new branch] gh/jamesjwu/147/base -> origin/gh/jamesjwu/147/base 2025-06-01T21:29:01.9870816Z * [new branch] gh/jamesjwu/147/head -> origin/gh/jamesjwu/147/head 2025-06-01T21:29:01.9871319Z * [new branch] gh/jamesjwu/147/orig -> origin/gh/jamesjwu/147/orig 2025-06-01T21:29:01.9871813Z * [new branch] gh/jamesjwu/148/base -> origin/gh/jamesjwu/148/base 2025-06-01T21:29:01.9872317Z * [new branch] gh/jamesjwu/148/head -> origin/gh/jamesjwu/148/head 2025-06-01T21:29:01.9872816Z * [new branch] gh/jamesjwu/148/orig -> origin/gh/jamesjwu/148/orig 2025-06-01T21:29:01.9873303Z * [new branch] gh/jamesjwu/149/base -> origin/gh/jamesjwu/149/base 2025-06-01T21:29:01.9873799Z * [new branch] gh/jamesjwu/149/head -> origin/gh/jamesjwu/149/head 2025-06-01T21:29:01.9874289Z * [new branch] gh/jamesjwu/149/orig -> origin/gh/jamesjwu/149/orig 2025-06-01T21:29:01.9874788Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-06-01T21:29:01.9875276Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-06-01T21:29:01.9875771Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-06-01T21:29:01.9876272Z * [new branch] gh/jamesjwu/151/base -> origin/gh/jamesjwu/151/base 2025-06-01T21:29:01.9876774Z * [new branch] gh/jamesjwu/151/head -> origin/gh/jamesjwu/151/head 2025-06-01T21:29:01.9877273Z * [new branch] gh/jamesjwu/151/orig -> origin/gh/jamesjwu/151/orig 2025-06-01T21:29:01.9877768Z * [new branch] gh/jamesjwu/152/base -> origin/gh/jamesjwu/152/base 2025-06-01T21:29:01.9878327Z * [new branch] gh/jamesjwu/152/head -> origin/gh/jamesjwu/152/head 2025-06-01T21:29:01.9878875Z * [new branch] gh/jamesjwu/152/orig -> origin/gh/jamesjwu/152/orig 2025-06-01T21:29:01.9879417Z * [new branch] gh/jamesjwu/153/base -> origin/gh/jamesjwu/153/base 2025-06-01T21:29:01.9879960Z * [new branch] gh/jamesjwu/153/head -> origin/gh/jamesjwu/153/head 2025-06-01T21:29:02.0351337Z * [new branch] gh/jamesjwu/153/orig -> origin/gh/jamesjwu/153/orig 2025-06-01T21:29:02.0351951Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-06-01T21:29:02.0352803Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-06-01T21:29:02.0353305Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-06-01T21:29:02.0353816Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-06-01T21:29:02.0354335Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-06-01T21:29:02.0354823Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-06-01T21:29:02.0355325Z * [new branch] gh/jamesjwu/156/base -> origin/gh/jamesjwu/156/base 2025-06-01T21:29:02.0355810Z * [new branch] gh/jamesjwu/156/head -> origin/gh/jamesjwu/156/head 2025-06-01T21:29:02.0356315Z * [new branch] gh/jamesjwu/156/orig -> origin/gh/jamesjwu/156/orig 2025-06-01T21:29:02.0356805Z * [new branch] gh/jamesjwu/157/base -> origin/gh/jamesjwu/157/base 2025-06-01T21:29:02.0357300Z * [new branch] gh/jamesjwu/157/head -> origin/gh/jamesjwu/157/head 2025-06-01T21:29:02.0357804Z * [new branch] gh/jamesjwu/157/orig -> origin/gh/jamesjwu/157/orig 2025-06-01T21:29:02.0358344Z * [new branch] gh/jamesjwu/158/base -> origin/gh/jamesjwu/158/base 2025-06-01T21:29:02.0359050Z * [new branch] gh/jamesjwu/158/head -> origin/gh/jamesjwu/158/head 2025-06-01T21:29:02.0359546Z * [new branch] gh/jamesjwu/158/orig -> origin/gh/jamesjwu/158/orig 2025-06-01T21:29:02.0360050Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-06-01T21:29:02.0360552Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-06-01T21:29:02.0361043Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-06-01T21:29:02.0361553Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-06-01T21:29:02.0362043Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-06-01T21:29:02.0362542Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-06-01T21:29:02.0363032Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-06-01T21:29:02.0363520Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-06-01T21:29:02.0364008Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-06-01T21:29:02.0364531Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-06-01T21:29:02.0365066Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-06-01T21:29:02.0365622Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-06-01T21:29:02.0366114Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-06-01T21:29:02.0366607Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-06-01T21:29:02.0367087Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-06-01T21:29:02.0367577Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-06-01T21:29:02.0368061Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-06-01T21:29:02.0368545Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-06-01T21:29:02.0369042Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-06-01T21:29:02.0369524Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-06-01T21:29:02.0370019Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-06-01T21:29:02.0370620Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-06-01T21:29:02.0371118Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-06-01T21:29:02.0371613Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-06-01T21:29:02.0372101Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-06-01T21:29:02.0372591Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-06-01T21:29:02.0373070Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-06-01T21:29:02.0373558Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-06-01T21:29:02.0374050Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-06-01T21:29:02.0374532Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-06-01T21:29:02.0375018Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-06-01T21:29:02.0842846Z * [new branch] gh/jamesjwu/97/base -> origin/gh/jamesjwu/97/base 2025-06-01T21:29:02.0843402Z * [new branch] gh/jamesjwu/97/head -> origin/gh/jamesjwu/97/head 2025-06-01T21:29:02.0844153Z * [new branch] gh/jamesjwu/97/orig -> origin/gh/jamesjwu/97/orig 2025-06-01T21:29:02.0844693Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-06-01T21:29:02.0845250Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-06-01T21:29:02.0845738Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-06-01T21:29:02.0846230Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-06-01T21:29:02.0846750Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-06-01T21:29:02.0847232Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-06-01T21:29:02.0847720Z * [new branch] gh/janeyx99/222/base -> origin/gh/janeyx99/222/base 2025-06-01T21:29:02.0848212Z * [new branch] gh/janeyx99/222/head -> origin/gh/janeyx99/222/head 2025-06-01T21:29:02.0848707Z * [new branch] gh/janeyx99/222/orig -> origin/gh/janeyx99/222/orig 2025-06-01T21:29:02.0849190Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-06-01T21:29:02.0849687Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-06-01T21:29:02.0850176Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-06-01T21:29:02.0850725Z * [new branch] gh/janeyx99/239/base -> origin/gh/janeyx99/239/base 2025-06-01T21:29:02.0851309Z * [new branch] gh/janeyx99/239/head -> origin/gh/janeyx99/239/head 2025-06-01T21:29:02.0851825Z * [new branch] gh/janeyx99/239/orig -> origin/gh/janeyx99/239/orig 2025-06-01T21:29:02.0852308Z * [new branch] gh/janeyx99/240/base -> origin/gh/janeyx99/240/base 2025-06-01T21:29:02.0852815Z * [new branch] gh/janeyx99/240/head -> origin/gh/janeyx99/240/head 2025-06-01T21:29:02.0853299Z * [new branch] gh/janeyx99/240/orig -> origin/gh/janeyx99/240/orig 2025-06-01T21:29:02.0853797Z * [new branch] gh/janeyx99/241/base -> origin/gh/janeyx99/241/base 2025-06-01T21:29:02.0854280Z * [new branch] gh/janeyx99/241/head -> origin/gh/janeyx99/241/head 2025-06-01T21:29:02.0854767Z * [new branch] gh/janeyx99/241/orig -> origin/gh/janeyx99/241/orig 2025-06-01T21:29:02.0855404Z * [new branch] gh/janeyx99/242/base -> origin/gh/janeyx99/242/base 2025-06-01T21:29:02.0855897Z * [new branch] gh/janeyx99/242/head -> origin/gh/janeyx99/242/head 2025-06-01T21:29:02.0856392Z * [new branch] gh/janeyx99/242/orig -> origin/gh/janeyx99/242/orig 2025-06-01T21:29:02.0856878Z * [new branch] gh/janeyx99/243/base -> origin/gh/janeyx99/243/base 2025-06-01T21:29:02.0857377Z * [new branch] gh/janeyx99/243/head -> origin/gh/janeyx99/243/head 2025-06-01T21:29:02.0857874Z * [new branch] gh/janeyx99/243/orig -> origin/gh/janeyx99/243/orig 2025-06-01T21:29:02.0858359Z * [new branch] gh/janeyx99/244/base -> origin/gh/janeyx99/244/base 2025-06-01T21:29:02.0858847Z * [new branch] gh/janeyx99/244/head -> origin/gh/janeyx99/244/head 2025-06-01T21:29:02.0859328Z * [new branch] gh/janeyx99/244/orig -> origin/gh/janeyx99/244/orig 2025-06-01T21:29:02.0859834Z * [new branch] gh/janeyx99/245/base -> origin/gh/janeyx99/245/base 2025-06-01T21:29:02.0860326Z * [new branch] gh/janeyx99/245/head -> origin/gh/janeyx99/245/head 2025-06-01T21:29:02.0860805Z * [new branch] gh/janeyx99/245/orig -> origin/gh/janeyx99/245/orig 2025-06-01T21:29:02.0861400Z * [new branch] gh/janeyx99/246/base -> origin/gh/janeyx99/246/base 2025-06-01T21:29:02.0861940Z * [new branch] gh/janeyx99/246/head -> origin/gh/janeyx99/246/head 2025-06-01T21:29:02.0862482Z * [new branch] gh/janeyx99/246/orig -> origin/gh/janeyx99/246/orig 2025-06-01T21:29:02.0863017Z * [new branch] gh/janeyx99/247/base -> origin/gh/janeyx99/247/base 2025-06-01T21:29:02.0863516Z * [new branch] gh/janeyx99/247/head -> origin/gh/janeyx99/247/head 2025-06-01T21:29:02.0864009Z * [new branch] gh/janeyx99/247/orig -> origin/gh/janeyx99/247/orig 2025-06-01T21:29:02.0864504Z * [new branch] gh/janeyx99/248/base -> origin/gh/janeyx99/248/base 2025-06-01T21:29:02.0865001Z * [new branch] gh/janeyx99/248/head -> origin/gh/janeyx99/248/head 2025-06-01T21:29:02.0865483Z * [new branch] gh/janeyx99/248/orig -> origin/gh/janeyx99/248/orig 2025-06-01T21:29:02.0865984Z * [new branch] gh/janeyx99/249/base -> origin/gh/janeyx99/249/base 2025-06-01T21:29:02.0866472Z * [new branch] gh/janeyx99/249/head -> origin/gh/janeyx99/249/head 2025-06-01T21:29:02.1319775Z * [new branch] gh/janeyx99/249/orig -> origin/gh/janeyx99/249/orig 2025-06-01T21:29:02.1320369Z * [new branch] gh/janeyx99/250/base -> origin/gh/janeyx99/250/base 2025-06-01T21:29:02.1320879Z * [new branch] gh/janeyx99/250/head -> origin/gh/janeyx99/250/head 2025-06-01T21:29:02.1321398Z * [new branch] gh/janeyx99/250/orig -> origin/gh/janeyx99/250/orig 2025-06-01T21:29:02.1321904Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-06-01T21:29:02.1322391Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-06-01T21:29:02.1322877Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-06-01T21:29:02.1323433Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-06-01T21:29:02.1324000Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-06-01T21:29:02.1324521Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-06-01T21:29:02.1325041Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-06-01T21:29:02.1325564Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-06-01T21:29:02.1326336Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-06-01T21:29:02.1326859Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-06-01T21:29:02.1327392Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-06-01T21:29:02.1327909Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-06-01T21:29:02.1328435Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-06-01T21:29:02.1328949Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-06-01T21:29:02.1329475Z * [new branch] gh/jansel/514/base -> origin/gh/jansel/514/base 2025-06-01T21:29:02.1330029Z * [new branch] gh/jansel/514/head -> origin/gh/jansel/514/head 2025-06-01T21:29:02.1330558Z * [new branch] gh/jansel/514/orig -> origin/gh/jansel/514/orig 2025-06-01T21:29:02.1331088Z * [new branch] gh/jansel/515/base -> origin/gh/jansel/515/base 2025-06-01T21:29:02.1331606Z * [new branch] gh/jansel/515/head -> origin/gh/jansel/515/head 2025-06-01T21:29:02.1332130Z * [new branch] gh/jansel/515/orig -> origin/gh/jansel/515/orig 2025-06-01T21:29:02.1332658Z * [new branch] gh/jansel/516/base -> origin/gh/jansel/516/base 2025-06-01T21:29:02.1333325Z * [new branch] gh/jansel/516/head -> origin/gh/jansel/516/head 2025-06-01T21:29:02.1333868Z * [new branch] gh/jansel/516/orig -> origin/gh/jansel/516/orig 2025-06-01T21:29:02.1334389Z * [new branch] gh/jansel/517/base -> origin/gh/jansel/517/base 2025-06-01T21:29:02.1334878Z * [new branch] gh/jansel/517/head -> origin/gh/jansel/517/head 2025-06-01T21:29:02.1335361Z * [new branch] gh/jansel/517/orig -> origin/gh/jansel/517/orig 2025-06-01T21:29:02.1335838Z * [new branch] gh/jansel/518/base -> origin/gh/jansel/518/base 2025-06-01T21:29:02.1336322Z * [new branch] gh/jansel/518/head -> origin/gh/jansel/518/head 2025-06-01T21:29:02.1336792Z * [new branch] gh/jansel/518/orig -> origin/gh/jansel/518/orig 2025-06-01T21:29:02.1337306Z * [new branch] gh/jbschlosser/208/base -> origin/gh/jbschlosser/208/base 2025-06-01T21:29:02.1337833Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-06-01T21:29:02.1338370Z * [new branch] gh/jbschlosser/208/orig -> origin/gh/jbschlosser/208/orig 2025-06-01T21:29:02.1338902Z * [new branch] gh/jbschlosser/214/base -> origin/gh/jbschlosser/214/base 2025-06-01T21:29:02.1339428Z * [new branch] gh/jbschlosser/214/head -> origin/gh/jbschlosser/214/head 2025-06-01T21:29:02.1340008Z * [new branch] gh/jbschlosser/214/orig -> origin/gh/jbschlosser/214/orig 2025-06-01T21:29:02.1340585Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-06-01T21:29:02.1341165Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-06-01T21:29:02.1341693Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-06-01T21:29:02.1342216Z * [new branch] gh/jbschlosser/228/base -> origin/gh/jbschlosser/228/base 2025-06-01T21:29:02.1342746Z * [new branch] gh/jbschlosser/228/head -> origin/gh/jbschlosser/228/head 2025-06-01T21:29:02.1343277Z * [new branch] gh/jbschlosser/228/orig -> origin/gh/jbschlosser/228/orig 2025-06-01T21:29:02.1343806Z * [new branch] gh/jbschlosser/229/base -> origin/gh/jbschlosser/229/base 2025-06-01T21:29:02.1796482Z * [new branch] gh/jbschlosser/229/head -> origin/gh/jbschlosser/229/head 2025-06-01T21:29:02.1797474Z * [new branch] gh/jbschlosser/229/orig -> origin/gh/jbschlosser/229/orig 2025-06-01T21:29:02.1798157Z * [new branch] gh/jbschlosser/232/base -> origin/gh/jbschlosser/232/base 2025-06-01T21:29:02.1798795Z * [new branch] gh/jbschlosser/232/head -> origin/gh/jbschlosser/232/head 2025-06-01T21:29:02.1799344Z * [new branch] gh/jbschlosser/232/orig -> origin/gh/jbschlosser/232/orig 2025-06-01T21:29:02.1799873Z * [new branch] gh/jbschlosser/233/base -> origin/gh/jbschlosser/233/base 2025-06-01T21:29:02.1800400Z * [new branch] gh/jbschlosser/233/head -> origin/gh/jbschlosser/233/head 2025-06-01T21:29:02.1800925Z * [new branch] gh/jbschlosser/233/orig -> origin/gh/jbschlosser/233/orig 2025-06-01T21:29:02.1801448Z * [new branch] gh/jbschlosser/234/base -> origin/gh/jbschlosser/234/base 2025-06-01T21:29:02.1801976Z * [new branch] gh/jbschlosser/234/head -> origin/gh/jbschlosser/234/head 2025-06-01T21:29:02.1802510Z * [new branch] gh/jbschlosser/234/orig -> origin/gh/jbschlosser/234/orig 2025-06-01T21:29:02.1803032Z * [new branch] gh/jbschlosser/235/base -> origin/gh/jbschlosser/235/base 2025-06-01T21:29:02.1803567Z * [new branch] gh/jbschlosser/235/head -> origin/gh/jbschlosser/235/head 2025-06-01T21:29:02.1804213Z * [new branch] gh/jbschlosser/235/orig -> origin/gh/jbschlosser/235/orig 2025-06-01T21:29:02.1804739Z * [new branch] gh/jbschlosser/236/base -> origin/gh/jbschlosser/236/base 2025-06-01T21:29:02.1805274Z * [new branch] gh/jbschlosser/236/head -> origin/gh/jbschlosser/236/head 2025-06-01T21:29:02.1805803Z * [new branch] gh/jbschlosser/236/orig -> origin/gh/jbschlosser/236/orig 2025-06-01T21:29:02.1806343Z * [new branch] gh/jbschlosser/237/base -> origin/gh/jbschlosser/237/base 2025-06-01T21:29:02.1806885Z * [new branch] gh/jbschlosser/237/head -> origin/gh/jbschlosser/237/head 2025-06-01T21:29:02.1807409Z * [new branch] gh/jbschlosser/237/orig -> origin/gh/jbschlosser/237/orig 2025-06-01T21:29:02.1807943Z * [new branch] gh/jbschlosser/238/base -> origin/gh/jbschlosser/238/base 2025-06-01T21:29:02.1808472Z * [new branch] gh/jbschlosser/238/head -> origin/gh/jbschlosser/238/head 2025-06-01T21:29:02.1809002Z * [new branch] gh/jbschlosser/238/orig -> origin/gh/jbschlosser/238/orig 2025-06-01T21:29:02.1809540Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-06-01T21:29:02.1810062Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-06-01T21:29:02.1810606Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-06-01T21:29:02.1811237Z * [new branch] gh/jbschlosser/240/base -> origin/gh/jbschlosser/240/base 2025-06-01T21:29:02.1811776Z * [new branch] gh/jbschlosser/240/head -> origin/gh/jbschlosser/240/head 2025-06-01T21:29:02.1812316Z * [new branch] gh/jbschlosser/240/orig -> origin/gh/jbschlosser/240/orig 2025-06-01T21:29:02.1812848Z * [new branch] gh/jbschlosser/241/base -> origin/gh/jbschlosser/241/base 2025-06-01T21:29:02.1813381Z * [new branch] gh/jbschlosser/241/head -> origin/gh/jbschlosser/241/head 2025-06-01T21:29:02.1813908Z * [new branch] gh/jbschlosser/241/orig -> origin/gh/jbschlosser/241/orig 2025-06-01T21:29:02.1814442Z * [new branch] gh/jbschlosser/242/base -> origin/gh/jbschlosser/242/base 2025-06-01T21:29:02.1815021Z * [new branch] gh/jbschlosser/242/head -> origin/gh/jbschlosser/242/head 2025-06-01T21:29:02.1815600Z * [new branch] gh/jbschlosser/242/orig -> origin/gh/jbschlosser/242/orig 2025-06-01T21:29:02.1816286Z * [new branch] gh/jbschlosser/243/base -> origin/gh/jbschlosser/243/base 2025-06-01T21:29:02.1816814Z * [new branch] gh/jbschlosser/243/head -> origin/gh/jbschlosser/243/head 2025-06-01T21:29:02.1817358Z * [new branch] gh/jbschlosser/243/orig -> origin/gh/jbschlosser/243/orig 2025-06-01T21:29:02.1817910Z * [new branch] gh/jbschlosser/244/base -> origin/gh/jbschlosser/244/base 2025-06-01T21:29:02.1818433Z * [new branch] gh/jbschlosser/244/head -> origin/gh/jbschlosser/244/head 2025-06-01T21:29:02.1818971Z * [new branch] gh/jbschlosser/244/orig -> origin/gh/jbschlosser/244/orig 2025-06-01T21:29:02.1819493Z * [new branch] gh/jbschlosser/245/base -> origin/gh/jbschlosser/245/base 2025-06-01T21:29:02.1820026Z * [new branch] gh/jbschlosser/245/head -> origin/gh/jbschlosser/245/head 2025-06-01T21:29:02.1820564Z * [new branch] gh/jbschlosser/245/orig -> origin/gh/jbschlosser/245/orig 2025-06-01T21:29:02.1821097Z * [new branch] gh/jbschlosser/246/base -> origin/gh/jbschlosser/246/base 2025-06-01T21:29:02.2265881Z * [new branch] gh/jbschlosser/246/head -> origin/gh/jbschlosser/246/head 2025-06-01T21:29:02.2266469Z * [new branch] gh/jbschlosser/246/orig -> origin/gh/jbschlosser/246/orig 2025-06-01T21:29:02.2267282Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-06-01T21:29:02.2267949Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-06-01T21:29:02.2268482Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-06-01T21:29:02.2269016Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-06-01T21:29:02.2269547Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-06-01T21:29:02.2270097Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-06-01T21:29:02.2270630Z * [new branch] gh/jerryzh168/855/base -> origin/gh/jerryzh168/855/base 2025-06-01T21:29:02.2271136Z * [new branch] gh/jerryzh168/855/head -> origin/gh/jerryzh168/855/head 2025-06-01T21:29:02.2271656Z * [new branch] gh/jerryzh168/855/orig -> origin/gh/jerryzh168/855/orig 2025-06-01T21:29:02.2272162Z * [new branch] gh/jerryzh168/856/base -> origin/gh/jerryzh168/856/base 2025-06-01T21:29:02.2272670Z * [new branch] gh/jerryzh168/856/head -> origin/gh/jerryzh168/856/head 2025-06-01T21:29:02.2273168Z * [new branch] gh/jerryzh168/856/orig -> origin/gh/jerryzh168/856/orig 2025-06-01T21:29:02.2273718Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-06-01T21:29:02.2274282Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-06-01T21:29:02.2274784Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-06-01T21:29:02.2275285Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-06-01T21:29:02.2275778Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-06-01T21:29:02.2276297Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-06-01T21:29:02.2276787Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-06-01T21:29:02.2277296Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-06-01T21:29:02.2277792Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-06-01T21:29:02.2278289Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-06-01T21:29:02.2279671Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-06-01T21:29:02.2280224Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-06-01T21:29:02.2280744Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-06-01T21:29:02.2281253Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-06-01T21:29:02.2281746Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-06-01T21:29:02.2282258Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-06-01T21:29:02.2282768Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-06-01T21:29:02.2283293Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-06-01T21:29:02.2283842Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-06-01T21:29:02.2284363Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-06-01T21:29:02.2284891Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-06-01T21:29:02.2285454Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-06-01T21:29:02.2286139Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-06-01T21:29:02.2286672Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-06-01T21:29:02.2287195Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-06-01T21:29:02.2287721Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-06-01T21:29:02.2288234Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-06-01T21:29:02.2288760Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-06-01T21:29:02.2289281Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-06-01T21:29:02.2289796Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-06-01T21:29:02.2290329Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-06-01T21:29:02.2290840Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-06-01T21:29:02.2764096Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-06-01T21:29:02.2764619Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-06-01T21:29:02.2765110Z * [new branch] gh/kwen2501/128/base -> origin/gh/kwen2501/128/base 2025-06-01T21:29:02.2765613Z * [new branch] gh/kwen2501/128/head -> origin/gh/kwen2501/128/head 2025-06-01T21:29:02.2766120Z * [new branch] gh/kwen2501/128/orig -> origin/gh/kwen2501/128/orig 2025-06-01T21:29:02.2766614Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-06-01T21:29:02.2767100Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-06-01T21:29:02.2767586Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-06-01T21:29:02.2768136Z * [new branch] gh/kwen2501/131/base -> origin/gh/kwen2501/131/base 2025-06-01T21:29:02.2768667Z * [new branch] gh/kwen2501/131/head -> origin/gh/kwen2501/131/head 2025-06-01T21:29:02.2769155Z * [new branch] gh/kwen2501/131/orig -> origin/gh/kwen2501/131/orig 2025-06-01T21:29:02.2769636Z * [new branch] gh/kwen2501/132/base -> origin/gh/kwen2501/132/base 2025-06-01T21:29:02.2770312Z * [new branch] gh/kwen2501/132/head -> origin/gh/kwen2501/132/head 2025-06-01T21:29:02.2770807Z * [new branch] gh/kwen2501/132/orig -> origin/gh/kwen2501/132/orig 2025-06-01T21:29:02.2771290Z * [new branch] gh/kwen2501/134/base -> origin/gh/kwen2501/134/base 2025-06-01T21:29:02.2771794Z * [new branch] gh/kwen2501/134/head -> origin/gh/kwen2501/134/head 2025-06-01T21:29:02.2772280Z * [new branch] gh/kwen2501/134/orig -> origin/gh/kwen2501/134/orig 2025-06-01T21:29:02.2772773Z * [new branch] gh/kwen2501/135/base -> origin/gh/kwen2501/135/base 2025-06-01T21:29:02.2773261Z * [new branch] gh/kwen2501/135/head -> origin/gh/kwen2501/135/head 2025-06-01T21:29:02.2773738Z * [new branch] gh/kwen2501/135/orig -> origin/gh/kwen2501/135/orig 2025-06-01T21:29:02.2774272Z * [new branch] gh/kwen2501/136/base -> origin/gh/kwen2501/136/base 2025-06-01T21:29:02.2774802Z * [new branch] gh/kwen2501/136/head -> origin/gh/kwen2501/136/head 2025-06-01T21:29:02.2775294Z * [new branch] gh/kwen2501/136/orig -> origin/gh/kwen2501/136/orig 2025-06-01T21:29:02.2775785Z * [new branch] gh/kwen2501/137/base -> origin/gh/kwen2501/137/base 2025-06-01T21:29:02.2776959Z * [new branch] gh/kwen2501/137/head -> origin/gh/kwen2501/137/head 2025-06-01T21:29:02.2777463Z * [new branch] gh/kwen2501/137/orig -> origin/gh/kwen2501/137/orig 2025-06-01T21:29:02.2777949Z * [new branch] gh/kwen2501/138/base -> origin/gh/kwen2501/138/base 2025-06-01T21:29:02.2778447Z * [new branch] gh/kwen2501/138/head -> origin/gh/kwen2501/138/head 2025-06-01T21:29:02.2778944Z * [new branch] gh/kwen2501/138/orig -> origin/gh/kwen2501/138/orig 2025-06-01T21:29:02.2779424Z * [new branch] gh/kwen2501/141/base -> origin/gh/kwen2501/141/base 2025-06-01T21:29:02.2779942Z * [new branch] gh/kwen2501/141/head -> origin/gh/kwen2501/141/head 2025-06-01T21:29:02.2780492Z * [new branch] gh/kwen2501/141/orig -> origin/gh/kwen2501/141/orig 2025-06-01T21:29:02.2781022Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-06-01T21:29:02.2781525Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-06-01T21:29:02.2782006Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-06-01T21:29:02.2782491Z * [new branch] gh/kwen2501/143/base -> origin/gh/kwen2501/143/base 2025-06-01T21:29:02.2782968Z * [new branch] gh/kwen2501/143/head -> origin/gh/kwen2501/143/head 2025-06-01T21:29:02.2783456Z * [new branch] gh/kwen2501/143/orig -> origin/gh/kwen2501/143/orig 2025-06-01T21:29:02.2783952Z * [new branch] gh/kwen2501/144/base -> origin/gh/kwen2501/144/base 2025-06-01T21:29:02.2784429Z * [new branch] gh/kwen2501/144/head -> origin/gh/kwen2501/144/head 2025-06-01T21:29:02.2784917Z * [new branch] gh/kwen2501/144/orig -> origin/gh/kwen2501/144/orig 2025-06-01T21:29:02.2785402Z * [new branch] gh/kwen2501/145/base -> origin/gh/kwen2501/145/base 2025-06-01T21:29:02.2785901Z * [new branch] gh/kwen2501/145/head -> origin/gh/kwen2501/145/head 2025-06-01T21:29:02.2786426Z * [new branch] gh/kwen2501/145/orig -> origin/gh/kwen2501/145/orig 2025-06-01T21:29:02.2786959Z * [new branch] gh/kwen2501/146/base -> origin/gh/kwen2501/146/base 2025-06-01T21:29:02.2787514Z * [new branch] gh/kwen2501/146/head -> origin/gh/kwen2501/146/head 2025-06-01T21:29:02.2787996Z * [new branch] gh/kwen2501/146/orig -> origin/gh/kwen2501/146/orig 2025-06-01T21:29:02.3217226Z * [new branch] gh/kwen2501/147/base -> origin/gh/kwen2501/147/base 2025-06-01T21:29:02.3217765Z * [new branch] gh/kwen2501/147/head -> origin/gh/kwen2501/147/head 2025-06-01T21:29:02.3218268Z * [new branch] gh/kwen2501/147/orig -> origin/gh/kwen2501/147/orig 2025-06-01T21:29:02.3218793Z * [new branch] gh/kwen2501/148/base -> origin/gh/kwen2501/148/base 2025-06-01T21:29:02.3219296Z * [new branch] gh/kwen2501/148/head -> origin/gh/kwen2501/148/head 2025-06-01T21:29:02.3219786Z * [new branch] gh/kwen2501/148/orig -> origin/gh/kwen2501/148/orig 2025-06-01T21:29:02.3220284Z * [new branch] gh/kwen2501/149/base -> origin/gh/kwen2501/149/base 2025-06-01T21:29:02.3220770Z * [new branch] gh/kwen2501/149/head -> origin/gh/kwen2501/149/head 2025-06-01T21:29:02.3221267Z * [new branch] gh/kwen2501/149/orig -> origin/gh/kwen2501/149/orig 2025-06-01T21:29:02.3221821Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-06-01T21:29:02.3222346Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-06-01T21:29:02.3222838Z * [new branch] gh/kwen2501/150/base -> origin/gh/kwen2501/150/base 2025-06-01T21:29:02.3223907Z * [new branch] gh/kwen2501/150/head -> origin/gh/kwen2501/150/head 2025-06-01T21:29:02.3224418Z * [new branch] gh/kwen2501/150/orig -> origin/gh/kwen2501/150/orig 2025-06-01T21:29:02.3224906Z * [new branch] gh/kwen2501/151/base -> origin/gh/kwen2501/151/base 2025-06-01T21:29:02.3225410Z * [new branch] gh/kwen2501/151/head -> origin/gh/kwen2501/151/head 2025-06-01T21:29:02.3225897Z * [new branch] gh/kwen2501/151/orig -> origin/gh/kwen2501/151/orig 2025-06-01T21:29:02.3226391Z * [new branch] gh/kwen2501/152/base -> origin/gh/kwen2501/152/base 2025-06-01T21:29:02.3226884Z * [new branch] gh/kwen2501/152/head -> origin/gh/kwen2501/152/head 2025-06-01T21:29:02.3227443Z * [new branch] gh/kwen2501/152/orig -> origin/gh/kwen2501/152/orig 2025-06-01T21:29:02.3227999Z * [new branch] gh/kwen2501/153/base -> origin/gh/kwen2501/153/base 2025-06-01T21:29:02.3228525Z * [new branch] gh/kwen2501/153/head -> origin/gh/kwen2501/153/head 2025-06-01T21:29:02.3229027Z * [new branch] gh/kwen2501/153/orig -> origin/gh/kwen2501/153/orig 2025-06-01T21:29:02.3229519Z * [new branch] gh/kwen2501/154/base -> origin/gh/kwen2501/154/base 2025-06-01T21:29:02.3229997Z * [new branch] gh/kwen2501/154/head -> origin/gh/kwen2501/154/head 2025-06-01T21:29:02.3230485Z * [new branch] gh/kwen2501/154/orig -> origin/gh/kwen2501/154/orig 2025-06-01T21:29:02.3230972Z * [new branch] gh/kwen2501/155/base -> origin/gh/kwen2501/155/base 2025-06-01T21:29:02.3231458Z * [new branch] gh/kwen2501/155/head -> origin/gh/kwen2501/155/head 2025-06-01T21:29:02.3231947Z * [new branch] gh/kwen2501/155/orig -> origin/gh/kwen2501/155/orig 2025-06-01T21:29:02.3232425Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-06-01T21:29:02.3232911Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-06-01T21:29:02.3233398Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-06-01T21:29:02.3233932Z * [new branch] gh/kwen2501/157/base -> origin/gh/kwen2501/157/base 2025-06-01T21:29:02.3234466Z * [new branch] gh/kwen2501/157/head -> origin/gh/kwen2501/157/head 2025-06-01T21:29:02.3234946Z * [new branch] gh/kwen2501/157/orig -> origin/gh/kwen2501/157/orig 2025-06-01T21:29:02.3235580Z * [new branch] gh/kwen2501/158/base -> origin/gh/kwen2501/158/base 2025-06-01T21:29:02.3236066Z * [new branch] gh/kwen2501/158/head -> origin/gh/kwen2501/158/head 2025-06-01T21:29:02.3236556Z * [new branch] gh/kwen2501/158/orig -> origin/gh/kwen2501/158/orig 2025-06-01T21:29:02.3237040Z * [new branch] gh/kwen2501/159/base -> origin/gh/kwen2501/159/base 2025-06-01T21:29:02.3237529Z * [new branch] gh/kwen2501/159/head -> origin/gh/kwen2501/159/head 2025-06-01T21:29:02.3238015Z * [new branch] gh/kwen2501/159/orig -> origin/gh/kwen2501/159/orig 2025-06-01T21:29:02.3238500Z * [new branch] gh/kwen2501/160/base -> origin/gh/kwen2501/160/base 2025-06-01T21:29:02.3238984Z * [new branch] gh/kwen2501/160/head -> origin/gh/kwen2501/160/head 2025-06-01T21:29:02.3239465Z * [new branch] gh/kwen2501/160/orig -> origin/gh/kwen2501/160/orig 2025-06-01T21:29:02.3239994Z * [new branch] gh/kwen2501/161/base -> origin/gh/kwen2501/161/base 2025-06-01T21:29:02.3240513Z * [new branch] gh/kwen2501/161/head -> origin/gh/kwen2501/161/head 2025-06-01T21:29:02.3693855Z * [new branch] gh/kwen2501/162/base -> origin/gh/kwen2501/162/base 2025-06-01T21:29:02.3694938Z * [new branch] gh/kwen2501/162/head -> origin/gh/kwen2501/162/head 2025-06-01T21:29:02.3695552Z * [new branch] gh/kwen2501/162/orig -> origin/gh/kwen2501/162/orig 2025-06-01T21:29:02.3696129Z * [new branch] gh/kwen2501/163/base -> origin/gh/kwen2501/163/base 2025-06-01T21:29:02.3696623Z * [new branch] gh/kwen2501/163/head -> origin/gh/kwen2501/163/head 2025-06-01T21:29:02.3697103Z * [new branch] gh/kwen2501/163/orig -> origin/gh/kwen2501/163/orig 2025-06-01T21:29:02.3697635Z * [new branch] gh/laithsakka/113/base -> origin/gh/laithsakka/113/base 2025-06-01T21:29:02.3698161Z * [new branch] gh/laithsakka/113/head -> origin/gh/laithsakka/113/head 2025-06-01T21:29:02.3698677Z * [new branch] gh/laithsakka/113/orig -> origin/gh/laithsakka/113/orig 2025-06-01T21:29:02.3699200Z * [new branch] gh/laithsakka/114/base -> origin/gh/laithsakka/114/base 2025-06-01T21:29:02.3699712Z * [new branch] gh/laithsakka/114/head -> origin/gh/laithsakka/114/head 2025-06-01T21:29:02.3700227Z * [new branch] gh/laithsakka/114/orig -> origin/gh/laithsakka/114/orig 2025-06-01T21:29:02.3700750Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-06-01T21:29:02.3701310Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-06-01T21:29:02.3701877Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-06-01T21:29:02.3702391Z * [new branch] gh/laithsakka/118/base -> origin/gh/laithsakka/118/base 2025-06-01T21:29:02.3702906Z * [new branch] gh/laithsakka/118/head -> origin/gh/laithsakka/118/head 2025-06-01T21:29:02.3703413Z * [new branch] gh/laithsakka/118/orig -> origin/gh/laithsakka/118/orig 2025-06-01T21:29:02.3703934Z * [new branch] gh/laithsakka/119/base -> origin/gh/laithsakka/119/base 2025-06-01T21:29:02.3704450Z * [new branch] gh/laithsakka/119/head -> origin/gh/laithsakka/119/head 2025-06-01T21:29:02.3704960Z * [new branch] gh/laithsakka/119/orig -> origin/gh/laithsakka/119/orig 2025-06-01T21:29:02.3705477Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-06-01T21:29:02.3705985Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-06-01T21:29:02.3706659Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-06-01T21:29:02.3707180Z * [new branch] gh/laithsakka/122/base -> origin/gh/laithsakka/122/base 2025-06-01T21:29:02.3707805Z * [new branch] gh/laithsakka/122/head -> origin/gh/laithsakka/122/head 2025-06-01T21:29:02.3708374Z * [new branch] gh/laithsakka/122/orig -> origin/gh/laithsakka/122/orig 2025-06-01T21:29:02.3708892Z * [new branch] gh/laithsakka/124/base -> origin/gh/laithsakka/124/base 2025-06-01T21:29:02.3709414Z * [new branch] gh/laithsakka/124/head -> origin/gh/laithsakka/124/head 2025-06-01T21:29:02.3709928Z * [new branch] gh/laithsakka/124/orig -> origin/gh/laithsakka/124/orig 2025-06-01T21:29:02.3710437Z * [new branch] gh/laithsakka/127/base -> origin/gh/laithsakka/127/base 2025-06-01T21:29:02.3710953Z * [new branch] gh/laithsakka/127/head -> origin/gh/laithsakka/127/head 2025-06-01T21:29:02.3711471Z * [new branch] gh/laithsakka/127/orig -> origin/gh/laithsakka/127/orig 2025-06-01T21:29:02.3711987Z * [new branch] gh/laithsakka/132/base -> origin/gh/laithsakka/132/base 2025-06-01T21:29:02.3712505Z * [new branch] gh/laithsakka/132/head -> origin/gh/laithsakka/132/head 2025-06-01T21:29:02.3713470Z * [new branch] gh/laithsakka/132/orig -> origin/gh/laithsakka/132/orig 2025-06-01T21:29:02.3714038Z * [new branch] gh/laithsakka/137/base -> origin/gh/laithsakka/137/base 2025-06-01T21:29:02.3714562Z * [new branch] gh/laithsakka/137/head -> origin/gh/laithsakka/137/head 2025-06-01T21:29:02.3715084Z * [new branch] gh/laithsakka/137/orig -> origin/gh/laithsakka/137/orig 2025-06-01T21:29:02.3715595Z * [new branch] gh/laithsakka/138/base -> origin/gh/laithsakka/138/base 2025-06-01T21:29:02.3716118Z * [new branch] gh/laithsakka/138/head -> origin/gh/laithsakka/138/head 2025-06-01T21:29:02.3716638Z * [new branch] gh/laithsakka/138/orig -> origin/gh/laithsakka/138/orig 2025-06-01T21:29:02.3717144Z * [new branch] gh/laithsakka/140/base -> origin/gh/laithsakka/140/base 2025-06-01T21:29:02.3717658Z * [new branch] gh/laithsakka/140/head -> origin/gh/laithsakka/140/head 2025-06-01T21:29:02.3718175Z * [new branch] gh/laithsakka/140/orig -> origin/gh/laithsakka/140/orig 2025-06-01T21:29:02.3718688Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-06-01T21:29:02.4142100Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-06-01T21:29:02.4142720Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-06-01T21:29:02.4143253Z * [new branch] gh/laithsakka/143/base -> origin/gh/laithsakka/143/base 2025-06-01T21:29:02.4143832Z * [new branch] gh/laithsakka/143/head -> origin/gh/laithsakka/143/head 2025-06-01T21:29:02.4144341Z * [new branch] gh/laithsakka/143/orig -> origin/gh/laithsakka/143/orig 2025-06-01T21:29:02.4144857Z * [new branch] gh/laithsakka/144/base -> origin/gh/laithsakka/144/base 2025-06-01T21:29:02.4145381Z * [new branch] gh/laithsakka/144/head -> origin/gh/laithsakka/144/head 2025-06-01T21:29:02.4145901Z * [new branch] gh/laithsakka/144/orig -> origin/gh/laithsakka/144/orig 2025-06-01T21:29:02.4146422Z * [new branch] gh/laithsakka/145/base -> origin/gh/laithsakka/145/base 2025-06-01T21:29:02.4146934Z * [new branch] gh/laithsakka/145/head -> origin/gh/laithsakka/145/head 2025-06-01T21:29:02.4147528Z * [new branch] gh/laithsakka/145/orig -> origin/gh/laithsakka/145/orig 2025-06-01T21:29:02.4148293Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-06-01T21:29:02.4148857Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-06-01T21:29:02.4149382Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-06-01T21:29:02.4149898Z * [new branch] gh/laithsakka/154/base -> origin/gh/laithsakka/154/base 2025-06-01T21:29:02.4150423Z * [new branch] gh/laithsakka/154/head -> origin/gh/laithsakka/154/head 2025-06-01T21:29:02.4150935Z * [new branch] gh/laithsakka/154/orig -> origin/gh/laithsakka/154/orig 2025-06-01T21:29:02.4151456Z * [new branch] gh/laithsakka/155/base -> origin/gh/laithsakka/155/base 2025-06-01T21:29:02.4151975Z * [new branch] gh/laithsakka/155/head -> origin/gh/laithsakka/155/head 2025-06-01T21:29:02.4152489Z * [new branch] gh/laithsakka/155/orig -> origin/gh/laithsakka/155/orig 2025-06-01T21:29:02.4153013Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-06-01T21:29:02.4153523Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-06-01T21:29:02.4154046Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-06-01T21:29:02.4155151Z * [new branch] gh/laithsakka/157/base -> origin/gh/laithsakka/157/base 2025-06-01T21:29:02.4155694Z * [new branch] gh/laithsakka/157/head -> origin/gh/laithsakka/157/head 2025-06-01T21:29:02.4156217Z * [new branch] gh/laithsakka/157/orig -> origin/gh/laithsakka/157/orig 2025-06-01T21:29:02.4156729Z * [new branch] gh/laithsakka/158/base -> origin/gh/laithsakka/158/base 2025-06-01T21:29:02.4157253Z * [new branch] gh/laithsakka/158/head -> origin/gh/laithsakka/158/head 2025-06-01T21:29:02.4157786Z * [new branch] gh/laithsakka/158/orig -> origin/gh/laithsakka/158/orig 2025-06-01T21:29:02.4158302Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-06-01T21:29:02.4158820Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-06-01T21:29:02.4159330Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-06-01T21:29:02.4159851Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-06-01T21:29:02.4160413Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-06-01T21:29:02.4160978Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-06-01T21:29:02.4161495Z * [new branch] gh/laithsakka/161/base -> origin/gh/laithsakka/161/base 2025-06-01T21:29:02.4162003Z * [new branch] gh/laithsakka/161/head -> origin/gh/laithsakka/161/head 2025-06-01T21:29:02.4162537Z * [new branch] gh/laithsakka/161/orig -> origin/gh/laithsakka/161/orig 2025-06-01T21:29:02.4163046Z * [new branch] gh/laithsakka/162/base -> origin/gh/laithsakka/162/base 2025-06-01T21:29:02.4163563Z * [new branch] gh/laithsakka/162/head -> origin/gh/laithsakka/162/head 2025-06-01T21:29:02.4164077Z * [new branch] gh/laithsakka/162/orig -> origin/gh/laithsakka/162/orig 2025-06-01T21:29:02.4164585Z * [new branch] gh/laithsakka/163/base -> origin/gh/laithsakka/163/base 2025-06-01T21:29:02.4165102Z * [new branch] gh/laithsakka/163/head -> origin/gh/laithsakka/163/head 2025-06-01T21:29:02.4165612Z * [new branch] gh/laithsakka/163/orig -> origin/gh/laithsakka/163/orig 2025-06-01T21:29:02.4166131Z * [new branch] gh/laithsakka/164/base -> origin/gh/laithsakka/164/base 2025-06-01T21:29:02.4594831Z * [new branch] gh/laithsakka/164/head -> origin/gh/laithsakka/164/head 2025-06-01T21:29:02.4595398Z * [new branch] gh/laithsakka/164/orig -> origin/gh/laithsakka/164/orig 2025-06-01T21:29:02.4595945Z * [new branch] gh/laithsakka/165/base -> origin/gh/laithsakka/165/base 2025-06-01T21:29:02.4596456Z * [new branch] gh/laithsakka/165/head -> origin/gh/laithsakka/165/head 2025-06-01T21:29:02.4597002Z * [new branch] gh/laithsakka/165/orig -> origin/gh/laithsakka/165/orig 2025-06-01T21:29:02.4597518Z * [new branch] gh/laithsakka/166/base -> origin/gh/laithsakka/166/base 2025-06-01T21:29:02.4598028Z * [new branch] gh/laithsakka/166/head -> origin/gh/laithsakka/166/head 2025-06-01T21:29:02.4598547Z * [new branch] gh/laithsakka/166/orig -> origin/gh/laithsakka/166/orig 2025-06-01T21:29:02.4599065Z * [new branch] gh/laithsakka/167/base -> origin/gh/laithsakka/167/base 2025-06-01T21:29:02.4599597Z * [new branch] gh/laithsakka/167/head -> origin/gh/laithsakka/167/head 2025-06-01T21:29:02.4600110Z * [new branch] gh/laithsakka/167/orig -> origin/gh/laithsakka/167/orig 2025-06-01T21:29:02.4600615Z * [new branch] gh/laithsakka/168/base -> origin/gh/laithsakka/168/base 2025-06-01T21:29:02.4601688Z * [new branch] gh/laithsakka/168/head -> origin/gh/laithsakka/168/head 2025-06-01T21:29:02.4602225Z * [new branch] gh/laithsakka/168/orig -> origin/gh/laithsakka/168/orig 2025-06-01T21:29:02.4602748Z * [new branch] gh/laithsakka/169/base -> origin/gh/laithsakka/169/base 2025-06-01T21:29:02.4603268Z * [new branch] gh/laithsakka/169/head -> origin/gh/laithsakka/169/head 2025-06-01T21:29:02.4603777Z * [new branch] gh/laithsakka/169/orig -> origin/gh/laithsakka/169/orig 2025-06-01T21:29:02.4604298Z * [new branch] gh/laithsakka/170/base -> origin/gh/laithsakka/170/base 2025-06-01T21:29:02.4604812Z * [new branch] gh/laithsakka/170/head -> origin/gh/laithsakka/170/head 2025-06-01T21:29:02.4605326Z * [new branch] gh/laithsakka/170/orig -> origin/gh/laithsakka/170/orig 2025-06-01T21:29:02.4605842Z * [new branch] gh/laithsakka/171/base -> origin/gh/laithsakka/171/base 2025-06-01T21:29:02.4606354Z * [new branch] gh/laithsakka/171/head -> origin/gh/laithsakka/171/head 2025-06-01T21:29:02.4606878Z * [new branch] gh/laithsakka/171/orig -> origin/gh/laithsakka/171/orig 2025-06-01T21:29:02.4607388Z * [new branch] gh/laithsakka/172/base -> origin/gh/laithsakka/172/base 2025-06-01T21:29:02.4607904Z * [new branch] gh/laithsakka/172/head -> origin/gh/laithsakka/172/head 2025-06-01T21:29:02.4608424Z * [new branch] gh/laithsakka/172/orig -> origin/gh/laithsakka/172/orig 2025-06-01T21:29:02.4608940Z * [new branch] gh/laithsakka/173/base -> origin/gh/laithsakka/173/base 2025-06-01T21:29:02.4609461Z * [new branch] gh/laithsakka/173/head -> origin/gh/laithsakka/173/head 2025-06-01T21:29:02.4609971Z * [new branch] gh/laithsakka/173/orig -> origin/gh/laithsakka/173/orig 2025-06-01T21:29:02.4610491Z * [new branch] gh/laithsakka/174/base -> origin/gh/laithsakka/174/base 2025-06-01T21:29:02.4610998Z * [new branch] gh/laithsakka/174/head -> origin/gh/laithsakka/174/head 2025-06-01T21:29:02.4611512Z * [new branch] gh/laithsakka/174/orig -> origin/gh/laithsakka/174/orig 2025-06-01T21:29:02.4612032Z * [new branch] gh/laithsakka/175/base -> origin/gh/laithsakka/175/base 2025-06-01T21:29:02.4612544Z * [new branch] gh/laithsakka/175/head -> origin/gh/laithsakka/175/head 2025-06-01T21:29:02.4613063Z * [new branch] gh/laithsakka/175/orig -> origin/gh/laithsakka/175/orig 2025-06-01T21:29:02.4613709Z * [new branch] gh/laithsakka/176/base -> origin/gh/laithsakka/176/base 2025-06-01T21:29:02.4614232Z * [new branch] gh/laithsakka/176/head -> origin/gh/laithsakka/176/head 2025-06-01T21:29:02.4614755Z * [new branch] gh/laithsakka/176/orig -> origin/gh/laithsakka/176/orig 2025-06-01T21:29:02.4615266Z * [new branch] gh/laithsakka/177/base -> origin/gh/laithsakka/177/base 2025-06-01T21:29:02.4615785Z * [new branch] gh/laithsakka/177/head -> origin/gh/laithsakka/177/head 2025-06-01T21:29:02.4616295Z * [new branch] gh/laithsakka/177/orig -> origin/gh/laithsakka/177/orig 2025-06-01T21:29:02.4616813Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-06-01T21:29:02.4617328Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-06-01T21:29:02.4617845Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-06-01T21:29:02.4618375Z * [new branch] gh/laithsakka/179/base -> origin/gh/laithsakka/179/base 2025-06-01T21:29:02.4618890Z * [new branch] gh/laithsakka/179/head -> origin/gh/laithsakka/179/head 2025-06-01T21:29:02.5063718Z * [new branch] gh/laithsakka/179/orig -> origin/gh/laithsakka/179/orig 2025-06-01T21:29:02.5064338Z * [new branch] gh/laithsakka/180/base -> origin/gh/laithsakka/180/base 2025-06-01T21:29:02.5064854Z * [new branch] gh/laithsakka/180/head -> origin/gh/laithsakka/180/head 2025-06-01T21:29:02.5065381Z * [new branch] gh/laithsakka/180/orig -> origin/gh/laithsakka/180/orig 2025-06-01T21:29:02.5065897Z * [new branch] gh/laithsakka/181/base -> origin/gh/laithsakka/181/base 2025-06-01T21:29:02.5066415Z * [new branch] gh/laithsakka/181/head -> origin/gh/laithsakka/181/head 2025-06-01T21:29:02.5066943Z * [new branch] gh/laithsakka/181/orig -> origin/gh/laithsakka/181/orig 2025-06-01T21:29:02.5067538Z * [new branch] gh/laithsakka/182/base -> origin/gh/laithsakka/182/base 2025-06-01T21:29:02.5068065Z * [new branch] gh/laithsakka/182/head -> origin/gh/laithsakka/182/head 2025-06-01T21:29:02.5068592Z * [new branch] gh/laithsakka/182/orig -> origin/gh/laithsakka/182/orig 2025-06-01T21:29:02.5069121Z * [new branch] gh/laithsakka/183/base -> origin/gh/laithsakka/183/base 2025-06-01T21:29:02.5069642Z * [new branch] gh/laithsakka/183/head -> origin/gh/laithsakka/183/head 2025-06-01T21:29:02.5070159Z * [new branch] gh/laithsakka/183/orig -> origin/gh/laithsakka/183/orig 2025-06-01T21:29:02.5070686Z * [new branch] gh/laithsakka/184/base -> origin/gh/laithsakka/184/base 2025-06-01T21:29:02.5071223Z * [new branch] gh/laithsakka/184/head -> origin/gh/laithsakka/184/head 2025-06-01T21:29:02.5071748Z * [new branch] gh/laithsakka/184/orig -> origin/gh/laithsakka/184/orig 2025-06-01T21:29:02.5072265Z * [new branch] gh/laithsakka/185/base -> origin/gh/laithsakka/185/base 2025-06-01T21:29:02.5072771Z * [new branch] gh/laithsakka/185/head -> origin/gh/laithsakka/185/head 2025-06-01T21:29:02.5073294Z * [new branch] gh/laithsakka/185/orig -> origin/gh/laithsakka/185/orig 2025-06-01T21:29:02.5073805Z * [new branch] gh/laithsakka/186/base -> origin/gh/laithsakka/186/base 2025-06-01T21:29:02.5074330Z * [new branch] gh/laithsakka/186/head -> origin/gh/laithsakka/186/head 2025-06-01T21:29:02.5074843Z * [new branch] gh/laithsakka/186/orig -> origin/gh/laithsakka/186/orig 2025-06-01T21:29:02.5075355Z * [new branch] gh/laithsakka/187/base -> origin/gh/laithsakka/187/base 2025-06-01T21:29:02.5076023Z * [new branch] gh/laithsakka/187/head -> origin/gh/laithsakka/187/head 2025-06-01T21:29:02.5076539Z * [new branch] gh/laithsakka/187/orig -> origin/gh/laithsakka/187/orig 2025-06-01T21:29:02.5077064Z * [new branch] gh/laithsakka/188/base -> origin/gh/laithsakka/188/base 2025-06-01T21:29:02.5077597Z * [new branch] gh/laithsakka/188/head -> origin/gh/laithsakka/188/head 2025-06-01T21:29:02.5078108Z * [new branch] gh/laithsakka/188/orig -> origin/gh/laithsakka/188/orig 2025-06-01T21:29:02.5078636Z * [new branch] gh/laithsakka/189/base -> origin/gh/laithsakka/189/base 2025-06-01T21:29:02.5079145Z * [new branch] gh/laithsakka/189/head -> origin/gh/laithsakka/189/head 2025-06-01T21:29:02.5079658Z * [new branch] gh/laithsakka/189/orig -> origin/gh/laithsakka/189/orig 2025-06-01T21:29:02.5080174Z * [new branch] gh/laithsakka/190/base -> origin/gh/laithsakka/190/base 2025-06-01T21:29:02.5080692Z * [new branch] gh/laithsakka/190/head -> origin/gh/laithsakka/190/head 2025-06-01T21:29:02.5081214Z * [new branch] gh/laithsakka/190/orig -> origin/gh/laithsakka/190/orig 2025-06-01T21:29:02.5081733Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-06-01T21:29:02.5082619Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-06-01T21:29:02.5083139Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-06-01T21:29:02.5083661Z * [new branch] gh/laithsakka/192/base -> origin/gh/laithsakka/192/base 2025-06-01T21:29:02.5094183Z * [new branch] gh/laithsakka/192/head -> origin/gh/laithsakka/192/head 2025-06-01T21:29:02.5094894Z * [new branch] gh/laithsakka/192/orig -> origin/gh/laithsakka/192/orig 2025-06-01T21:29:02.5095463Z * [new branch] gh/laithsakka/193/base -> origin/gh/laithsakka/193/base 2025-06-01T21:29:02.5095984Z * [new branch] gh/laithsakka/193/head -> origin/gh/laithsakka/193/head 2025-06-01T21:29:02.5096508Z * [new branch] gh/laithsakka/193/orig -> origin/gh/laithsakka/193/orig 2025-06-01T21:29:02.5097038Z * [new branch] gh/laithsakka/194/base -> origin/gh/laithsakka/194/base 2025-06-01T21:29:02.5097552Z * [new branch] gh/laithsakka/194/head -> origin/gh/laithsakka/194/head 2025-06-01T21:29:02.5543015Z * [new branch] gh/laithsakka/194/orig -> origin/gh/laithsakka/194/orig 2025-06-01T21:29:02.5543600Z * [new branch] gh/laithsakka/195/base -> origin/gh/laithsakka/195/base 2025-06-01T21:29:02.5544126Z * [new branch] gh/laithsakka/195/head -> origin/gh/laithsakka/195/head 2025-06-01T21:29:02.5544684Z * [new branch] gh/laithsakka/195/orig -> origin/gh/laithsakka/195/orig 2025-06-01T21:29:02.5545207Z * [new branch] gh/laithsakka/196/base -> origin/gh/laithsakka/196/base 2025-06-01T21:29:02.5545729Z * [new branch] gh/laithsakka/196/head -> origin/gh/laithsakka/196/head 2025-06-01T21:29:02.5546247Z * [new branch] gh/laithsakka/196/orig -> origin/gh/laithsakka/196/orig 2025-06-01T21:29:02.5546771Z * [new branch] gh/laithsakka/197/base -> origin/gh/laithsakka/197/base 2025-06-01T21:29:02.5547295Z * [new branch] gh/laithsakka/197/head -> origin/gh/laithsakka/197/head 2025-06-01T21:29:02.5547864Z * [new branch] gh/laithsakka/197/orig -> origin/gh/laithsakka/197/orig 2025-06-01T21:29:02.5548390Z * [new branch] gh/laithsakka/198/base -> origin/gh/laithsakka/198/base 2025-06-01T21:29:02.5548919Z * [new branch] gh/laithsakka/198/head -> origin/gh/laithsakka/198/head 2025-06-01T21:29:02.5549639Z * [new branch] gh/laithsakka/198/orig -> origin/gh/laithsakka/198/orig 2025-06-01T21:29:02.5550166Z * [new branch] gh/laithsakka/199/base -> origin/gh/laithsakka/199/base 2025-06-01T21:29:02.5550690Z * [new branch] gh/laithsakka/199/head -> origin/gh/laithsakka/199/head 2025-06-01T21:29:02.5551230Z * [new branch] gh/laithsakka/199/orig -> origin/gh/laithsakka/199/orig 2025-06-01T21:29:02.5551764Z * [new branch] gh/laithsakka/200/base -> origin/gh/laithsakka/200/base 2025-06-01T21:29:02.5552276Z * [new branch] gh/laithsakka/200/head -> origin/gh/laithsakka/200/head 2025-06-01T21:29:02.5552798Z * [new branch] gh/laithsakka/200/orig -> origin/gh/laithsakka/200/orig 2025-06-01T21:29:02.5553308Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-06-01T21:29:02.5553838Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-06-01T21:29:02.5554350Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-06-01T21:29:02.5554866Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-06-01T21:29:02.5555383Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-06-01T21:29:02.5556368Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-06-01T21:29:02.5556891Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-06-01T21:29:02.5557397Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-06-01T21:29:02.5557921Z * [new branch] gh/larryliu0820/1/base -> origin/gh/larryliu0820/1/base 2025-06-01T21:29:02.5558460Z * [new branch] gh/larryliu0820/1/head -> origin/gh/larryliu0820/1/head 2025-06-01T21:29:02.5558985Z * [new branch] gh/larryliu0820/1/orig -> origin/gh/larryliu0820/1/orig 2025-06-01T21:29:02.5559510Z * [new branch] gh/larryliu0820/2/base -> origin/gh/larryliu0820/2/base 2025-06-01T21:29:02.5560025Z * [new branch] gh/larryliu0820/2/head -> origin/gh/larryliu0820/2/head 2025-06-01T21:29:02.5560544Z * [new branch] gh/larryliu0820/2/orig -> origin/gh/larryliu0820/2/orig 2025-06-01T21:29:02.5561057Z * [new branch] gh/larryliu0820/3/base -> origin/gh/larryliu0820/3/base 2025-06-01T21:29:02.5561567Z * [new branch] gh/larryliu0820/3/head -> origin/gh/larryliu0820/3/head 2025-06-01T21:29:02.5562098Z * [new branch] gh/larryliu0820/3/orig -> origin/gh/larryliu0820/3/orig 2025-06-01T21:29:02.5562614Z * [new branch] gh/larryliu0820/4/base -> origin/gh/larryliu0820/4/base 2025-06-01T21:29:02.5563137Z * [new branch] gh/larryliu0820/4/head -> origin/gh/larryliu0820/4/head 2025-06-01T21:29:02.5563668Z * [new branch] gh/larryliu0820/4/orig -> origin/gh/larryliu0820/4/orig 2025-06-01T21:29:02.5564232Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-06-01T21:29:02.5564848Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-06-01T21:29:02.5565454Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-06-01T21:29:02.5566067Z * [new branch] gh/leslie-fang-intel/192/base -> origin/gh/leslie-fang-intel/192/base 2025-06-01T21:29:02.5566665Z * [new branch] gh/leslie-fang-intel/192/head -> origin/gh/leslie-fang-intel/192/head 2025-06-01T21:29:02.5567263Z * [new branch] gh/leslie-fang-intel/192/orig -> origin/gh/leslie-fang-intel/192/orig 2025-06-01T21:29:02.6017402Z * [new branch] gh/leslie-fang-intel/193/base -> origin/gh/leslie-fang-intel/193/base 2025-06-01T21:29:02.6018316Z * [new branch] gh/leslie-fang-intel/193/head -> origin/gh/leslie-fang-intel/193/head 2025-06-01T21:29:02.6018928Z * [new branch] gh/leslie-fang-intel/193/orig -> origin/gh/leslie-fang-intel/193/orig 2025-06-01T21:29:02.6019536Z * [new branch] gh/leslie-fang-intel/194/base -> origin/gh/leslie-fang-intel/194/base 2025-06-01T21:29:02.6020140Z * [new branch] gh/leslie-fang-intel/194/head -> origin/gh/leslie-fang-intel/194/head 2025-06-01T21:29:02.6020742Z * [new branch] gh/leslie-fang-intel/194/orig -> origin/gh/leslie-fang-intel/194/orig 2025-06-01T21:29:02.6021353Z * [new branch] gh/leslie-fang-intel/195/base -> origin/gh/leslie-fang-intel/195/base 2025-06-01T21:29:02.6021946Z * [new branch] gh/leslie-fang-intel/195/head -> origin/gh/leslie-fang-intel/195/head 2025-06-01T21:29:02.6022553Z * [new branch] gh/leslie-fang-intel/195/orig -> origin/gh/leslie-fang-intel/195/orig 2025-06-01T21:29:02.6023149Z * [new branch] gh/leslie-fang-intel/196/base -> origin/gh/leslie-fang-intel/196/base 2025-06-01T21:29:02.6023755Z * [new branch] gh/leslie-fang-intel/196/head -> origin/gh/leslie-fang-intel/196/head 2025-06-01T21:29:02.6024345Z * [new branch] gh/leslie-fang-intel/196/orig -> origin/gh/leslie-fang-intel/196/orig 2025-06-01T21:29:02.6025456Z * [new branch] gh/leslie-fang-intel/197/base -> origin/gh/leslie-fang-intel/197/base 2025-06-01T21:29:02.6026085Z * [new branch] gh/leslie-fang-intel/197/head -> origin/gh/leslie-fang-intel/197/head 2025-06-01T21:29:02.6026689Z * [new branch] gh/leslie-fang-intel/197/orig -> origin/gh/leslie-fang-intel/197/orig 2025-06-01T21:29:02.6027303Z * [new branch] gh/leslie-fang-intel/198/base -> origin/gh/leslie-fang-intel/198/base 2025-06-01T21:29:02.6028001Z * [new branch] gh/leslie-fang-intel/198/head -> origin/gh/leslie-fang-intel/198/head 2025-06-01T21:29:02.6028607Z * [new branch] gh/leslie-fang-intel/198/orig -> origin/gh/leslie-fang-intel/198/orig 2025-06-01T21:29:02.6029335Z * [new branch] gh/leslie-fang-intel/199/base -> origin/gh/leslie-fang-intel/199/base 2025-06-01T21:29:02.6029941Z * [new branch] gh/leslie-fang-intel/199/head -> origin/gh/leslie-fang-intel/199/head 2025-06-01T21:29:02.6030557Z * [new branch] gh/leslie-fang-intel/199/orig -> origin/gh/leslie-fang-intel/199/orig 2025-06-01T21:29:02.6031128Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-06-01T21:29:02.6031676Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-06-01T21:29:02.6032199Z * [new branch] gh/lucaskabela/1/orig -> origin/gh/lucaskabela/1/orig 2025-06-01T21:29:02.6032719Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-06-01T21:29:02.6033268Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-06-01T21:29:02.6033795Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-06-01T21:29:02.6034324Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-06-01T21:29:02.6034851Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-06-01T21:29:02.6035360Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-06-01T21:29:02.6035893Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-06-01T21:29:02.6036401Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-06-01T21:29:02.6036914Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-06-01T21:29:02.6037582Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-06-01T21:29:02.6038098Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-06-01T21:29:02.6038626Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-06-01T21:29:02.6039136Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-06-01T21:29:02.6039680Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-06-01T21:29:02.6040190Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-06-01T21:29:02.6040697Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-06-01T21:29:02.6041214Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-06-01T21:29:02.6041707Z * [new branch] gh/lw/10/base -> origin/gh/lw/10/base 2025-06-01T21:29:02.6042159Z * [new branch] gh/lw/10/head -> origin/gh/lw/10/head 2025-06-01T21:29:02.6042587Z * [new branch] gh/lw/10/orig -> origin/gh/lw/10/orig 2025-06-01T21:29:02.7019101Z * [new branch] gh/lw/15/base -> origin/gh/lw/15/base 2025-06-01T21:29:02.7019599Z * [new branch] gh/lw/15/head -> origin/gh/lw/15/head 2025-06-01T21:29:02.7020620Z * [new branch] gh/lw/15/orig -> origin/gh/lw/15/orig 2025-06-01T21:29:02.7021098Z * [new branch] gh/lw/5/head -> origin/gh/lw/5/head 2025-06-01T21:29:02.7021564Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-06-01T21:29:02.7022061Z * [new branch] gh/malfet/155/base -> origin/gh/malfet/155/base 2025-06-01T21:29:02.7022548Z * [new branch] gh/malfet/155/head -> origin/gh/malfet/155/head 2025-06-01T21:29:02.7023056Z * [new branch] gh/malfet/155/orig -> origin/gh/malfet/155/orig 2025-06-01T21:29:02.7023548Z * [new branch] gh/malfet/159/base -> origin/gh/malfet/159/base 2025-06-01T21:29:02.7024020Z * [new branch] gh/malfet/159/head -> origin/gh/malfet/159/head 2025-06-01T21:29:02.7024614Z * [new branch] gh/malfet/159/orig -> origin/gh/malfet/159/orig 2025-06-01T21:29:02.7025101Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-06-01T21:29:02.7025733Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-06-01T21:29:02.7026221Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-06-01T21:29:02.7026706Z * [new branch] gh/malfet/197/base -> origin/gh/malfet/197/base 2025-06-01T21:29:02.7027185Z * [new branch] gh/malfet/197/head -> origin/gh/malfet/197/head 2025-06-01T21:29:02.7027732Z * [new branch] gh/malfet/197/orig -> origin/gh/malfet/197/orig 2025-06-01T21:29:02.7028215Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-06-01T21:29:02.7028692Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-06-01T21:29:02.7029178Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-06-01T21:29:02.7029660Z * [new branch] gh/malfet/268/base -> origin/gh/malfet/268/base 2025-06-01T21:29:02.7030137Z * [new branch] gh/malfet/268/head -> origin/gh/malfet/268/head 2025-06-01T21:29:02.7030616Z * [new branch] gh/malfet/268/orig -> origin/gh/malfet/268/orig 2025-06-01T21:29:02.7031087Z * [new branch] gh/malfet/292/base -> origin/gh/malfet/292/base 2025-06-01T21:29:02.7031563Z * [new branch] gh/malfet/292/head -> origin/gh/malfet/292/head 2025-06-01T21:29:02.7032179Z * [new branch] gh/malfet/292/orig -> origin/gh/malfet/292/orig 2025-06-01T21:29:02.7032666Z * [new branch] gh/malfet/293/base -> origin/gh/malfet/293/base 2025-06-01T21:29:02.7033156Z * [new branch] gh/malfet/293/head -> origin/gh/malfet/293/head 2025-06-01T21:29:02.7033632Z * [new branch] gh/malfet/293/orig -> origin/gh/malfet/293/orig 2025-06-01T21:29:02.7034118Z * [new branch] gh/malfet/294/base -> origin/gh/malfet/294/base 2025-06-01T21:29:02.7034586Z * [new branch] gh/malfet/294/head -> origin/gh/malfet/294/head 2025-06-01T21:29:02.7035068Z * [new branch] gh/malfet/294/orig -> origin/gh/malfet/294/orig 2025-06-01T21:29:02.7035548Z * [new branch] gh/malfet/295/base -> origin/gh/malfet/295/base 2025-06-01T21:29:02.7036022Z * [new branch] gh/malfet/295/head -> origin/gh/malfet/295/head 2025-06-01T21:29:02.7036506Z * [new branch] gh/malfet/295/orig -> origin/gh/malfet/295/orig 2025-06-01T21:29:02.7036973Z * [new branch] gh/malfet/296/base -> origin/gh/malfet/296/base 2025-06-01T21:29:02.7037455Z * [new branch] gh/malfet/296/head -> origin/gh/malfet/296/head 2025-06-01T21:29:02.7038319Z * [new branch] gh/malfet/296/orig -> origin/gh/malfet/296/orig 2025-06-01T21:29:02.7038799Z * [new branch] gh/malfet/297/base -> origin/gh/malfet/297/base 2025-06-01T21:29:02.7039280Z * [new branch] gh/malfet/297/head -> origin/gh/malfet/297/head 2025-06-01T21:29:02.7039752Z * [new branch] gh/malfet/297/orig -> origin/gh/malfet/297/orig 2025-06-01T21:29:02.7040241Z * [new branch] gh/malfet/298/base -> origin/gh/malfet/298/base 2025-06-01T21:29:02.7040719Z * [new branch] gh/malfet/298/head -> origin/gh/malfet/298/head 2025-06-01T21:29:02.7041205Z * [new branch] gh/malfet/298/orig -> origin/gh/malfet/298/orig 2025-06-01T21:29:02.7041699Z * [new branch] gh/malfet/299/base -> origin/gh/malfet/299/base 2025-06-01T21:29:02.7042176Z * [new branch] gh/malfet/299/head -> origin/gh/malfet/299/head 2025-06-01T21:29:02.7042663Z * [new branch] gh/malfet/299/orig -> origin/gh/malfet/299/orig 2025-06-01T21:29:02.7043133Z * [new branch] gh/malfet/300/base -> origin/gh/malfet/300/base 2025-06-01T21:29:02.7521029Z * [new branch] gh/malfet/300/head -> origin/gh/malfet/300/head 2025-06-01T21:29:02.7521574Z * [new branch] gh/malfet/300/orig -> origin/gh/malfet/300/orig 2025-06-01T21:29:02.7522053Z * [new branch] gh/malfet/301/base -> origin/gh/malfet/301/base 2025-06-01T21:29:02.7522588Z * [new branch] gh/malfet/301/head -> origin/gh/malfet/301/head 2025-06-01T21:29:02.7523068Z * [new branch] gh/malfet/301/orig -> origin/gh/malfet/301/orig 2025-06-01T21:29:02.7523543Z * [new branch] gh/malfet/302/base -> origin/gh/malfet/302/base 2025-06-01T21:29:02.7524027Z * [new branch] gh/malfet/302/head -> origin/gh/malfet/302/head 2025-06-01T21:29:02.7524505Z * [new branch] gh/malfet/302/orig -> origin/gh/malfet/302/orig 2025-06-01T21:29:02.7524981Z * [new branch] gh/malfet/303/base -> origin/gh/malfet/303/base 2025-06-01T21:29:02.7525462Z * [new branch] gh/malfet/303/head -> origin/gh/malfet/303/head 2025-06-01T21:29:02.7525930Z * [new branch] gh/malfet/303/orig -> origin/gh/malfet/303/orig 2025-06-01T21:29:02.7526414Z * [new branch] gh/malfet/304/base -> origin/gh/malfet/304/base 2025-06-01T21:29:02.7527091Z * [new branch] gh/malfet/304/head -> origin/gh/malfet/304/head 2025-06-01T21:29:02.7527578Z * [new branch] gh/malfet/304/orig -> origin/gh/malfet/304/orig 2025-06-01T21:29:02.7528060Z * [new branch] gh/malfet/305/base -> origin/gh/malfet/305/base 2025-06-01T21:29:02.7528538Z * [new branch] gh/malfet/305/head -> origin/gh/malfet/305/head 2025-06-01T21:29:02.7529026Z * [new branch] gh/malfet/305/orig -> origin/gh/malfet/305/orig 2025-06-01T21:29:02.7529500Z * [new branch] gh/malfet/306/base -> origin/gh/malfet/306/base 2025-06-01T21:29:02.7529985Z * [new branch] gh/malfet/306/head -> origin/gh/malfet/306/head 2025-06-01T21:29:02.7530458Z * [new branch] gh/malfet/306/orig -> origin/gh/malfet/306/orig 2025-06-01T21:29:02.7530937Z * [new branch] gh/malfet/307/base -> origin/gh/malfet/307/base 2025-06-01T21:29:02.7531427Z * [new branch] gh/malfet/307/head -> origin/gh/malfet/307/head 2025-06-01T21:29:02.7531897Z * [new branch] gh/malfet/307/orig -> origin/gh/malfet/307/orig 2025-06-01T21:29:02.7532393Z * [new branch] gh/malfet/308/base -> origin/gh/malfet/308/base 2025-06-01T21:29:02.7533384Z * [new branch] gh/malfet/308/head -> origin/gh/malfet/308/head 2025-06-01T21:29:02.7533874Z * [new branch] gh/malfet/308/orig -> origin/gh/malfet/308/orig 2025-06-01T21:29:02.7534344Z * [new branch] gh/malfet/309/base -> origin/gh/malfet/309/base 2025-06-01T21:29:02.7534827Z * [new branch] gh/malfet/309/head -> origin/gh/malfet/309/head 2025-06-01T21:29:02.7535309Z * [new branch] gh/malfet/309/orig -> origin/gh/malfet/309/orig 2025-06-01T21:29:02.7535786Z * [new branch] gh/malfet/310/base -> origin/gh/malfet/310/base 2025-06-01T21:29:02.7536265Z * [new branch] gh/malfet/310/head -> origin/gh/malfet/310/head 2025-06-01T21:29:02.7536732Z * [new branch] gh/malfet/310/orig -> origin/gh/malfet/310/orig 2025-06-01T21:29:02.7537209Z * [new branch] gh/malfet/311/base -> origin/gh/malfet/311/base 2025-06-01T21:29:02.7537689Z * [new branch] gh/malfet/311/head -> origin/gh/malfet/311/head 2025-06-01T21:29:02.7538160Z * [new branch] gh/malfet/311/orig -> origin/gh/malfet/311/orig 2025-06-01T21:29:02.7538641Z * [new branch] gh/malfet/312/base -> origin/gh/malfet/312/base 2025-06-01T21:29:02.7539117Z * [new branch] gh/malfet/312/head -> origin/gh/malfet/312/head 2025-06-01T21:29:02.7539598Z * [new branch] gh/malfet/313/base -> origin/gh/malfet/313/base 2025-06-01T21:29:02.7540078Z * [new branch] gh/malfet/313/head -> origin/gh/malfet/313/head 2025-06-01T21:29:02.7540546Z * [new branch] gh/malfet/313/orig -> origin/gh/malfet/313/orig 2025-06-01T21:29:02.7541022Z * [new branch] gh/malfet/314/base -> origin/gh/malfet/314/base 2025-06-01T21:29:02.7541492Z * [new branch] gh/malfet/314/head -> origin/gh/malfet/314/head 2025-06-01T21:29:02.7541979Z * [new branch] gh/malfet/314/orig -> origin/gh/malfet/314/orig 2025-06-01T21:29:02.7542456Z * [new branch] gh/malfet/315/base -> origin/gh/malfet/315/base 2025-06-01T21:29:02.7542931Z * [new branch] gh/malfet/315/head -> origin/gh/malfet/315/head 2025-06-01T21:29:02.7543405Z * [new branch] gh/malfet/315/orig -> origin/gh/malfet/315/orig 2025-06-01T21:29:02.7543875Z * [new branch] gh/malfet/316/base -> origin/gh/malfet/316/base 2025-06-01T21:29:02.7544481Z * [new branch] gh/malfet/316/head -> origin/gh/malfet/316/head 2025-06-01T21:29:02.8014171Z * [new branch] gh/malfet/316/orig -> origin/gh/malfet/316/orig 2025-06-01T21:29:02.8014715Z * [new branch] gh/malfet/317/base -> origin/gh/malfet/317/base 2025-06-01T21:29:02.8015305Z * [new branch] gh/malfet/317/head -> origin/gh/malfet/317/head 2025-06-01T21:29:02.8015818Z * [new branch] gh/malfet/317/orig -> origin/gh/malfet/317/orig 2025-06-01T21:29:02.8016327Z * [new branch] gh/malfet/318/base -> origin/gh/malfet/318/base 2025-06-01T21:29:02.8016806Z * [new branch] gh/malfet/318/head -> origin/gh/malfet/318/head 2025-06-01T21:29:02.8017275Z * [new branch] gh/malfet/318/orig -> origin/gh/malfet/318/orig 2025-06-01T21:29:02.8017760Z * [new branch] gh/malfet/319/base -> origin/gh/malfet/319/base 2025-06-01T21:29:02.8018241Z * [new branch] gh/malfet/319/head -> origin/gh/malfet/319/head 2025-06-01T21:29:02.8018718Z * [new branch] gh/malfet/319/orig -> origin/gh/malfet/319/orig 2025-06-01T21:29:02.8019201Z * [new branch] gh/malfet/320/base -> origin/gh/malfet/320/base 2025-06-01T21:29:02.8019670Z * [new branch] gh/malfet/320/head -> origin/gh/malfet/320/head 2025-06-01T21:29:02.8020682Z * [new branch] gh/malfet/320/orig -> origin/gh/malfet/320/orig 2025-06-01T21:29:02.8021169Z * [new branch] gh/malfet/321/base -> origin/gh/malfet/321/base 2025-06-01T21:29:02.8021655Z * [new branch] gh/malfet/321/head -> origin/gh/malfet/321/head 2025-06-01T21:29:02.8022131Z * [new branch] gh/malfet/321/orig -> origin/gh/malfet/321/orig 2025-06-01T21:29:02.8022619Z * [new branch] gh/malfet/322/base -> origin/gh/malfet/322/base 2025-06-01T21:29:02.8023110Z * [new branch] gh/malfet/322/head -> origin/gh/malfet/322/head 2025-06-01T21:29:02.8023578Z * [new branch] gh/malfet/322/orig -> origin/gh/malfet/322/orig 2025-06-01T21:29:02.8024051Z * [new branch] gh/malfet/323/base -> origin/gh/malfet/323/base 2025-06-01T21:29:02.8024525Z * [new branch] gh/malfet/323/head -> origin/gh/malfet/323/head 2025-06-01T21:29:02.8025008Z * [new branch] gh/malfet/323/orig -> origin/gh/malfet/323/orig 2025-06-01T21:29:02.8025483Z * [new branch] gh/malfet/324/base -> origin/gh/malfet/324/base 2025-06-01T21:29:02.8025951Z * [new branch] gh/malfet/324/head -> origin/gh/malfet/324/head 2025-06-01T21:29:02.8026425Z * [new branch] gh/malfet/324/orig -> origin/gh/malfet/324/orig 2025-06-01T21:29:02.8026891Z * [new branch] gh/malfet/325/base -> origin/gh/malfet/325/base 2025-06-01T21:29:02.8027454Z * [new branch] gh/malfet/325/head -> origin/gh/malfet/325/head 2025-06-01T21:29:02.8027942Z * [new branch] gh/malfet/325/orig -> origin/gh/malfet/325/orig 2025-06-01T21:29:02.8028413Z * [new branch] gh/malfet/326/base -> origin/gh/malfet/326/base 2025-06-01T21:29:02.8028900Z * [new branch] gh/malfet/326/head -> origin/gh/malfet/326/head 2025-06-01T21:29:02.8029376Z * [new branch] gh/malfet/326/orig -> origin/gh/malfet/326/orig 2025-06-01T21:29:02.8029864Z * [new branch] gh/malfet/327/base -> origin/gh/malfet/327/base 2025-06-01T21:29:02.8030339Z * [new branch] gh/malfet/327/head -> origin/gh/malfet/327/head 2025-06-01T21:29:02.8030817Z * [new branch] gh/malfet/327/orig -> origin/gh/malfet/327/orig 2025-06-01T21:29:02.8031294Z * [new branch] gh/malfet/328/base -> origin/gh/malfet/328/base 2025-06-01T21:29:02.8031909Z * [new branch] gh/malfet/328/head -> origin/gh/malfet/328/head 2025-06-01T21:29:02.8032398Z * [new branch] gh/malfet/328/orig -> origin/gh/malfet/328/orig 2025-06-01T21:29:02.8032878Z * [new branch] gh/malfet/329/base -> origin/gh/malfet/329/base 2025-06-01T21:29:02.8033374Z * [new branch] gh/malfet/329/head -> origin/gh/malfet/329/head 2025-06-01T21:29:02.8033864Z * [new branch] gh/malfet/329/orig -> origin/gh/malfet/329/orig 2025-06-01T21:29:02.8034331Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-06-01T21:29:02.8034818Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-06-01T21:29:02.8035288Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-06-01T21:29:02.8035769Z * [new branch] gh/malfet/331/base -> origin/gh/malfet/331/base 2025-06-01T21:29:02.8036255Z * [new branch] gh/malfet/331/head -> origin/gh/malfet/331/head 2025-06-01T21:29:02.8036729Z * [new branch] gh/malfet/331/orig -> origin/gh/malfet/331/orig 2025-06-01T21:29:02.8037208Z * [new branch] gh/malfet/332/base -> origin/gh/malfet/332/base 2025-06-01T21:29:02.8488442Z * [new branch] gh/malfet/332/head -> origin/gh/malfet/332/head 2025-06-01T21:29:02.8489053Z * [new branch] gh/malfet/332/orig -> origin/gh/malfet/332/orig 2025-06-01T21:29:02.8489553Z * [new branch] gh/malfet/333/base -> origin/gh/malfet/333/base 2025-06-01T21:29:02.8490029Z * [new branch] gh/malfet/333/head -> origin/gh/malfet/333/head 2025-06-01T21:29:02.8490508Z * [new branch] gh/malfet/333/orig -> origin/gh/malfet/333/orig 2025-06-01T21:29:02.8490995Z * [new branch] gh/malfet/334/base -> origin/gh/malfet/334/base 2025-06-01T21:29:02.8491480Z * [new branch] gh/malfet/334/head -> origin/gh/malfet/334/head 2025-06-01T21:29:02.8491960Z * [new branch] gh/malfet/334/orig -> origin/gh/malfet/334/orig 2025-06-01T21:29:02.8492432Z * [new branch] gh/malfet/335/base -> origin/gh/malfet/335/base 2025-06-01T21:29:02.8492919Z * [new branch] gh/malfet/335/head -> origin/gh/malfet/335/head 2025-06-01T21:29:02.8493386Z * [new branch] gh/malfet/335/orig -> origin/gh/malfet/335/orig 2025-06-01T21:29:02.8493863Z * [new branch] gh/malfet/336/base -> origin/gh/malfet/336/base 2025-06-01T21:29:02.8494331Z * [new branch] gh/malfet/336/head -> origin/gh/malfet/336/head 2025-06-01T21:29:02.8494810Z * [new branch] gh/malfet/336/orig -> origin/gh/malfet/336/orig 2025-06-01T21:29:02.8495297Z * [new branch] gh/malfet/337/base -> origin/gh/malfet/337/base 2025-06-01T21:29:02.8495765Z * [new branch] gh/malfet/337/head -> origin/gh/malfet/337/head 2025-06-01T21:29:02.8496239Z * [new branch] gh/malfet/337/orig -> origin/gh/malfet/337/orig 2025-06-01T21:29:02.8496706Z * [new branch] gh/malfet/338/base -> origin/gh/malfet/338/base 2025-06-01T21:29:02.8497189Z * [new branch] gh/malfet/338/head -> origin/gh/malfet/338/head 2025-06-01T21:29:02.8497691Z * [new branch] gh/malfet/338/orig -> origin/gh/malfet/338/orig 2025-06-01T21:29:02.8498159Z * [new branch] gh/malfet/339/base -> origin/gh/malfet/339/base 2025-06-01T21:29:02.8498642Z * [new branch] gh/malfet/339/head -> origin/gh/malfet/339/head 2025-06-01T21:29:02.8499117Z * [new branch] gh/malfet/339/orig -> origin/gh/malfet/339/orig 2025-06-01T21:29:02.8500152Z * [new branch] gh/malfet/340/base -> origin/gh/malfet/340/base 2025-06-01T21:29:02.8500638Z * [new branch] gh/malfet/340/head -> origin/gh/malfet/340/head 2025-06-01T21:29:02.8501113Z * [new branch] gh/malfet/340/orig -> origin/gh/malfet/340/orig 2025-06-01T21:29:02.8501602Z * [new branch] gh/malfet/341/base -> origin/gh/malfet/341/base 2025-06-01T21:29:02.8502073Z * [new branch] gh/malfet/341/head -> origin/gh/malfet/341/head 2025-06-01T21:29:02.8502552Z * [new branch] gh/malfet/341/orig -> origin/gh/malfet/341/orig 2025-06-01T21:29:02.8503025Z * [new branch] gh/malfet/342/base -> origin/gh/malfet/342/base 2025-06-01T21:29:02.8503493Z * [new branch] gh/malfet/342/head -> origin/gh/malfet/342/head 2025-06-01T21:29:02.8503978Z * [new branch] gh/malfet/342/orig -> origin/gh/malfet/342/orig 2025-06-01T21:29:02.8504576Z * [new branch] gh/malfet/343/base -> origin/gh/malfet/343/base 2025-06-01T21:29:02.8505062Z * [new branch] gh/malfet/343/head -> origin/gh/malfet/343/head 2025-06-01T21:29:02.8505544Z * [new branch] gh/malfet/343/orig -> origin/gh/malfet/343/orig 2025-06-01T21:29:02.8506520Z * [new branch] gh/malfet/344/base -> origin/gh/malfet/344/base 2025-06-01T21:29:02.8507027Z * [new branch] gh/malfet/344/head -> origin/gh/malfet/344/head 2025-06-01T21:29:02.8507580Z * [new branch] gh/malfet/344/orig -> origin/gh/malfet/344/orig 2025-06-01T21:29:02.8508065Z * [new branch] gh/malfet/345/base -> origin/gh/malfet/345/base 2025-06-01T21:29:02.8508537Z * [new branch] gh/malfet/345/head -> origin/gh/malfet/345/head 2025-06-01T21:29:02.8509026Z * [new branch] gh/malfet/345/orig -> origin/gh/malfet/345/orig 2025-06-01T21:29:02.8509509Z * [new branch] gh/malfet/346/base -> origin/gh/malfet/346/base 2025-06-01T21:29:02.8509976Z * [new branch] gh/malfet/346/head -> origin/gh/malfet/346/head 2025-06-01T21:29:02.8510451Z * [new branch] gh/malfet/346/orig -> origin/gh/malfet/346/orig 2025-06-01T21:29:02.8510925Z * [new branch] gh/malfet/347/base -> origin/gh/malfet/347/base 2025-06-01T21:29:02.8511399Z * [new branch] gh/malfet/347/head -> origin/gh/malfet/347/head 2025-06-01T21:29:02.8511873Z * [new branch] gh/malfet/347/orig -> origin/gh/malfet/347/orig 2025-06-01T21:29:02.8512344Z * [new branch] gh/malfet/348/base -> origin/gh/malfet/348/base 2025-06-01T21:29:02.8987876Z * [new branch] gh/malfet/348/head -> origin/gh/malfet/348/head 2025-06-01T21:29:02.8988461Z * [new branch] gh/malfet/348/orig -> origin/gh/malfet/348/orig 2025-06-01T21:29:02.8988962Z * [new branch] gh/malfet/349/base -> origin/gh/malfet/349/base 2025-06-01T21:29:02.8989471Z * [new branch] gh/malfet/349/head -> origin/gh/malfet/349/head 2025-06-01T21:29:02.8989942Z * [new branch] gh/malfet/349/orig -> origin/gh/malfet/349/orig 2025-06-01T21:29:02.8990436Z * [new branch] gh/malfet/350/base -> origin/gh/malfet/350/base 2025-06-01T21:29:02.8990911Z * [new branch] gh/malfet/350/head -> origin/gh/malfet/350/head 2025-06-01T21:29:02.8991377Z * [new branch] gh/malfet/350/orig -> origin/gh/malfet/350/orig 2025-06-01T21:29:02.8991862Z * [new branch] gh/malfet/351/base -> origin/gh/malfet/351/base 2025-06-01T21:29:02.8992333Z * [new branch] gh/malfet/351/head -> origin/gh/malfet/351/head 2025-06-01T21:29:02.8992995Z * [new branch] gh/malfet/351/orig -> origin/gh/malfet/351/orig 2025-06-01T21:29:02.8993463Z * [new branch] gh/malfet/352/base -> origin/gh/malfet/352/base 2025-06-01T21:29:02.8993946Z * [new branch] gh/malfet/352/head -> origin/gh/malfet/352/head 2025-06-01T21:29:02.8994432Z * [new branch] gh/malfet/352/orig -> origin/gh/malfet/352/orig 2025-06-01T21:29:02.8994910Z * [new branch] gh/malfet/353/base -> origin/gh/malfet/353/base 2025-06-01T21:29:02.8995388Z * [new branch] gh/malfet/353/head -> origin/gh/malfet/353/head 2025-06-01T21:29:02.8995861Z * [new branch] gh/malfet/353/orig -> origin/gh/malfet/353/orig 2025-06-01T21:29:02.8996341Z * [new branch] gh/malfet/354/base -> origin/gh/malfet/354/base 2025-06-01T21:29:02.8996817Z * [new branch] gh/malfet/354/head -> origin/gh/malfet/354/head 2025-06-01T21:29:02.8997290Z * [new branch] gh/malfet/354/orig -> origin/gh/malfet/354/orig 2025-06-01T21:29:02.8997765Z * [new branch] gh/malfet/355/base -> origin/gh/malfet/355/base 2025-06-01T21:29:02.8998232Z * [new branch] gh/malfet/355/head -> origin/gh/malfet/355/head 2025-06-01T21:29:02.8998711Z * [new branch] gh/malfet/355/orig -> origin/gh/malfet/355/orig 2025-06-01T21:29:02.8999973Z * [new branch] gh/malfet/356/base -> origin/gh/malfet/356/base 2025-06-01T21:29:02.9000503Z * [new branch] gh/malfet/356/head -> origin/gh/malfet/356/head 2025-06-01T21:29:02.9000984Z * [new branch] gh/malfet/356/orig -> origin/gh/malfet/356/orig 2025-06-01T21:29:02.9001451Z * [new branch] gh/malfet/357/base -> origin/gh/malfet/357/base 2025-06-01T21:29:02.9001928Z * [new branch] gh/malfet/357/head -> origin/gh/malfet/357/head 2025-06-01T21:29:02.9002418Z * [new branch] gh/malfet/357/orig -> origin/gh/malfet/357/orig 2025-06-01T21:29:02.9002887Z * [new branch] gh/malfet/358/base -> origin/gh/malfet/358/base 2025-06-01T21:29:02.9003365Z * [new branch] gh/malfet/358/head -> origin/gh/malfet/358/head 2025-06-01T21:29:02.9003842Z * [new branch] gh/malfet/358/orig -> origin/gh/malfet/358/orig 2025-06-01T21:29:02.9004326Z * [new branch] gh/malfet/359/base -> origin/gh/malfet/359/base 2025-06-01T21:29:02.9004795Z * [new branch] gh/malfet/359/head -> origin/gh/malfet/359/head 2025-06-01T21:29:02.9005271Z * [new branch] gh/malfet/359/orig -> origin/gh/malfet/359/orig 2025-06-01T21:29:02.9005759Z * [new branch] gh/malfet/360/base -> origin/gh/malfet/360/base 2025-06-01T21:29:02.9006231Z * [new branch] gh/malfet/360/head -> origin/gh/malfet/360/head 2025-06-01T21:29:02.9006715Z * [new branch] gh/malfet/360/orig -> origin/gh/malfet/360/orig 2025-06-01T21:29:02.9007182Z * [new branch] gh/malfet/361/base -> origin/gh/malfet/361/base 2025-06-01T21:29:02.9007663Z * [new branch] gh/malfet/361/head -> origin/gh/malfet/361/head 2025-06-01T21:29:02.9008147Z * [new branch] gh/malfet/361/orig -> origin/gh/malfet/361/orig 2025-06-01T21:29:02.9008619Z * [new branch] gh/malfet/362/base -> origin/gh/malfet/362/base 2025-06-01T21:29:02.9009095Z * [new branch] gh/malfet/362/head -> origin/gh/malfet/362/head 2025-06-01T21:29:02.9009564Z * [new branch] gh/malfet/362/orig -> origin/gh/malfet/362/orig 2025-06-01T21:29:02.9010049Z * [new branch] gh/malfet/363/base -> origin/gh/malfet/363/base 2025-06-01T21:29:02.9010530Z * [new branch] gh/malfet/363/head -> origin/gh/malfet/363/head 2025-06-01T21:29:02.9011150Z * [new branch] gh/malfet/363/orig -> origin/gh/malfet/363/orig 2025-06-01T21:29:02.9011641Z * [new branch] gh/malfet/364/base -> origin/gh/malfet/364/base 2025-06-01T21:29:02.9520176Z * [new branch] gh/malfet/364/head -> origin/gh/malfet/364/head 2025-06-01T21:29:02.9520753Z * [new branch] gh/malfet/364/orig -> origin/gh/malfet/364/orig 2025-06-01T21:29:02.9521253Z * [new branch] gh/malfet/365/base -> origin/gh/malfet/365/base 2025-06-01T21:29:02.9521734Z * [new branch] gh/malfet/365/head -> origin/gh/malfet/365/head 2025-06-01T21:29:02.9522215Z * [new branch] gh/malfet/365/orig -> origin/gh/malfet/365/orig 2025-06-01T21:29:02.9522691Z * [new branch] gh/malfet/366/base -> origin/gh/malfet/366/base 2025-06-01T21:29:02.9523182Z * [new branch] gh/malfet/366/head -> origin/gh/malfet/366/head 2025-06-01T21:29:02.9523659Z * [new branch] gh/malfet/366/orig -> origin/gh/malfet/366/orig 2025-06-01T21:29:02.9524126Z * [new branch] gh/malfet/367/base -> origin/gh/malfet/367/base 2025-06-01T21:29:02.9524663Z * [new branch] gh/malfet/367/head -> origin/gh/malfet/367/head 2025-06-01T21:29:02.9525327Z * [new branch] gh/malfet/367/orig -> origin/gh/malfet/367/orig 2025-06-01T21:29:02.9525818Z * [new branch] gh/malfet/368/base -> origin/gh/malfet/368/base 2025-06-01T21:29:02.9526300Z * [new branch] gh/malfet/368/head -> origin/gh/malfet/368/head 2025-06-01T21:29:02.9526781Z * [new branch] gh/malfet/368/orig -> origin/gh/malfet/368/orig 2025-06-01T21:29:02.9527264Z * [new branch] gh/malfet/369/base -> origin/gh/malfet/369/base 2025-06-01T21:29:02.9527748Z * [new branch] gh/malfet/369/head -> origin/gh/malfet/369/head 2025-06-01T21:29:02.9528231Z * [new branch] gh/malfet/369/orig -> origin/gh/malfet/369/orig 2025-06-01T21:29:02.9528701Z * [new branch] gh/malfet/370/base -> origin/gh/malfet/370/base 2025-06-01T21:29:02.9529178Z * [new branch] gh/malfet/370/head -> origin/gh/malfet/370/head 2025-06-01T21:29:02.9529659Z * [new branch] gh/malfet/370/orig -> origin/gh/malfet/370/orig 2025-06-01T21:29:02.9530130Z * [new branch] gh/malfet/371/base -> origin/gh/malfet/371/base 2025-06-01T21:29:02.9530617Z * [new branch] gh/malfet/371/head -> origin/gh/malfet/371/head 2025-06-01T21:29:02.9531088Z * [new branch] gh/malfet/371/orig -> origin/gh/malfet/371/orig 2025-06-01T21:29:02.9531569Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-06-01T21:29:02.9532051Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-06-01T21:29:02.9532528Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-06-01T21:29:02.9533049Z * [new branch] gh/masnesral/195/base -> origin/gh/masnesral/195/base 2025-06-01T21:29:02.9533553Z * [new branch] gh/masnesral/195/head -> origin/gh/masnesral/195/head 2025-06-01T21:29:02.9534064Z * [new branch] gh/masnesral/195/orig -> origin/gh/masnesral/195/orig 2025-06-01T21:29:02.9534564Z * [new branch] gh/masnesral/196/base -> origin/gh/masnesral/196/base 2025-06-01T21:29:02.9535066Z * [new branch] gh/masnesral/196/head -> origin/gh/masnesral/196/head 2025-06-01T21:29:02.9535593Z * [new branch] gh/masnesral/196/orig -> origin/gh/masnesral/196/orig 2025-06-01T21:29:02.9536098Z * [new branch] gh/masnesral/197/base -> origin/gh/masnesral/197/base 2025-06-01T21:29:02.9536748Z * [new branch] gh/masnesral/197/head -> origin/gh/masnesral/197/head 2025-06-01T21:29:02.9537256Z * [new branch] gh/masnesral/197/orig -> origin/gh/masnesral/197/orig 2025-06-01T21:29:02.9537769Z * [new branch] gh/masnesral/198/base -> origin/gh/masnesral/198/base 2025-06-01T21:29:02.9538280Z * [new branch] gh/masnesral/198/head -> origin/gh/masnesral/198/head 2025-06-01T21:29:02.9538779Z * [new branch] gh/masnesral/198/orig -> origin/gh/masnesral/198/orig 2025-06-01T21:29:02.9539288Z * [new branch] gh/masnesral/199/base -> origin/gh/masnesral/199/base 2025-06-01T21:29:02.9539788Z * [new branch] gh/masnesral/199/head -> origin/gh/masnesral/199/head 2025-06-01T21:29:02.9540290Z * [new branch] gh/masnesral/199/orig -> origin/gh/masnesral/199/orig 2025-06-01T21:29:02.9540805Z * [new branch] gh/masnesral/200/base -> origin/gh/masnesral/200/base 2025-06-01T21:29:02.9541301Z * [new branch] gh/masnesral/200/head -> origin/gh/masnesral/200/head 2025-06-01T21:29:02.9541803Z * [new branch] gh/masnesral/200/orig -> origin/gh/masnesral/200/orig 2025-06-01T21:29:02.9542302Z * [new branch] gh/masnesral/201/base -> origin/gh/masnesral/201/base 2025-06-01T21:29:02.9542902Z * [new branch] gh/masnesral/201/head -> origin/gh/masnesral/201/head 2025-06-01T21:29:02.9543413Z * [new branch] gh/masnesral/201/orig -> origin/gh/masnesral/201/orig 2025-06-01T21:29:03.0000547Z * [new branch] gh/masnesral/202/base -> origin/gh/masnesral/202/base 2025-06-01T21:29:03.0001145Z * [new branch] gh/masnesral/202/head -> origin/gh/masnesral/202/head 2025-06-01T21:29:03.0001660Z * [new branch] gh/masnesral/202/orig -> origin/gh/masnesral/202/orig 2025-06-01T21:29:03.0002196Z * [new branch] gh/masnesral/203/base -> origin/gh/masnesral/203/base 2025-06-01T21:29:03.0002705Z * [new branch] gh/masnesral/203/head -> origin/gh/masnesral/203/head 2025-06-01T21:29:03.0003206Z * [new branch] gh/masnesral/203/orig -> origin/gh/masnesral/203/orig 2025-06-01T21:29:03.0003734Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-06-01T21:29:03.0004390Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-06-01T21:29:03.0004898Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-06-01T21:29:03.0005409Z * [new branch] gh/masnesral/205/base -> origin/gh/masnesral/205/base 2025-06-01T21:29:03.0005989Z * [new branch] gh/masnesral/205/head -> origin/gh/masnesral/205/head 2025-06-01T21:29:03.0006677Z * [new branch] gh/masnesral/205/orig -> origin/gh/masnesral/205/orig 2025-06-01T21:29:03.0007270Z * [new branch] gh/masnesral/206/base -> origin/gh/masnesral/206/base 2025-06-01T21:29:03.0007775Z * [new branch] gh/masnesral/206/head -> origin/gh/masnesral/206/head 2025-06-01T21:29:03.0008285Z * [new branch] gh/masnesral/206/orig -> origin/gh/masnesral/206/orig 2025-06-01T21:29:03.0008789Z * [new branch] gh/masnesral/207/base -> origin/gh/masnesral/207/base 2025-06-01T21:29:03.0009297Z * [new branch] gh/masnesral/207/head -> origin/gh/masnesral/207/head 2025-06-01T21:29:03.0009799Z * [new branch] gh/masnesral/207/orig -> origin/gh/masnesral/207/orig 2025-06-01T21:29:03.0010313Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-06-01T21:29:03.0010883Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-06-01T21:29:03.0011594Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-06-01T21:29:03.0012091Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-06-01T21:29:03.0012581Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-06-01T21:29:03.0013076Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-06-01T21:29:03.0013582Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-06-01T21:29:03.0014076Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-06-01T21:29:03.0014567Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-06-01T21:29:03.0015053Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-06-01T21:29:03.0015549Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-06-01T21:29:03.0016036Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-06-01T21:29:03.0016528Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-06-01T21:29:03.0017021Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-06-01T21:29:03.0017628Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-06-01T21:29:03.0018202Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-06-01T21:29:03.0018803Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-06-01T21:29:03.0019414Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-06-01T21:29:03.0020011Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-06-01T21:29:03.0020611Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-06-01T21:29:03.0021220Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-06-01T21:29:03.0021819Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-06-01T21:29:03.0022425Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-06-01T21:29:03.0023025Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-06-01T21:29:03.0023617Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-06-01T21:29:03.0024211Z * [new branch] gh/mikaylagawarecki/311/base -> origin/gh/mikaylagawarecki/311/base 2025-06-01T21:29:03.0024802Z * [new branch] gh/mikaylagawarecki/311/head -> origin/gh/mikaylagawarecki/311/head 2025-06-01T21:29:03.0624377Z * [new branch] gh/mikaylagawarecki/311/orig -> origin/gh/mikaylagawarecki/311/orig 2025-06-01T21:29:03.0625042Z * [new branch] gh/mikaylagawarecki/312/base -> origin/gh/mikaylagawarecki/312/base 2025-06-01T21:29:03.0625646Z * [new branch] gh/mikaylagawarecki/312/head -> origin/gh/mikaylagawarecki/312/head 2025-06-01T21:29:03.0626258Z * [new branch] gh/mikaylagawarecki/312/orig -> origin/gh/mikaylagawarecki/312/orig 2025-06-01T21:29:03.0626887Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-06-01T21:29:03.0627561Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-06-01T21:29:03.0628157Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-06-01T21:29:03.0628693Z * [new branch] gh/mlazos/22/base -> origin/gh/mlazos/22/base 2025-06-01T21:29:03.0629181Z * [new branch] gh/mlazos/22/head -> origin/gh/mlazos/22/head 2025-06-01T21:29:03.0629847Z * [new branch] gh/mlazos/22/orig -> origin/gh/mlazos/22/orig 2025-06-01T21:29:03.0630321Z * [new branch] gh/mlazos/23/base -> origin/gh/mlazos/23/base 2025-06-01T21:29:03.0630794Z * [new branch] gh/mlazos/23/head -> origin/gh/mlazos/23/head 2025-06-01T21:29:03.0631266Z * [new branch] gh/mlazos/23/orig -> origin/gh/mlazos/23/orig 2025-06-01T21:29:03.0631741Z * [new branch] gh/mlazos/24/base -> origin/gh/mlazos/24/base 2025-06-01T21:29:03.0632207Z * [new branch] gh/mlazos/24/head -> origin/gh/mlazos/24/head 2025-06-01T21:29:03.0632675Z * [new branch] gh/mlazos/24/orig -> origin/gh/mlazos/24/orig 2025-06-01T21:29:03.0633149Z * [new branch] gh/mlazos/25/base -> origin/gh/mlazos/25/base 2025-06-01T21:29:03.0633619Z * [new branch] gh/mlazos/25/head -> origin/gh/mlazos/25/head 2025-06-01T21:29:03.0634092Z * [new branch] gh/mlazos/25/orig -> origin/gh/mlazos/25/orig 2025-06-01T21:29:03.0634554Z * [new branch] gh/mlazos/26/base -> origin/gh/mlazos/26/base 2025-06-01T21:29:03.0635026Z * [new branch] gh/mlazos/26/head -> origin/gh/mlazos/26/head 2025-06-01T21:29:03.0635628Z * [new branch] gh/mlazos/26/orig -> origin/gh/mlazos/26/orig 2025-06-01T21:29:03.0636121Z * [new branch] gh/mlazos/27/base -> origin/gh/mlazos/27/base 2025-06-01T21:29:03.0636597Z * [new branch] gh/mlazos/27/head -> origin/gh/mlazos/27/head 2025-06-01T21:29:03.0637060Z * [new branch] gh/mlazos/27/orig -> origin/gh/mlazos/27/orig 2025-06-01T21:29:03.0637534Z * [new branch] gh/mlazos/28/base -> origin/gh/mlazos/28/base 2025-06-01T21:29:03.0638014Z * [new branch] gh/mlazos/28/head -> origin/gh/mlazos/28/head 2025-06-01T21:29:03.0638489Z * [new branch] gh/mlazos/28/orig -> origin/gh/mlazos/28/orig 2025-06-01T21:29:03.0638970Z * [new branch] gh/mlazos/32/base -> origin/gh/mlazos/32/base 2025-06-01T21:29:03.0639436Z * [new branch] gh/mlazos/32/head -> origin/gh/mlazos/32/head 2025-06-01T21:29:03.0639911Z * [new branch] gh/mlazos/32/orig -> origin/gh/mlazos/32/orig 2025-06-01T21:29:03.0640379Z * [new branch] gh/mlazos/33/base -> origin/gh/mlazos/33/base 2025-06-01T21:29:03.0640926Z * [new branch] gh/mlazos/33/head -> origin/gh/mlazos/33/head 2025-06-01T21:29:03.0641448Z * [new branch] gh/mlazos/33/orig -> origin/gh/mlazos/33/orig 2025-06-01T21:29:03.0641913Z * [new branch] gh/mlazos/34/base -> origin/gh/mlazos/34/base 2025-06-01T21:29:03.0642393Z * [new branch] gh/mlazos/34/head -> origin/gh/mlazos/34/head 2025-06-01T21:29:03.0642852Z * [new branch] gh/mlazos/34/orig -> origin/gh/mlazos/34/orig 2025-06-01T21:29:03.0643321Z * [new branch] gh/mlazos/35/base -> origin/gh/mlazos/35/base 2025-06-01T21:29:03.0643790Z * [new branch] gh/mlazos/35/head -> origin/gh/mlazos/35/head 2025-06-01T21:29:03.0644255Z * [new branch] gh/mlazos/35/orig -> origin/gh/mlazos/35/orig 2025-06-01T21:29:03.0644724Z * [new branch] gh/mlazos/36/base -> origin/gh/mlazos/36/base 2025-06-01T21:29:03.0645181Z * [new branch] gh/mlazos/36/head -> origin/gh/mlazos/36/head 2025-06-01T21:29:03.0645652Z * [new branch] gh/mlazos/36/orig -> origin/gh/mlazos/36/orig 2025-06-01T21:29:03.0646124Z * [new branch] gh/mlazos/37/base -> origin/gh/mlazos/37/base 2025-06-01T21:29:03.0646760Z * [new branch] gh/mlazos/37/head -> origin/gh/mlazos/37/head 2025-06-01T21:29:03.0647288Z * [new branch] gh/mlazos/37/orig -> origin/gh/mlazos/37/orig 2025-06-01T21:29:03.0647758Z * [new branch] gh/mlazos/38/base -> origin/gh/mlazos/38/base 2025-06-01T21:29:03.1098665Z * [new branch] gh/mlazos/38/head -> origin/gh/mlazos/38/head 2025-06-01T21:29:03.1099264Z * [new branch] gh/mlazos/38/orig -> origin/gh/mlazos/38/orig 2025-06-01T21:29:03.1099740Z * [new branch] gh/mlazos/39/base -> origin/gh/mlazos/39/base 2025-06-01T21:29:03.1100229Z * [new branch] gh/mlazos/39/head -> origin/gh/mlazos/39/head 2025-06-01T21:29:03.1100689Z * [new branch] gh/mlazos/39/orig -> origin/gh/mlazos/39/orig 2025-06-01T21:29:03.1101158Z * [new branch] gh/mlazos/40/base -> origin/gh/mlazos/40/base 2025-06-01T21:29:03.1101643Z * [new branch] gh/mlazos/40/head -> origin/gh/mlazos/40/head 2025-06-01T21:29:03.1102109Z * [new branch] gh/mlazos/40/orig -> origin/gh/mlazos/40/orig 2025-06-01T21:29:03.1102579Z * [new branch] gh/mlazos/41/base -> origin/gh/mlazos/41/base 2025-06-01T21:29:03.1103037Z * [new branch] gh/mlazos/41/head -> origin/gh/mlazos/41/head 2025-06-01T21:29:03.1103698Z * [new branch] gh/mlazos/41/orig -> origin/gh/mlazos/41/orig 2025-06-01T21:29:03.1104185Z * [new branch] gh/mlazos/42/base -> origin/gh/mlazos/42/base 2025-06-01T21:29:03.1104647Z * [new branch] gh/mlazos/42/head -> origin/gh/mlazos/42/head 2025-06-01T21:29:03.1105127Z * [new branch] gh/mlazos/42/orig -> origin/gh/mlazos/42/orig 2025-06-01T21:29:03.1105591Z * [new branch] gh/mlazos/43/base -> origin/gh/mlazos/43/base 2025-06-01T21:29:03.1106074Z * [new branch] gh/mlazos/43/head -> origin/gh/mlazos/43/head 2025-06-01T21:29:03.1106539Z * [new branch] gh/mlazos/43/orig -> origin/gh/mlazos/43/orig 2025-06-01T21:29:03.1107009Z * [new branch] gh/mlazos/44/base -> origin/gh/mlazos/44/base 2025-06-01T21:29:03.1107562Z * [new branch] gh/mlazos/44/head -> origin/gh/mlazos/44/head 2025-06-01T21:29:03.1108040Z * [new branch] gh/mlazos/44/orig -> origin/gh/mlazos/44/orig 2025-06-01T21:29:03.1108522Z * [new branch] gh/mlazos/45/base -> origin/gh/mlazos/45/base 2025-06-01T21:29:03.1108988Z * [new branch] gh/mlazos/45/head -> origin/gh/mlazos/45/head 2025-06-01T21:29:03.1109467Z * [new branch] gh/mlazos/45/orig -> origin/gh/mlazos/45/orig 2025-06-01T21:29:03.1109937Z * [new branch] gh/mlazos/46/base -> origin/gh/mlazos/46/base 2025-06-01T21:29:03.1110400Z * [new branch] gh/mlazos/46/head -> origin/gh/mlazos/46/head 2025-06-01T21:29:03.1110866Z * [new branch] gh/mlazos/46/orig -> origin/gh/mlazos/46/orig 2025-06-01T21:29:03.1111333Z * [new branch] gh/mlazos/47/base -> origin/gh/mlazos/47/base 2025-06-01T21:29:03.1111807Z * [new branch] gh/mlazos/47/head -> origin/gh/mlazos/47/head 2025-06-01T21:29:03.1112274Z * [new branch] gh/mlazos/47/orig -> origin/gh/mlazos/47/orig 2025-06-01T21:29:03.1112734Z * [new branch] gh/mlazos/48/base -> origin/gh/mlazos/48/base 2025-06-01T21:29:03.1113200Z * [new branch] gh/mlazos/48/head -> origin/gh/mlazos/48/head 2025-06-01T21:29:03.1113658Z * [new branch] gh/mlazos/48/orig -> origin/gh/mlazos/48/orig 2025-06-01T21:29:03.1114131Z * [new branch] gh/mlazos/49/base -> origin/gh/mlazos/49/base 2025-06-01T21:29:03.1114729Z * [new branch] gh/mlazos/49/head -> origin/gh/mlazos/49/head 2025-06-01T21:29:03.1115205Z * [new branch] gh/mlazos/49/orig -> origin/gh/mlazos/49/orig 2025-06-01T21:29:03.1115687Z * [new branch] gh/mlazos/50/base -> origin/gh/mlazos/50/base 2025-06-01T21:29:03.1116158Z * [new branch] gh/mlazos/50/head -> origin/gh/mlazos/50/head 2025-06-01T21:29:03.1116626Z * [new branch] gh/mlazos/50/orig -> origin/gh/mlazos/50/orig 2025-06-01T21:29:03.1117084Z * [new branch] gh/mlazos/51/base -> origin/gh/mlazos/51/base 2025-06-01T21:29:03.1117553Z * [new branch] gh/mlazos/51/head -> origin/gh/mlazos/51/head 2025-06-01T21:29:03.1118024Z * [new branch] gh/mlazos/51/orig -> origin/gh/mlazos/51/orig 2025-06-01T21:29:03.1118490Z * [new branch] gh/mlazos/52/base -> origin/gh/mlazos/52/base 2025-06-01T21:29:03.1118963Z * [new branch] gh/mlazos/52/head -> origin/gh/mlazos/52/head 2025-06-01T21:29:03.1119421Z * [new branch] gh/mlazos/52/orig -> origin/gh/mlazos/52/orig 2025-06-01T21:29:03.1119892Z * [new branch] gh/mlazos/53/base -> origin/gh/mlazos/53/base 2025-06-01T21:29:03.1120464Z * [new branch] gh/mlazos/53/head -> origin/gh/mlazos/53/head 2025-06-01T21:29:03.1120929Z * [new branch] gh/mlazos/53/orig -> origin/gh/mlazos/53/orig 2025-06-01T21:29:03.1121408Z * [new branch] gh/mlazos/54/base -> origin/gh/mlazos/54/base 2025-06-01T21:29:03.1556599Z * [new branch] gh/mlazos/54/head -> origin/gh/mlazos/54/head 2025-06-01T21:29:03.1557147Z * [new branch] gh/mlazos/54/orig -> origin/gh/mlazos/54/orig 2025-06-01T21:29:03.1557643Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-06-01T21:29:03.1558148Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-06-01T21:29:03.1558653Z * [new branch] gh/muchulee8/57/base -> origin/gh/muchulee8/57/base 2025-06-01T21:29:03.1559161Z * [new branch] gh/muchulee8/57/head -> origin/gh/muchulee8/57/head 2025-06-01T21:29:03.1559677Z * [new branch] gh/muchulee8/57/orig -> origin/gh/muchulee8/57/orig 2025-06-01T21:29:03.1560181Z * [new branch] gh/muchulee8/58/base -> origin/gh/muchulee8/58/base 2025-06-01T21:29:03.1560674Z * [new branch] gh/muchulee8/58/head -> origin/gh/muchulee8/58/head 2025-06-01T21:29:03.1561175Z * [new branch] gh/muchulee8/58/orig -> origin/gh/muchulee8/58/orig 2025-06-01T21:29:03.1561668Z * [new branch] gh/muchulee8/59/base -> origin/gh/muchulee8/59/base 2025-06-01T21:29:03.1562174Z * [new branch] gh/muchulee8/59/head -> origin/gh/muchulee8/59/head 2025-06-01T21:29:03.1562667Z * [new branch] gh/muchulee8/59/orig -> origin/gh/muchulee8/59/orig 2025-06-01T21:29:03.1563171Z * [new branch] gh/muchulee8/60/base -> origin/gh/muchulee8/60/base 2025-06-01T21:29:03.1563671Z * [new branch] gh/muchulee8/60/head -> origin/gh/muchulee8/60/head 2025-06-01T21:29:03.1564165Z * [new branch] gh/muchulee8/60/orig -> origin/gh/muchulee8/60/orig 2025-06-01T21:29:03.1564669Z * [new branch] gh/muchulee8/61/base -> origin/gh/muchulee8/61/base 2025-06-01T21:29:03.1565161Z * [new branch] gh/muchulee8/61/head -> origin/gh/muchulee8/61/head 2025-06-01T21:29:03.1565665Z * [new branch] gh/muchulee8/61/orig -> origin/gh/muchulee8/61/orig 2025-06-01T21:29:03.1566178Z * [new branch] gh/nmacchioni/12/base -> origin/gh/nmacchioni/12/base 2025-06-01T21:29:03.1566892Z * [new branch] gh/nmacchioni/12/head -> origin/gh/nmacchioni/12/head 2025-06-01T21:29:03.1567416Z * [new branch] gh/nmacchioni/12/orig -> origin/gh/nmacchioni/12/orig 2025-06-01T21:29:03.1567918Z * [new branch] gh/nmacchioni/31/base -> origin/gh/nmacchioni/31/base 2025-06-01T21:29:03.1568451Z * [new branch] gh/nmacchioni/31/head -> origin/gh/nmacchioni/31/head 2025-06-01T21:29:03.1568989Z * [new branch] gh/nmacchioni/31/orig -> origin/gh/nmacchioni/31/orig 2025-06-01T21:29:03.1569494Z * [new branch] gh/nmacchioni/32/base -> origin/gh/nmacchioni/32/base 2025-06-01T21:29:03.1570003Z * [new branch] gh/nmacchioni/32/head -> origin/gh/nmacchioni/32/head 2025-06-01T21:29:03.1570507Z * [new branch] gh/nmacchioni/32/orig -> origin/gh/nmacchioni/32/orig 2025-06-01T21:29:03.1571021Z * [new branch] gh/nmacchioni/33/base -> origin/gh/nmacchioni/33/base 2025-06-01T21:29:03.1571541Z * [new branch] gh/nmacchioni/33/head -> origin/gh/nmacchioni/33/head 2025-06-01T21:29:03.1572050Z * [new branch] gh/nmacchioni/33/orig -> origin/gh/nmacchioni/33/orig 2025-06-01T21:29:03.1572567Z * [new branch] gh/nmacchioni/35/base -> origin/gh/nmacchioni/35/base 2025-06-01T21:29:03.1573190Z * [new branch] gh/nmacchioni/35/head -> origin/gh/nmacchioni/35/head 2025-06-01T21:29:03.1573724Z * [new branch] gh/nmacchioni/35/orig -> origin/gh/nmacchioni/35/orig 2025-06-01T21:29:03.1574245Z * [new branch] gh/nmacchioni/36/base -> origin/gh/nmacchioni/36/base 2025-06-01T21:29:03.1574750Z * [new branch] gh/nmacchioni/36/head -> origin/gh/nmacchioni/36/head 2025-06-01T21:29:03.1575264Z * [new branch] gh/nmacchioni/36/orig -> origin/gh/nmacchioni/36/orig 2025-06-01T21:29:03.1575772Z * [new branch] gh/nmacchioni/37/base -> origin/gh/nmacchioni/37/base 2025-06-01T21:29:03.1576289Z * [new branch] gh/nmacchioni/37/head -> origin/gh/nmacchioni/37/head 2025-06-01T21:29:03.1576792Z * [new branch] gh/nmacchioni/37/orig -> origin/gh/nmacchioni/37/orig 2025-06-01T21:29:03.1577312Z * [new branch] gh/nmacchioni/39/base -> origin/gh/nmacchioni/39/base 2025-06-01T21:29:03.1577826Z * [new branch] gh/nmacchioni/39/head -> origin/gh/nmacchioni/39/head 2025-06-01T21:29:03.1578327Z * [new branch] gh/nmacchioni/39/orig -> origin/gh/nmacchioni/39/orig 2025-06-01T21:29:03.1578840Z * [new branch] gh/nmacchioni/40/base -> origin/gh/nmacchioni/40/base 2025-06-01T21:29:03.1579342Z * [new branch] gh/nmacchioni/40/head -> origin/gh/nmacchioni/40/head 2025-06-01T21:29:03.1579855Z * [new branch] gh/nmacchioni/40/orig -> origin/gh/nmacchioni/40/orig 2025-06-01T21:29:03.1580369Z * [new branch] gh/nmacchioni/8/base -> origin/gh/nmacchioni/8/base 2025-06-01T21:29:03.2048915Z * [new branch] gh/nmacchioni/8/head -> origin/gh/nmacchioni/8/head 2025-06-01T21:29:03.2049487Z * [new branch] gh/nmacchioni/8/orig -> origin/gh/nmacchioni/8/orig 2025-06-01T21:29:03.2050008Z * [new branch] gh/oulgen/25/base -> origin/gh/oulgen/25/base 2025-06-01T21:29:03.2050491Z * [new branch] gh/oulgen/25/head -> origin/gh/oulgen/25/head 2025-06-01T21:29:03.2050959Z * [new branch] gh/oulgen/25/orig -> origin/gh/oulgen/25/orig 2025-06-01T21:29:03.2051431Z * [new branch] gh/oulgen/32/base -> origin/gh/oulgen/32/base 2025-06-01T21:29:03.2051906Z * [new branch] gh/oulgen/32/head -> origin/gh/oulgen/32/head 2025-06-01T21:29:03.2052388Z * [new branch] gh/oulgen/32/orig -> origin/gh/oulgen/32/orig 2025-06-01T21:29:03.2053041Z * [new branch] gh/oulgen/33/base -> origin/gh/oulgen/33/base 2025-06-01T21:29:03.2053516Z * [new branch] gh/oulgen/33/head -> origin/gh/oulgen/33/head 2025-06-01T21:29:03.2053980Z * [new branch] gh/oulgen/33/orig -> origin/gh/oulgen/33/orig 2025-06-01T21:29:03.2054462Z * [new branch] gh/oulgen/34/base -> origin/gh/oulgen/34/base 2025-06-01T21:29:03.2054934Z * [new branch] gh/oulgen/34/head -> origin/gh/oulgen/34/head 2025-06-01T21:29:03.2055408Z * [new branch] gh/oulgen/34/orig -> origin/gh/oulgen/34/orig 2025-06-01T21:29:03.2055871Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-06-01T21:29:03.2056340Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-06-01T21:29:03.2056816Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-06-01T21:29:03.2057280Z * [new branch] gh/oulgen/36/base -> origin/gh/oulgen/36/base 2025-06-01T21:29:03.2057748Z * [new branch] gh/oulgen/36/head -> origin/gh/oulgen/36/head 2025-06-01T21:29:03.2058207Z * [new branch] gh/oulgen/36/orig -> origin/gh/oulgen/36/orig 2025-06-01T21:29:03.2058797Z * [new branch] gh/oulgen/37/base -> origin/gh/oulgen/37/base 2025-06-01T21:29:03.2059271Z * [new branch] gh/oulgen/37/head -> origin/gh/oulgen/37/head 2025-06-01T21:29:03.2059732Z * [new branch] gh/oulgen/37/orig -> origin/gh/oulgen/37/orig 2025-06-01T21:29:03.2060215Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-06-01T21:29:03.2060681Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-06-01T21:29:03.2061163Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-06-01T21:29:03.2061628Z * [new branch] gh/pearu/109/base -> origin/gh/pearu/109/base 2025-06-01T21:29:03.2062095Z * [new branch] gh/pearu/109/head -> origin/gh/pearu/109/head 2025-06-01T21:29:03.2062569Z * [new branch] gh/pearu/109/orig -> origin/gh/pearu/109/orig 2025-06-01T21:29:03.2063039Z * [new branch] gh/pearu/110/base -> origin/gh/pearu/110/base 2025-06-01T21:29:03.2063512Z * [new branch] gh/pearu/110/head -> origin/gh/pearu/110/head 2025-06-01T21:29:03.2063979Z * [new branch] gh/pearu/110/orig -> origin/gh/pearu/110/orig 2025-06-01T21:29:03.2064452Z * [new branch] gh/pearu/111/base -> origin/gh/pearu/111/base 2025-06-01T21:29:03.2064926Z * [new branch] gh/pearu/111/head -> origin/gh/pearu/111/head 2025-06-01T21:29:03.2065396Z * [new branch] gh/pearu/111/orig -> origin/gh/pearu/111/orig 2025-06-01T21:29:03.2065871Z * [new branch] gh/pearu/112/base -> origin/gh/pearu/112/base 2025-06-01T21:29:03.2066347Z * [new branch] gh/pearu/112/head -> origin/gh/pearu/112/head 2025-06-01T21:29:03.2066827Z * [new branch] gh/pearu/112/orig -> origin/gh/pearu/112/orig 2025-06-01T21:29:03.2067399Z * [new branch] gh/pearu/113/base -> origin/gh/pearu/113/base 2025-06-01T21:29:03.2067872Z * [new branch] gh/pearu/113/head -> origin/gh/pearu/113/head 2025-06-01T21:29:03.2068363Z * [new branch] gh/pearu/113/orig -> origin/gh/pearu/113/orig 2025-06-01T21:29:03.2068832Z * [new branch] gh/pearu/114/base -> origin/gh/pearu/114/base 2025-06-01T21:29:03.2069309Z * [new branch] gh/pearu/114/head -> origin/gh/pearu/114/head 2025-06-01T21:29:03.2069883Z * [new branch] gh/pearu/114/orig -> origin/gh/pearu/114/orig 2025-06-01T21:29:03.2070371Z * [new branch] gh/pearu/115/base -> origin/gh/pearu/115/base 2025-06-01T21:29:03.2070855Z * [new branch] gh/pearu/115/head -> origin/gh/pearu/115/head 2025-06-01T21:29:03.2071327Z * [new branch] gh/pearu/115/orig -> origin/gh/pearu/115/orig 2025-06-01T21:29:03.2071819Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-06-01T21:29:03.2520975Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-06-01T21:29:03.2521475Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-06-01T21:29:03.2521944Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-06-01T21:29:03.2522403Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-06-01T21:29:03.2522879Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-06-01T21:29:03.2523376Z * [new branch] gh/peterbell10/635/base -> origin/gh/peterbell10/635/base 2025-06-01T21:29:03.2523919Z * [new branch] gh/peterbell10/635/head -> origin/gh/peterbell10/635/head 2025-06-01T21:29:03.2524452Z * [new branch] gh/peterbell10/635/orig -> origin/gh/peterbell10/635/orig 2025-06-01T21:29:03.2525129Z * [new branch] gh/peterbell10/636/base -> origin/gh/peterbell10/636/base 2025-06-01T21:29:03.2525668Z * [new branch] gh/peterbell10/636/head -> origin/gh/peterbell10/636/head 2025-06-01T21:29:03.2526191Z * [new branch] gh/peterbell10/636/orig -> origin/gh/peterbell10/636/orig 2025-06-01T21:29:03.2526709Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-06-01T21:29:03.2527192Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-06-01T21:29:03.2527679Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-06-01T21:29:03.2528164Z * [new branch] gh/qqaatw/30/base -> origin/gh/qqaatw/30/base 2025-06-01T21:29:03.2528636Z * [new branch] gh/qqaatw/30/head -> origin/gh/qqaatw/30/head 2025-06-01T21:29:03.2529133Z * [new branch] gh/qqaatw/30/orig -> origin/gh/qqaatw/30/orig 2025-06-01T21:29:03.2529802Z * [new branch] gh/raymo/catch-unserialisable-nn-modules -> origin/gh/raymo/catch-unserialisable-nn-modules 2025-06-01T21:29:03.2530553Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-06-01T21:29:03.2531121Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-06-01T21:29:03.2531572Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-06-01T21:29:03.2532026Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-06-01T21:29:03.2532474Z * [new branch] gh/rec/134/base -> origin/gh/rec/134/base 2025-06-01T21:29:03.2532917Z * [new branch] gh/rec/134/head -> origin/gh/rec/134/head 2025-06-01T21:29:03.2533375Z * [new branch] gh/rec/134/orig -> origin/gh/rec/134/orig 2025-06-01T21:29:03.2533823Z * [new branch] gh/rec/137/base -> origin/gh/rec/137/base 2025-06-01T21:29:03.2534267Z * [new branch] gh/rec/137/head -> origin/gh/rec/137/head 2025-06-01T21:29:03.2534711Z * [new branch] gh/rec/137/orig -> origin/gh/rec/137/orig 2025-06-01T21:29:03.2535149Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-06-01T21:29:03.2535601Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-06-01T21:29:03.2536147Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-06-01T21:29:03.2536599Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-06-01T21:29:03.2537042Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-06-01T21:29:03.2537505Z * [new branch] gh/rec/143/base -> origin/gh/rec/143/base 2025-06-01T21:29:03.2538031Z * [new branch] gh/rec/143/head -> origin/gh/rec/143/head 2025-06-01T21:29:03.2538520Z * [new branch] gh/rec/143/orig -> origin/gh/rec/143/orig 2025-06-01T21:29:03.2538983Z * [new branch] gh/rec/144/base -> origin/gh/rec/144/base 2025-06-01T21:29:03.2539426Z * [new branch] gh/rec/144/head -> origin/gh/rec/144/head 2025-06-01T21:29:03.2539876Z * [new branch] gh/rec/144/orig -> origin/gh/rec/144/orig 2025-06-01T21:29:03.2540345Z * [new branch] gh/rec/145/base -> origin/gh/rec/145/base 2025-06-01T21:29:03.2540790Z * [new branch] gh/rec/145/head -> origin/gh/rec/145/head 2025-06-01T21:29:03.2541237Z * [new branch] gh/rec/145/orig -> origin/gh/rec/145/orig 2025-06-01T21:29:03.2541675Z * [new branch] gh/rec/146/base -> origin/gh/rec/146/base 2025-06-01T21:29:03.2542231Z * [new branch] gh/rec/146/head -> origin/gh/rec/146/head 2025-06-01T21:29:03.2542677Z * [new branch] gh/rec/146/orig -> origin/gh/rec/146/orig 2025-06-01T21:29:03.2543115Z * [new branch] gh/rec/147/base -> origin/gh/rec/147/base 2025-06-01T21:29:03.2543563Z * [new branch] gh/rec/147/head -> origin/gh/rec/147/head 2025-06-01T21:29:03.2544050Z * [new branch] gh/rec/147/orig -> origin/gh/rec/147/orig 2025-06-01T21:29:03.3006028Z * [new branch] gh/rec/148/base -> origin/gh/rec/148/base 2025-06-01T21:29:03.3006565Z * [new branch] gh/rec/148/head -> origin/gh/rec/148/head 2025-06-01T21:29:03.3007019Z * [new branch] gh/rec/148/orig -> origin/gh/rec/148/orig 2025-06-01T21:29:03.3007481Z * [new branch] gh/rec/149/base -> origin/gh/rec/149/base 2025-06-01T21:29:03.3007953Z * [new branch] gh/rec/149/head -> origin/gh/rec/149/head 2025-06-01T21:29:03.3008404Z * [new branch] gh/rec/149/orig -> origin/gh/rec/149/orig 2025-06-01T21:29:03.3008854Z * [new branch] gh/rec/150/base -> origin/gh/rec/150/base 2025-06-01T21:29:03.3009290Z * [new branch] gh/rec/150/head -> origin/gh/rec/150/head 2025-06-01T21:29:03.3009740Z * [new branch] gh/rec/150/orig -> origin/gh/rec/150/orig 2025-06-01T21:29:03.3010192Z * [new branch] gh/rec/151/base -> origin/gh/rec/151/base 2025-06-01T21:29:03.3010636Z * [new branch] gh/rec/151/head -> origin/gh/rec/151/head 2025-06-01T21:29:03.3011082Z * [new branch] gh/rec/152/base -> origin/gh/rec/152/base 2025-06-01T21:29:03.3011522Z * [new branch] gh/rec/152/head -> origin/gh/rec/152/head 2025-06-01T21:29:03.3012032Z * [new branch] gh/rec/152/orig -> origin/gh/rec/152/orig 2025-06-01T21:29:03.3012535Z * [new branch] gh/sarckk/1/base -> origin/gh/sarckk/1/base 2025-06-01T21:29:03.3013016Z * [new branch] gh/sarckk/1/head -> origin/gh/sarckk/1/head 2025-06-01T21:29:03.3013474Z * [new branch] gh/sarckk/1/orig -> origin/gh/sarckk/1/orig 2025-06-01T21:29:03.3013946Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-06-01T21:29:03.3014617Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-06-01T21:29:03.3015073Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-06-01T21:29:03.3015575Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-06-01T21:29:03.3016092Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-06-01T21:29:03.3016616Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-06-01T21:29:03.3017138Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-06-01T21:29:03.3017639Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-06-01T21:29:03.3018152Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-06-01T21:29:03.3018657Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-06-01T21:29:03.3019170Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-06-01T21:29:03.3019679Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-06-01T21:29:03.3020179Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-06-01T21:29:03.3020690Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-06-01T21:29:03.3021307Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-06-01T21:29:03.3021827Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-06-01T21:29:03.3022331Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-06-01T21:29:03.3022840Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-06-01T21:29:03.3023358Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-06-01T21:29:03.3023869Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-06-01T21:29:03.3024379Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-06-01T21:29:03.3024884Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-06-01T21:29:03.3025410Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-06-01T21:29:03.3025926Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-06-01T21:29:03.3026441Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-06-01T21:29:03.3026964Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-06-01T21:29:03.3027544Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-06-01T21:29:03.3028087Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-06-01T21:29:03.3028636Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-06-01T21:29:03.3029160Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-06-01T21:29:03.3480012Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-06-01T21:29:03.3480692Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-06-01T21:29:03.3481265Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-06-01T21:29:03.3481812Z * [new branch] gh/shunting314/207/base -> origin/gh/shunting314/207/base 2025-06-01T21:29:03.3482338Z * [new branch] gh/shunting314/207/head -> origin/gh/shunting314/207/head 2025-06-01T21:29:03.3482865Z * [new branch] gh/shunting314/207/orig -> origin/gh/shunting314/207/orig 2025-06-01T21:29:03.3483599Z * [new branch] gh/shunting314/208/base -> origin/gh/shunting314/208/base 2025-06-01T21:29:03.3484115Z * [new branch] gh/shunting314/208/head -> origin/gh/shunting314/208/head 2025-06-01T21:29:03.3484650Z * [new branch] gh/shunting314/208/orig -> origin/gh/shunting314/208/orig 2025-06-01T21:29:03.3485186Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-06-01T21:29:03.3485702Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-06-01T21:29:03.3486195Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-06-01T21:29:03.3486697Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-06-01T21:29:03.3487194Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-06-01T21:29:03.3487683Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-06-01T21:29:03.3488184Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-06-01T21:29:03.3488675Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-06-01T21:29:03.3489194Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-06-01T21:29:03.3489851Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-06-01T21:29:03.3490360Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-06-01T21:29:03.3490877Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-06-01T21:29:03.3491492Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-06-01T21:29:03.3491990Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-06-01T21:29:03.3492506Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-06-01T21:29:03.3493007Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-06-01T21:29:03.3493516Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-06-01T21:29:03.3494023Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-06-01T21:29:03.3494524Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-06-01T21:29:03.3495027Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-06-01T21:29:03.3495521Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-06-01T21:29:03.3496026Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-06-01T21:29:03.3496521Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-06-01T21:29:03.3497032Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-06-01T21:29:03.3497539Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-06-01T21:29:03.3498039Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-06-01T21:29:03.3498549Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-06-01T21:29:03.3499047Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-06-01T21:29:03.3499560Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-06-01T21:29:03.3500067Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-06-01T21:29:03.3500563Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-06-01T21:29:03.3501188Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-06-01T21:29:03.3501704Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-06-01T21:29:03.3502214Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-06-01T21:29:03.3502730Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-06-01T21:29:03.3503230Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-06-01T21:29:03.3503736Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-06-01T21:29:03.3914791Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-06-01T21:29:03.3915444Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-06-01T21:29:03.3916035Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-06-01T21:29:03.3916622Z * [new branch] gh/soulitzer/335/base -> origin/gh/soulitzer/335/base 2025-06-01T21:29:03.3917177Z * [new branch] gh/soulitzer/335/head -> origin/gh/soulitzer/335/head 2025-06-01T21:29:03.3917771Z * [new branch] gh/soulitzer/335/orig -> origin/gh/soulitzer/335/orig 2025-06-01T21:29:03.3918531Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-06-01T21:29:03.3919127Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-06-01T21:29:03.3919675Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-06-01T21:29:03.3920226Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-06-01T21:29:03.3920779Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-06-01T21:29:03.3921334Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-06-01T21:29:03.3921916Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-06-01T21:29:03.3922469Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-06-01T21:29:03.3923022Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-06-01T21:29:03.3923569Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-06-01T21:29:03.3924121Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-06-01T21:29:03.3924701Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-06-01T21:29:03.3925262Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-06-01T21:29:03.3925820Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-06-01T21:29:03.3926365Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-06-01T21:29:03.3926915Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-06-01T21:29:03.3927460Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-06-01T21:29:03.3928042Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-06-01T21:29:03.3928598Z * [new branch] gh/soulitzer/357/base -> origin/gh/soulitzer/357/base 2025-06-01T21:29:03.3929144Z * [new branch] gh/soulitzer/357/head -> origin/gh/soulitzer/357/head 2025-06-01T21:29:03.3929699Z * [new branch] gh/soulitzer/357/orig -> origin/gh/soulitzer/357/orig 2025-06-01T21:29:03.3930246Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-06-01T21:29:03.3930844Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-06-01T21:29:03.3931533Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-06-01T21:29:03.3932083Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-06-01T21:29:03.3932670Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-06-01T21:29:03.3933218Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-06-01T21:29:03.3933770Z * [new branch] gh/soulitzer/360/base -> origin/gh/soulitzer/360/base 2025-06-01T21:29:03.3934313Z * [new branch] gh/soulitzer/360/head -> origin/gh/soulitzer/360/head 2025-06-01T21:29:03.3934861Z * [new branch] gh/soulitzer/360/orig -> origin/gh/soulitzer/360/orig 2025-06-01T21:29:03.3935416Z * [new branch] gh/soulitzer/361/base -> origin/gh/soulitzer/361/base 2025-06-01T21:29:03.3936004Z * [new branch] gh/soulitzer/361/head -> origin/gh/soulitzer/361/head 2025-06-01T21:29:03.3936555Z * [new branch] gh/soulitzer/361/orig -> origin/gh/soulitzer/361/orig 2025-06-01T21:29:03.3937105Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-06-01T21:29:03.3937648Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-06-01T21:29:03.3938339Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-06-01T21:29:03.3938896Z * [new branch] gh/soulitzer/363/base -> origin/gh/soulitzer/363/base 2025-06-01T21:29:03.3939453Z * [new branch] gh/soulitzer/363/head -> origin/gh/soulitzer/363/head 2025-06-01T21:29:03.3940007Z * [new branch] gh/soulitzer/363/orig -> origin/gh/soulitzer/363/orig 2025-06-01T21:29:03.3940568Z * [new branch] gh/soulitzer/364/base -> origin/gh/soulitzer/364/base 2025-06-01T21:29:03.4401461Z * [new branch] gh/soulitzer/364/head -> origin/gh/soulitzer/364/head 2025-06-01T21:29:03.4402029Z * [new branch] gh/soulitzer/364/orig -> origin/gh/soulitzer/364/orig 2025-06-01T21:29:03.4402557Z * [new branch] gh/soulitzer/365/base -> origin/gh/soulitzer/365/base 2025-06-01T21:29:03.4403158Z * [new branch] gh/soulitzer/365/head -> origin/gh/soulitzer/365/head 2025-06-01T21:29:03.4403702Z * [new branch] gh/soulitzer/365/orig -> origin/gh/soulitzer/365/orig 2025-06-01T21:29:03.4404257Z * [new branch] gh/soulitzer/366/base -> origin/gh/soulitzer/366/base 2025-06-01T21:29:03.4404833Z * [new branch] gh/soulitzer/366/head -> origin/gh/soulitzer/366/head 2025-06-01T21:29:03.4405415Z * [new branch] gh/soulitzer/366/orig -> origin/gh/soulitzer/366/orig 2025-06-01T21:29:03.4405964Z * [new branch] gh/soulitzer/367/base -> origin/gh/soulitzer/367/base 2025-06-01T21:29:03.4406536Z * [new branch] gh/soulitzer/367/head -> origin/gh/soulitzer/367/head 2025-06-01T21:29:03.4407114Z * [new branch] gh/soulitzer/367/orig -> origin/gh/soulitzer/367/orig 2025-06-01T21:29:03.4407674Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-06-01T21:29:03.4408206Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-06-01T21:29:03.4408759Z * [new branch] gh/swolchok/732/base -> origin/gh/swolchok/732/base 2025-06-01T21:29:03.4409300Z * [new branch] gh/swolchok/732/head -> origin/gh/swolchok/732/head 2025-06-01T21:29:03.4409841Z * [new branch] gh/swolchok/732/orig -> origin/gh/swolchok/732/orig 2025-06-01T21:29:03.4410371Z * [new branch] gh/swolchok/738/base -> origin/gh/swolchok/738/base 2025-06-01T21:29:03.4411912Z * [new branch] gh/swolchok/738/head -> origin/gh/swolchok/738/head 2025-06-01T21:29:03.4412471Z * [new branch] gh/swolchok/738/orig -> origin/gh/swolchok/738/orig 2025-06-01T21:29:03.4413004Z * [new branch] gh/swolchok/739/base -> origin/gh/swolchok/739/base 2025-06-01T21:29:03.4413545Z * [new branch] gh/swolchok/739/head -> origin/gh/swolchok/739/head 2025-06-01T21:29:03.4414085Z * [new branch] gh/swolchok/739/orig -> origin/gh/swolchok/739/orig 2025-06-01T21:29:03.4414635Z * [new branch] gh/swolchok/740/base -> origin/gh/swolchok/740/base 2025-06-01T21:29:03.4415210Z * [new branch] gh/swolchok/740/head -> origin/gh/swolchok/740/head 2025-06-01T21:29:03.4415751Z * [new branch] gh/swolchok/740/orig -> origin/gh/swolchok/740/orig 2025-06-01T21:29:03.4416297Z * [new branch] gh/swolchok/741/base -> origin/gh/swolchok/741/base 2025-06-01T21:29:03.4416834Z * [new branch] gh/swolchok/741/head -> origin/gh/swolchok/741/head 2025-06-01T21:29:03.4417379Z * [new branch] gh/swolchok/741/orig -> origin/gh/swolchok/741/orig 2025-06-01T21:29:03.4417914Z * [new branch] gh/swolchok/742/base -> origin/gh/swolchok/742/base 2025-06-01T21:29:03.4418641Z * [new branch] gh/swolchok/742/head -> origin/gh/swolchok/742/head 2025-06-01T21:29:03.4419193Z * [new branch] gh/swolchok/742/orig -> origin/gh/swolchok/742/orig 2025-06-01T21:29:03.4429959Z * [new branch] gh/swolchok/743/base -> origin/gh/swolchok/743/base 2025-06-01T21:29:03.4430496Z * [new branch] gh/swolchok/743/head -> origin/gh/swolchok/743/head 2025-06-01T21:29:03.4431012Z * [new branch] gh/swolchok/743/orig -> origin/gh/swolchok/743/orig 2025-06-01T21:29:03.4431524Z * [new branch] gh/swolchok/744/base -> origin/gh/swolchok/744/base 2025-06-01T21:29:03.4432038Z * [new branch] gh/swolchok/744/head -> origin/gh/swolchok/744/head 2025-06-01T21:29:03.4432549Z * [new branch] gh/swolchok/744/orig -> origin/gh/swolchok/744/orig 2025-06-01T21:29:03.4433106Z * [new branch] gh/swolchok/745/base -> origin/gh/swolchok/745/base 2025-06-01T21:29:03.4433675Z * [new branch] gh/swolchok/745/head -> origin/gh/swolchok/745/head 2025-06-01T21:29:03.4434219Z * [new branch] gh/swolchok/745/orig -> origin/gh/swolchok/745/orig 2025-06-01T21:29:03.4434722Z * [new branch] gh/swolchok/746/base -> origin/gh/swolchok/746/base 2025-06-01T21:29:03.4435228Z * [new branch] gh/swolchok/746/head -> origin/gh/swolchok/746/head 2025-06-01T21:29:03.4435730Z * [new branch] gh/swolchok/746/orig -> origin/gh/swolchok/746/orig 2025-06-01T21:29:03.4436236Z * [new branch] gh/swolchok/747/base -> origin/gh/swolchok/747/base 2025-06-01T21:29:03.4436732Z * [new branch] gh/swolchok/747/head -> origin/gh/swolchok/747/head 2025-06-01T21:29:03.4437237Z * [new branch] gh/swolchok/747/orig -> origin/gh/swolchok/747/orig 2025-06-01T21:29:03.6099856Z * [new branch] gh/swolchok/748/base -> origin/gh/swolchok/748/base 2025-06-01T21:29:03.6100438Z * [new branch] gh/swolchok/748/head -> origin/gh/swolchok/748/head 2025-06-01T21:29:03.6100956Z * [new branch] gh/swolchok/748/orig -> origin/gh/swolchok/748/orig 2025-06-01T21:29:03.6101473Z * [new branch] gh/swolchok/749/base -> origin/gh/swolchok/749/base 2025-06-01T21:29:03.6101973Z * [new branch] gh/swolchok/749/head -> origin/gh/swolchok/749/head 2025-06-01T21:29:03.6102485Z * [new branch] gh/swolchok/749/orig -> origin/gh/swolchok/749/orig 2025-06-01T21:29:03.6103171Z * [new branch] gh/swolchok/750/base -> origin/gh/swolchok/750/base 2025-06-01T21:29:03.6103685Z * [new branch] gh/swolchok/750/head -> origin/gh/swolchok/750/head 2025-06-01T21:29:03.6104183Z * [new branch] gh/swolchok/750/orig -> origin/gh/swolchok/750/orig 2025-06-01T21:29:03.6104693Z * [new branch] gh/swolchok/751/base -> origin/gh/swolchok/751/base 2025-06-01T21:29:03.6105191Z * [new branch] gh/swolchok/751/head -> origin/gh/swolchok/751/head 2025-06-01T21:29:03.6105683Z * [new branch] gh/swolchok/751/orig -> origin/gh/swolchok/751/orig 2025-06-01T21:29:03.6106185Z * [new branch] gh/swolchok/752/base -> origin/gh/swolchok/752/base 2025-06-01T21:29:03.6106673Z * [new branch] gh/swolchok/752/head -> origin/gh/swolchok/752/head 2025-06-01T21:29:03.6107174Z * [new branch] gh/swolchok/752/orig -> origin/gh/swolchok/752/orig 2025-06-01T21:29:03.6107723Z * [new branch] gh/swolchok/753/base -> origin/gh/swolchok/753/base 2025-06-01T21:29:03.6108212Z * [new branch] gh/swolchok/753/head -> origin/gh/swolchok/753/head 2025-06-01T21:29:03.6108731Z * [new branch] gh/swolchok/753/orig -> origin/gh/swolchok/753/orig 2025-06-01T21:29:03.6110053Z * [new branch] gh/swolchok/754/base -> origin/gh/swolchok/754/base 2025-06-01T21:29:03.6110573Z * [new branch] gh/swolchok/754/head -> origin/gh/swolchok/754/head 2025-06-01T21:29:03.6111078Z * [new branch] gh/swolchok/754/orig -> origin/gh/swolchok/754/orig 2025-06-01T21:29:03.6111569Z * [new branch] gh/swolchok/755/base -> origin/gh/swolchok/755/base 2025-06-01T21:29:03.6112073Z * [new branch] gh/swolchok/755/head -> origin/gh/swolchok/755/head 2025-06-01T21:29:03.6112576Z * [new branch] gh/swolchok/755/orig -> origin/gh/swolchok/755/orig 2025-06-01T21:29:03.6113074Z * [new branch] gh/swolchok/756/base -> origin/gh/swolchok/756/base 2025-06-01T21:29:03.6113585Z * [new branch] gh/swolchok/756/head -> origin/gh/swolchok/756/head 2025-06-01T21:29:03.6114078Z * [new branch] gh/swolchok/756/orig -> origin/gh/swolchok/756/orig 2025-06-01T21:29:03.6114584Z * [new branch] gh/swolchok/757/base -> origin/gh/swolchok/757/base 2025-06-01T21:29:03.6115072Z * [new branch] gh/swolchok/757/head -> origin/gh/swolchok/757/head 2025-06-01T21:29:03.6115581Z * [new branch] gh/swolchok/757/orig -> origin/gh/swolchok/757/orig 2025-06-01T21:29:03.6116086Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-06-01T21:29:03.6116573Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-06-01T21:29:03.6117078Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-06-01T21:29:03.6117570Z * [new branch] gh/swolchok/759/base -> origin/gh/swolchok/759/base 2025-06-01T21:29:03.6118071Z * [new branch] gh/swolchok/759/head -> origin/gh/swolchok/759/head 2025-06-01T21:29:03.6118558Z * [new branch] gh/swolchok/759/orig -> origin/gh/swolchok/759/orig 2025-06-01T21:29:03.6119063Z * [new branch] gh/swolchok/760/base -> origin/gh/swolchok/760/base 2025-06-01T21:29:03.6119564Z * [new branch] gh/swolchok/760/head -> origin/gh/swolchok/760/head 2025-06-01T21:29:03.6120067Z * [new branch] gh/swolchok/760/orig -> origin/gh/swolchok/760/orig 2025-06-01T21:29:03.6120571Z * [new branch] gh/swolchok/761/base -> origin/gh/swolchok/761/base 2025-06-01T21:29:03.6121065Z * [new branch] gh/swolchok/761/head -> origin/gh/swolchok/761/head 2025-06-01T21:29:03.6121693Z * [new branch] gh/swolchok/761/orig -> origin/gh/swolchok/761/orig 2025-06-01T21:29:03.6122201Z * [new branch] gh/swolchok/762/base -> origin/gh/swolchok/762/base 2025-06-01T21:29:03.6122701Z * [new branch] gh/swolchok/762/head -> origin/gh/swolchok/762/head 2025-06-01T21:29:03.6123215Z * [new branch] gh/swolchok/762/orig -> origin/gh/swolchok/762/orig 2025-06-01T21:29:03.6123710Z * [new branch] gh/swolchok/763/base -> origin/gh/swolchok/763/base 2025-06-01T21:29:03.6124223Z * [new branch] gh/swolchok/763/head -> origin/gh/swolchok/763/head 2025-06-01T21:29:03.6557844Z * [new branch] gh/swolchok/764/base -> origin/gh/swolchok/764/base 2025-06-01T21:29:03.6558364Z * [new branch] gh/swolchok/764/head -> origin/gh/swolchok/764/head 2025-06-01T21:29:03.6558898Z * [new branch] gh/swolchok/764/orig -> origin/gh/swolchok/764/orig 2025-06-01T21:29:03.6559397Z * [new branch] gh/swolchok/765/base -> origin/gh/swolchok/765/base 2025-06-01T21:29:03.6559910Z * [new branch] gh/swolchok/765/head -> origin/gh/swolchok/765/head 2025-06-01T21:29:03.6560420Z * [new branch] gh/swolchok/765/orig -> origin/gh/swolchok/765/orig 2025-06-01T21:29:03.6561101Z * [new branch] gh/swolchok/766/base -> origin/gh/swolchok/766/base 2025-06-01T21:29:03.6561616Z * [new branch] gh/swolchok/766/head -> origin/gh/swolchok/766/head 2025-06-01T21:29:03.6562114Z * [new branch] gh/swolchok/766/orig -> origin/gh/swolchok/766/orig 2025-06-01T21:29:03.6562617Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-06-01T21:29:03.6563127Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-06-01T21:29:03.6563628Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-06-01T21:29:03.6564148Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-06-01T21:29:03.6564636Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-06-01T21:29:03.6565143Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-06-01T21:29:03.6565655Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-06-01T21:29:03.6566145Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-06-01T21:29:03.6566650Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-06-01T21:29:03.6567149Z * [new branch] gh/syed-ahmed/1/base -> origin/gh/syed-ahmed/1/base 2025-06-01T21:29:03.6567653Z * [new branch] gh/syed-ahmed/1/head -> origin/gh/syed-ahmed/1/head 2025-06-01T21:29:03.6568157Z * [new branch] gh/syed-ahmed/1/orig -> origin/gh/syed-ahmed/1/orig 2025-06-01T21:29:03.6568647Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-06-01T21:29:03.6569137Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-06-01T21:29:03.6569622Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-06-01T21:29:03.6570165Z * [new branch] gh/tugsbayasgalan/290/base -> origin/gh/tugsbayasgalan/290/base 2025-06-01T21:29:03.6570747Z * [new branch] gh/tugsbayasgalan/290/head -> origin/gh/tugsbayasgalan/290/head 2025-06-01T21:29:03.6571313Z * [new branch] gh/tugsbayasgalan/290/orig -> origin/gh/tugsbayasgalan/290/orig 2025-06-01T21:29:03.6571887Z * [new branch] gh/tugsbayasgalan/298/base -> origin/gh/tugsbayasgalan/298/base 2025-06-01T21:29:03.6572579Z * [new branch] gh/tugsbayasgalan/298/head -> origin/gh/tugsbayasgalan/298/head 2025-06-01T21:29:03.6573148Z * [new branch] gh/tugsbayasgalan/298/orig -> origin/gh/tugsbayasgalan/298/orig 2025-06-01T21:29:03.6573721Z * [new branch] gh/tugsbayasgalan/299/base -> origin/gh/tugsbayasgalan/299/base 2025-06-01T21:29:03.6574285Z * [new branch] gh/tugsbayasgalan/299/head -> origin/gh/tugsbayasgalan/299/head 2025-06-01T21:29:03.6574957Z * [new branch] gh/tugsbayasgalan/299/orig -> origin/gh/tugsbayasgalan/299/orig 2025-06-01T21:29:03.6575571Z * [new branch] gh/tugsbayasgalan/300/base -> origin/gh/tugsbayasgalan/300/base 2025-06-01T21:29:03.6576148Z * [new branch] gh/tugsbayasgalan/300/head -> origin/gh/tugsbayasgalan/300/head 2025-06-01T21:29:03.6576722Z * [new branch] gh/tugsbayasgalan/300/orig -> origin/gh/tugsbayasgalan/300/orig 2025-06-01T21:29:03.6577282Z * [new branch] gh/tugsbayasgalan/301/base -> origin/gh/tugsbayasgalan/301/base 2025-06-01T21:29:03.6577853Z * [new branch] gh/tugsbayasgalan/301/head -> origin/gh/tugsbayasgalan/301/head 2025-06-01T21:29:03.6578417Z * [new branch] gh/tugsbayasgalan/301/orig -> origin/gh/tugsbayasgalan/301/orig 2025-06-01T21:29:03.6578944Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-06-01T21:29:03.6579530Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-06-01T21:29:03.6580003Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-06-01T21:29:03.6580479Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-06-01T21:29:03.6580987Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-06-01T21:29:03.6581463Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-06-01T21:29:03.6581916Z * [new branch] gh/vkuzo/6/base -> origin/gh/vkuzo/6/base 2025-06-01T21:29:03.7083242Z * [new branch] gh/vkuzo/6/head -> origin/gh/vkuzo/6/head 2025-06-01T21:29:03.7083830Z * [new branch] gh/vkuzo/6/orig -> origin/gh/vkuzo/6/orig 2025-06-01T21:29:03.7084303Z * [new branch] gh/vkuzo/9/base -> origin/gh/vkuzo/9/base 2025-06-01T21:29:03.7084793Z * [new branch] gh/vkuzo/9/head -> origin/gh/vkuzo/9/head 2025-06-01T21:29:03.7085247Z * [new branch] gh/vkuzo/9/orig -> origin/gh/vkuzo/9/orig 2025-06-01T21:29:03.7085725Z * [new branch] gh/vmoens/15/base -> origin/gh/vmoens/15/base 2025-06-01T21:29:03.7086201Z * [new branch] gh/vmoens/15/head -> origin/gh/vmoens/15/head 2025-06-01T21:29:03.7086682Z * [new branch] gh/vmoens/15/orig -> origin/gh/vmoens/15/orig 2025-06-01T21:29:03.7087220Z * [new branch] gh/vmoens/16/base -> origin/gh/vmoens/16/base 2025-06-01T21:29:03.7087696Z * [new branch] gh/vmoens/16/head -> origin/gh/vmoens/16/head 2025-06-01T21:29:03.7088160Z * [new branch] gh/vmoens/16/orig -> origin/gh/vmoens/16/orig 2025-06-01T21:29:03.7088635Z * [new branch] gh/vmoens/17/base -> origin/gh/vmoens/17/base 2025-06-01T21:29:03.7089118Z * [new branch] gh/vmoens/17/head -> origin/gh/vmoens/17/head 2025-06-01T21:29:03.7089586Z * [new branch] gh/vmoens/17/orig -> origin/gh/vmoens/17/orig 2025-06-01T21:29:03.7090057Z * [new branch] gh/vmoens/18/base -> origin/gh/vmoens/18/base 2025-06-01T21:29:03.7090522Z * [new branch] gh/vmoens/18/head -> origin/gh/vmoens/18/head 2025-06-01T21:29:03.7091003Z * [new branch] gh/vmoens/18/orig -> origin/gh/vmoens/18/orig 2025-06-01T21:29:03.7091704Z * [new branch] gh/wanchaol/370/base -> origin/gh/wanchaol/370/base 2025-06-01T21:29:03.7092208Z * [new branch] gh/wanchaol/370/head -> origin/gh/wanchaol/370/head 2025-06-01T21:29:03.7092716Z * [new branch] gh/wanchaol/370/orig -> origin/gh/wanchaol/370/orig 2025-06-01T21:29:03.7093218Z * [new branch] gh/wanchaol/371/base -> origin/gh/wanchaol/371/base 2025-06-01T21:29:03.7093752Z * [new branch] gh/wanchaol/371/head -> origin/gh/wanchaol/371/head 2025-06-01T21:29:03.7094248Z * [new branch] gh/wanchaol/371/orig -> origin/gh/wanchaol/371/orig 2025-06-01T21:29:03.7094739Z * [new branch] gh/wanchaol/372/base -> origin/gh/wanchaol/372/base 2025-06-01T21:29:03.7095232Z * [new branch] gh/wanchaol/372/head -> origin/gh/wanchaol/372/head 2025-06-01T21:29:03.7095723Z * [new branch] gh/wanchaol/372/orig -> origin/gh/wanchaol/372/orig 2025-06-01T21:29:03.7096235Z * [new branch] gh/wconstab/380/base -> origin/gh/wconstab/380/base 2025-06-01T21:29:03.7096731Z * [new branch] gh/wconstab/380/head -> origin/gh/wconstab/380/head 2025-06-01T21:29:03.7097217Z * [new branch] gh/wconstab/380/orig -> origin/gh/wconstab/380/orig 2025-06-01T21:29:03.7097854Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-06-01T21:29:03.7098346Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-06-01T21:29:03.7098851Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-06-01T21:29:03.7099353Z * [new branch] gh/wconstab/395/base -> origin/gh/wconstab/395/base 2025-06-01T21:29:03.7099849Z * [new branch] gh/wconstab/395/head -> origin/gh/wconstab/395/head 2025-06-01T21:29:03.7100353Z * [new branch] gh/wconstab/395/orig -> origin/gh/wconstab/395/orig 2025-06-01T21:29:03.7100855Z * [new branch] gh/wconstab/396/base -> origin/gh/wconstab/396/base 2025-06-01T21:29:03.7101363Z * [new branch] gh/wconstab/396/head -> origin/gh/wconstab/396/head 2025-06-01T21:29:03.7101852Z * [new branch] gh/wconstab/396/orig -> origin/gh/wconstab/396/orig 2025-06-01T21:29:03.7102363Z * [new branch] gh/wconstab/399/base -> origin/gh/wconstab/399/base 2025-06-01T21:29:03.7102864Z * [new branch] gh/wconstab/399/head -> origin/gh/wconstab/399/head 2025-06-01T21:29:03.7103357Z * [new branch] gh/wconstab/399/orig -> origin/gh/wconstab/399/orig 2025-06-01T21:29:03.7103856Z * [new branch] gh/wconstab/410/base -> origin/gh/wconstab/410/base 2025-06-01T21:29:03.7104350Z * [new branch] gh/wconstab/410/head -> origin/gh/wconstab/410/head 2025-06-01T21:29:03.7104858Z * [new branch] gh/wconstab/410/orig -> origin/gh/wconstab/410/orig 2025-06-01T21:29:03.7105359Z * [new branch] gh/wconstab/412/base -> origin/gh/wconstab/412/base 2025-06-01T21:29:03.7105851Z * [new branch] gh/wconstab/412/head -> origin/gh/wconstab/412/head 2025-06-01T21:29:03.7106352Z * [new branch] gh/wconstab/412/orig -> origin/gh/wconstab/412/orig 2025-06-01T21:29:03.7568123Z * [new branch] gh/wconstab/413/base -> origin/gh/wconstab/413/base 2025-06-01T21:29:03.7568712Z * [new branch] gh/wconstab/413/head -> origin/gh/wconstab/413/head 2025-06-01T21:29:03.7569229Z * [new branch] gh/wconstab/413/orig -> origin/gh/wconstab/413/orig 2025-06-01T21:29:03.7569728Z * [new branch] gh/wconstab/414/base -> origin/gh/wconstab/414/base 2025-06-01T21:29:03.7570231Z * [new branch] gh/wconstab/414/head -> origin/gh/wconstab/414/head 2025-06-01T21:29:03.7570926Z * [new branch] gh/wconstab/414/orig -> origin/gh/wconstab/414/orig 2025-06-01T21:29:03.7571423Z * [new branch] gh/wconstab/415/base -> origin/gh/wconstab/415/base 2025-06-01T21:29:03.7571921Z * [new branch] gh/wconstab/415/head -> origin/gh/wconstab/415/head 2025-06-01T21:29:03.7572428Z * [new branch] gh/wconstab/415/orig -> origin/gh/wconstab/415/orig 2025-06-01T21:29:03.7572937Z * [new branch] gh/wconstab/416/base -> origin/gh/wconstab/416/base 2025-06-01T21:29:03.7573428Z * [new branch] gh/wconstab/416/head -> origin/gh/wconstab/416/head 2025-06-01T21:29:03.7573926Z * [new branch] gh/wconstab/416/orig -> origin/gh/wconstab/416/orig 2025-06-01T21:29:03.7574423Z * [new branch] gh/wconstab/417/base -> origin/gh/wconstab/417/base 2025-06-01T21:29:03.7574910Z * [new branch] gh/wconstab/417/head -> origin/gh/wconstab/417/head 2025-06-01T21:29:03.7575414Z * [new branch] gh/wconstab/417/orig -> origin/gh/wconstab/417/orig 2025-06-01T21:29:03.7575935Z * [new branch] gh/weifengpy/21/base -> origin/gh/weifengpy/21/base 2025-06-01T21:29:03.7576444Z * [new branch] gh/weifengpy/21/head -> origin/gh/weifengpy/21/head 2025-06-01T21:29:03.7577059Z * [new branch] gh/weifengpy/21/orig -> origin/gh/weifengpy/21/orig 2025-06-01T21:29:03.7577557Z * [new branch] gh/weifengpy/25/base -> origin/gh/weifengpy/25/base 2025-06-01T21:29:03.7578184Z * [new branch] gh/weifengpy/25/head -> origin/gh/weifengpy/25/head 2025-06-01T21:29:03.7578681Z * [new branch] gh/weifengpy/25/orig -> origin/gh/weifengpy/25/orig 2025-06-01T21:29:03.7579190Z * [new branch] gh/weifengpy/26/base -> origin/gh/weifengpy/26/base 2025-06-01T21:29:03.7579690Z * [new branch] gh/weifengpy/26/head -> origin/gh/weifengpy/26/head 2025-06-01T21:29:03.7580193Z * [new branch] gh/weifengpy/26/orig -> origin/gh/weifengpy/26/orig 2025-06-01T21:29:03.7580723Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-06-01T21:29:03.7581264Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-06-01T21:29:03.7581805Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-06-01T21:29:03.7582335Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-06-01T21:29:03.7582875Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-06-01T21:29:03.7583418Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-06-01T21:29:03.7584012Z * [new branch] gh/williamwen42/210/base -> origin/gh/williamwen42/210/base 2025-06-01T21:29:03.7584554Z * [new branch] gh/williamwen42/210/head -> origin/gh/williamwen42/210/head 2025-06-01T21:29:03.7585078Z * [new branch] gh/williamwen42/210/orig -> origin/gh/williamwen42/210/orig 2025-06-01T21:29:03.7585613Z * [new branch] gh/williamwen42/220/base -> origin/gh/williamwen42/220/base 2025-06-01T21:29:03.7586145Z * [new branch] gh/williamwen42/220/head -> origin/gh/williamwen42/220/head 2025-06-01T21:29:03.7586678Z * [new branch] gh/williamwen42/220/orig -> origin/gh/williamwen42/220/orig 2025-06-01T21:29:03.7587210Z * [new branch] gh/williamwen42/227/base -> origin/gh/williamwen42/227/base 2025-06-01T21:29:03.7587869Z * [new branch] gh/williamwen42/227/head -> origin/gh/williamwen42/227/head 2025-06-01T21:29:03.7588411Z * [new branch] gh/williamwen42/227/orig -> origin/gh/williamwen42/227/orig 2025-06-01T21:29:03.7589080Z * [new branch] gh/williamwen42/232/base -> origin/gh/williamwen42/232/base 2025-06-01T21:29:03.7589616Z * [new branch] gh/williamwen42/232/head -> origin/gh/williamwen42/232/head 2025-06-01T21:29:03.7590157Z * [new branch] gh/williamwen42/232/orig -> origin/gh/williamwen42/232/orig 2025-06-01T21:29:03.7590693Z * [new branch] gh/williamwen42/235/base -> origin/gh/williamwen42/235/base 2025-06-01T21:29:03.7591232Z * [new branch] gh/williamwen42/235/head -> origin/gh/williamwen42/235/head 2025-06-01T21:29:03.7591758Z * [new branch] gh/williamwen42/235/orig -> origin/gh/williamwen42/235/orig 2025-06-01T21:29:03.7592294Z * [new branch] gh/williamwen42/236/base -> origin/gh/williamwen42/236/base 2025-06-01T21:29:03.8028280Z * [new branch] gh/williamwen42/236/head -> origin/gh/williamwen42/236/head 2025-06-01T21:29:03.8028891Z * [new branch] gh/williamwen42/236/orig -> origin/gh/williamwen42/236/orig 2025-06-01T21:29:03.8029475Z * [new branch] gh/williamwen42/237/base -> origin/gh/williamwen42/237/base 2025-06-01T21:29:03.8030016Z * [new branch] gh/williamwen42/237/head -> origin/gh/williamwen42/237/head 2025-06-01T21:29:03.8030548Z * [new branch] gh/williamwen42/237/orig -> origin/gh/williamwen42/237/orig 2025-06-01T21:29:03.8031274Z * [new branch] gh/williamwen42/238/base -> origin/gh/williamwen42/238/base 2025-06-01T21:29:03.8031809Z * [new branch] gh/williamwen42/238/head -> origin/gh/williamwen42/238/head 2025-06-01T21:29:03.8032357Z * [new branch] gh/williamwen42/238/orig -> origin/gh/williamwen42/238/orig 2025-06-01T21:29:03.8032987Z * [new branch] gh/williamwen42/239/base -> origin/gh/williamwen42/239/base 2025-06-01T21:29:03.8033515Z * [new branch] gh/williamwen42/239/head -> origin/gh/williamwen42/239/head 2025-06-01T21:29:03.8034064Z * [new branch] gh/williamwen42/239/orig -> origin/gh/williamwen42/239/orig 2025-06-01T21:29:03.8034587Z * [new branch] gh/williamwen42/240/base -> origin/gh/williamwen42/240/base 2025-06-01T21:29:03.8035130Z * [new branch] gh/williamwen42/240/head -> origin/gh/williamwen42/240/head 2025-06-01T21:29:03.8035666Z * [new branch] gh/williamwen42/240/orig -> origin/gh/williamwen42/240/orig 2025-06-01T21:29:03.8036206Z * [new branch] gh/williamwen42/241/base -> origin/gh/williamwen42/241/base 2025-06-01T21:29:03.8036742Z * [new branch] gh/williamwen42/241/head -> origin/gh/williamwen42/241/head 2025-06-01T21:29:03.8037274Z * [new branch] gh/williamwen42/241/orig -> origin/gh/williamwen42/241/orig 2025-06-01T21:29:03.8037808Z * [new branch] gh/williamwen42/242/base -> origin/gh/williamwen42/242/base 2025-06-01T21:29:03.8038342Z * [new branch] gh/williamwen42/242/head -> origin/gh/williamwen42/242/head 2025-06-01T21:29:03.8038886Z * [new branch] gh/williamwen42/242/orig -> origin/gh/williamwen42/242/orig 2025-06-01T21:29:03.8039441Z * [new branch] gh/williamwen42/243/base -> origin/gh/williamwen42/243/base 2025-06-01T21:29:03.8039968Z * [new branch] gh/williamwen42/243/head -> origin/gh/williamwen42/243/head 2025-06-01T21:29:03.8040504Z * [new branch] gh/williamwen42/243/orig -> origin/gh/williamwen42/243/orig 2025-06-01T21:29:03.8041040Z * [new branch] gh/williamwen42/244/base -> origin/gh/williamwen42/244/base 2025-06-01T21:29:03.8041565Z * [new branch] gh/williamwen42/244/head -> origin/gh/williamwen42/244/head 2025-06-01T21:29:03.8042104Z * [new branch] gh/williamwen42/244/orig -> origin/gh/williamwen42/244/orig 2025-06-01T21:29:03.8042634Z * [new branch] gh/williamwen42/245/base -> origin/gh/williamwen42/245/base 2025-06-01T21:29:03.8043313Z * [new branch] gh/williamwen42/245/head -> origin/gh/williamwen42/245/head 2025-06-01T21:29:03.8043850Z * [new branch] gh/williamwen42/245/orig -> origin/gh/williamwen42/245/orig 2025-06-01T21:29:03.8044372Z * [new branch] gh/xmfan/166/base -> origin/gh/xmfan/166/base 2025-06-01T21:29:03.8044861Z * [new branch] gh/xmfan/166/head -> origin/gh/xmfan/166/head 2025-06-01T21:29:03.8045328Z * [new branch] gh/xmfan/166/orig -> origin/gh/xmfan/166/orig 2025-06-01T21:29:03.8045795Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-06-01T21:29:03.8046257Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-06-01T21:29:03.8046731Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-06-01T21:29:03.8047211Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-06-01T21:29:03.8047677Z * [new branch] gh/xmfan/173/base -> origin/gh/xmfan/173/base 2025-06-01T21:29:03.8048147Z * [new branch] gh/xmfan/173/head -> origin/gh/xmfan/173/head 2025-06-01T21:29:03.8048608Z * [new branch] gh/xmfan/173/orig -> origin/gh/xmfan/173/orig 2025-06-01T21:29:03.8049172Z * [new branch] gh/xmfan/174/base -> origin/gh/xmfan/174/base 2025-06-01T21:29:03.8049646Z * [new branch] gh/xmfan/174/head -> origin/gh/xmfan/174/head 2025-06-01T21:29:03.8050117Z * [new branch] gh/xmfan/174/orig -> origin/gh/xmfan/174/orig 2025-06-01T21:29:03.8050593Z * [new branch] gh/xmfan/178/base -> origin/gh/xmfan/178/base 2025-06-01T21:29:03.8051056Z * [new branch] gh/xmfan/178/head -> origin/gh/xmfan/178/head 2025-06-01T21:29:03.8051550Z * [new branch] gh/xmfan/178/orig -> origin/gh/xmfan/178/orig 2025-06-01T21:29:03.8052014Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-06-01T21:29:03.8501347Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-06-01T21:29:03.8501941Z * [new branch] gh/xmfan/180/base -> origin/gh/xmfan/180/base 2025-06-01T21:29:03.8502544Z * [new branch] gh/xmfan/180/head -> origin/gh/xmfan/180/head 2025-06-01T21:29:03.8503069Z * [new branch] gh/xmfan/180/orig -> origin/gh/xmfan/180/orig 2025-06-01T21:29:03.8503620Z * [new branch] gh/xmfan/187/base -> origin/gh/xmfan/187/base 2025-06-01T21:29:03.8504134Z * [new branch] gh/xmfan/187/head -> origin/gh/xmfan/187/head 2025-06-01T21:29:03.8504690Z * [new branch] gh/xmfan/187/orig -> origin/gh/xmfan/187/orig 2025-06-01T21:29:03.8505204Z * [new branch] gh/xmfan/193/base -> origin/gh/xmfan/193/base 2025-06-01T21:29:03.8505754Z * [new branch] gh/xmfan/193/head -> origin/gh/xmfan/193/head 2025-06-01T21:29:03.8506258Z * [new branch] gh/xmfan/193/orig -> origin/gh/xmfan/193/orig 2025-06-01T21:29:03.8506803Z * [new branch] gh/xmfan/194/base -> origin/gh/xmfan/194/base 2025-06-01T21:29:03.8507416Z * [new branch] gh/xmfan/194/head -> origin/gh/xmfan/194/head 2025-06-01T21:29:03.8507932Z * [new branch] gh/xmfan/194/orig -> origin/gh/xmfan/194/orig 2025-06-01T21:29:03.8508513Z * [new branch] gh/xmfan/200/base -> origin/gh/xmfan/200/base 2025-06-01T21:29:03.8509050Z * [new branch] gh/xmfan/200/head -> origin/gh/xmfan/200/head 2025-06-01T21:29:03.8509572Z * [new branch] gh/xmfan/200/orig -> origin/gh/xmfan/200/orig 2025-06-01T21:29:03.8510344Z * [new branch] gh/xmfan/201/base -> origin/gh/xmfan/201/base 2025-06-01T21:29:03.8510852Z * [new branch] gh/xmfan/201/head -> origin/gh/xmfan/201/head 2025-06-01T21:29:03.8511417Z * [new branch] gh/xmfan/201/orig -> origin/gh/xmfan/201/orig 2025-06-01T21:29:03.8511924Z * [new branch] gh/xmfan/202/base -> origin/gh/xmfan/202/base 2025-06-01T21:29:03.8512492Z * [new branch] gh/xmfan/202/head -> origin/gh/xmfan/202/head 2025-06-01T21:29:03.8513007Z * [new branch] gh/xmfan/202/orig -> origin/gh/xmfan/202/orig 2025-06-01T21:29:03.8513554Z * [new branch] gh/xmfan/206/base -> origin/gh/xmfan/206/base 2025-06-01T21:29:03.8514061Z * [new branch] gh/xmfan/206/head -> origin/gh/xmfan/206/head 2025-06-01T21:29:03.8514604Z * [new branch] gh/xmfan/206/orig -> origin/gh/xmfan/206/orig 2025-06-01T21:29:03.8515117Z * [new branch] gh/xmfan/213/base -> origin/gh/xmfan/213/base 2025-06-01T21:29:03.8515665Z * [new branch] gh/xmfan/213/head -> origin/gh/xmfan/213/head 2025-06-01T21:29:03.8516167Z * [new branch] gh/xmfan/213/orig -> origin/gh/xmfan/213/orig 2025-06-01T21:29:03.8516678Z * [new branch] gh/xmfan/214/base -> origin/gh/xmfan/214/base 2025-06-01T21:29:03.8517357Z * [new branch] gh/xmfan/214/head -> origin/gh/xmfan/214/head 2025-06-01T21:29:03.8517931Z * [new branch] gh/xmfan/214/orig -> origin/gh/xmfan/214/orig 2025-06-01T21:29:03.8518448Z * [new branch] gh/xmfan/216/base -> origin/gh/xmfan/216/base 2025-06-01T21:29:03.8518991Z * [new branch] gh/xmfan/216/head -> origin/gh/xmfan/216/head 2025-06-01T21:29:03.8519506Z * [new branch] gh/xmfan/216/orig -> origin/gh/xmfan/216/orig 2025-06-01T21:29:03.8520051Z * [new branch] gh/xmfan/217/base -> origin/gh/xmfan/217/base 2025-06-01T21:29:03.8520564Z * [new branch] gh/xmfan/217/head -> origin/gh/xmfan/217/head 2025-06-01T21:29:03.8521064Z * [new branch] gh/xmfan/217/orig -> origin/gh/xmfan/217/orig 2025-06-01T21:29:03.8521621Z * [new branch] gh/xmfan/220/base -> origin/gh/xmfan/220/base 2025-06-01T21:29:03.8522137Z * [new branch] gh/xmfan/220/head -> origin/gh/xmfan/220/head 2025-06-01T21:29:03.8522688Z * [new branch] gh/xmfan/220/orig -> origin/gh/xmfan/220/orig 2025-06-01T21:29:03.8523204Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-06-01T21:29:03.8523667Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-06-01T21:29:03.8524141Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-06-01T21:29:03.8524618Z * [new branch] gh/xmfan/224/base -> origin/gh/xmfan/224/base 2025-06-01T21:29:03.8525077Z * [new branch] gh/xmfan/224/head -> origin/gh/xmfan/224/head 2025-06-01T21:29:03.8525544Z * [new branch] gh/xmfan/224/orig -> origin/gh/xmfan/224/orig 2025-06-01T21:29:03.8526006Z * [new branch] gh/xmfan/225/base -> origin/gh/xmfan/225/base 2025-06-01T21:29:03.8526473Z * [new branch] gh/xmfan/225/head -> origin/gh/xmfan/225/head 2025-06-01T21:29:03.8979241Z * [new branch] gh/xmfan/225/orig -> origin/gh/xmfan/225/orig 2025-06-01T21:29:03.8979810Z * [new branch] gh/xmfan/226/base -> origin/gh/xmfan/226/base 2025-06-01T21:29:03.8980330Z * [new branch] gh/xmfan/226/head -> origin/gh/xmfan/226/head 2025-06-01T21:29:03.8980817Z * [new branch] gh/xmfan/226/orig -> origin/gh/xmfan/226/orig 2025-06-01T21:29:03.8981499Z * [new branch] gh/xmfan/227/base -> origin/gh/xmfan/227/base 2025-06-01T21:29:03.8981968Z * [new branch] gh/xmfan/227/head -> origin/gh/xmfan/227/head 2025-06-01T21:29:03.8982431Z * [new branch] gh/xmfan/227/orig -> origin/gh/xmfan/227/orig 2025-06-01T21:29:03.8982926Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-06-01T21:29:03.8983393Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-06-01T21:29:03.8983864Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-06-01T21:29:03.8984333Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-06-01T21:29:03.8984792Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-06-01T21:29:03.8985263Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-06-01T21:29:03.8985732Z * [new branch] gh/xmfan/230/base -> origin/gh/xmfan/230/base 2025-06-01T21:29:03.8986204Z * [new branch] gh/xmfan/230/head -> origin/gh/xmfan/230/head 2025-06-01T21:29:03.8986678Z * [new branch] gh/xmfan/230/orig -> origin/gh/xmfan/230/orig 2025-06-01T21:29:03.8987257Z * [new branch] gh/xmfan/231/base -> origin/gh/xmfan/231/base 2025-06-01T21:29:03.8987800Z * [new branch] gh/xmfan/231/head -> origin/gh/xmfan/231/head 2025-06-01T21:29:03.8988266Z * [new branch] gh/xmfan/231/orig -> origin/gh/xmfan/231/orig 2025-06-01T21:29:03.8988736Z * [new branch] gh/xmfan/232/base -> origin/gh/xmfan/232/base 2025-06-01T21:29:03.8989205Z * [new branch] gh/xmfan/232/head -> origin/gh/xmfan/232/head 2025-06-01T21:29:03.8989681Z * [new branch] gh/xmfan/232/orig -> origin/gh/xmfan/232/orig 2025-06-01T21:29:03.8990155Z * [new branch] gh/xmfan/233/base -> origin/gh/xmfan/233/base 2025-06-01T21:29:03.8990649Z * [new branch] gh/xmfan/233/head -> origin/gh/xmfan/233/head 2025-06-01T21:29:03.8991142Z * [new branch] gh/xmfan/233/orig -> origin/gh/xmfan/233/orig 2025-06-01T21:29:03.8991695Z * [new branch] gh/xmfan/234/base -> origin/gh/xmfan/234/base 2025-06-01T21:29:03.8992175Z * [new branch] gh/xmfan/234/head -> origin/gh/xmfan/234/head 2025-06-01T21:29:03.8992647Z * [new branch] gh/xmfan/234/orig -> origin/gh/xmfan/234/orig 2025-06-01T21:29:03.8993102Z * [new branch] gh/xmfan/235/base -> origin/gh/xmfan/235/base 2025-06-01T21:29:03.8993563Z * [new branch] gh/xmfan/235/head -> origin/gh/xmfan/235/head 2025-06-01T21:29:03.8994017Z * [new branch] gh/xmfan/235/orig -> origin/gh/xmfan/235/orig 2025-06-01T21:29:03.8994489Z * [new branch] gh/xmfan/236/base -> origin/gh/xmfan/236/base 2025-06-01T21:29:03.8994952Z * [new branch] gh/xmfan/236/head -> origin/gh/xmfan/236/head 2025-06-01T21:29:03.8995415Z * [new branch] gh/xmfan/236/orig -> origin/gh/xmfan/236/orig 2025-06-01T21:29:03.8995885Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-06-01T21:29:03.8996344Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-06-01T21:29:03.8996815Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-06-01T21:29:03.8997278Z * [new branch] gh/xmfan/238/base -> origin/gh/xmfan/238/base 2025-06-01T21:29:03.8997743Z * [new branch] gh/xmfan/238/head -> origin/gh/xmfan/238/head 2025-06-01T21:29:03.8998349Z * [new branch] gh/xmfan/238/orig -> origin/gh/xmfan/238/orig 2025-06-01T21:29:03.8998814Z * [new branch] gh/xmfan/239/base -> origin/gh/xmfan/239/base 2025-06-01T21:29:03.8999292Z * [new branch] gh/xmfan/239/head -> origin/gh/xmfan/239/head 2025-06-01T21:29:03.8999764Z * [new branch] gh/xmfan/239/orig -> origin/gh/xmfan/239/orig 2025-06-01T21:29:03.9000252Z * [new branch] gh/xmfan/240/base -> origin/gh/xmfan/240/base 2025-06-01T21:29:03.9000729Z * [new branch] gh/xmfan/240/head -> origin/gh/xmfan/240/head 2025-06-01T21:29:03.9001189Z * [new branch] gh/xmfan/240/orig -> origin/gh/xmfan/240/orig 2025-06-01T21:29:03.9001656Z * [new branch] gh/xmfan/241/base -> origin/gh/xmfan/241/base 2025-06-01T21:29:03.9002118Z * [new branch] gh/xmfan/241/head -> origin/gh/xmfan/241/head 2025-06-01T21:29:03.9491407Z * [new branch] gh/xmfan/241/orig -> origin/gh/xmfan/241/orig 2025-06-01T21:29:03.9491945Z * [new branch] gh/xmfan/242/base -> origin/gh/xmfan/242/base 2025-06-01T21:29:03.9492442Z * [new branch] gh/xmfan/242/head -> origin/gh/xmfan/242/head 2025-06-01T21:29:03.9492917Z * [new branch] gh/xmfan/242/orig -> origin/gh/xmfan/242/orig 2025-06-01T21:29:03.9493584Z * [new branch] gh/xmfan/243/base -> origin/gh/xmfan/243/base 2025-06-01T21:29:03.9494066Z * [new branch] gh/xmfan/243/head -> origin/gh/xmfan/243/head 2025-06-01T21:29:03.9494541Z * [new branch] gh/xmfan/243/orig -> origin/gh/xmfan/243/orig 2025-06-01T21:29:03.9495098Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-06-01T21:29:03.9495687Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-06-01T21:29:03.9496266Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-06-01T21:29:03.9496796Z * [new branch] gh/xuanzhang816/13/base -> origin/gh/xuanzhang816/13/base 2025-06-01T21:29:03.9497323Z * [new branch] gh/xuanzhang816/13/head -> origin/gh/xuanzhang816/13/head 2025-06-01T21:29:03.9497849Z * [new branch] gh/xuanzhang816/13/orig -> origin/gh/xuanzhang816/13/orig 2025-06-01T21:29:03.9498360Z * [new branch] gh/xuhancn/1/base -> origin/gh/xuhancn/1/base 2025-06-01T21:29:03.9498839Z * [new branch] gh/xuhancn/1/head -> origin/gh/xuhancn/1/head 2025-06-01T21:29:03.9499324Z * [new branch] gh/xuhancn/2/base -> origin/gh/xuhancn/2/base 2025-06-01T21:29:03.9499806Z * [new branch] gh/xuhancn/2/head -> origin/gh/xuhancn/2/head 2025-06-01T21:29:03.9500271Z * [new branch] gh/xuhancn/3/base -> origin/gh/xuhancn/3/base 2025-06-01T21:29:03.9500746Z * [new branch] gh/xuhancn/3/head -> origin/gh/xuhancn/3/head 2025-06-01T21:29:03.9501213Z * [new branch] gh/xuhancn/4/base -> origin/gh/xuhancn/4/base 2025-06-01T21:29:03.9501693Z * [new branch] gh/xuhancn/4/head -> origin/gh/xuhancn/4/head 2025-06-01T21:29:03.9502165Z * [new branch] gh/xuhancn/5/base -> origin/gh/xuhancn/5/base 2025-06-01T21:29:03.9502658Z * [new branch] gh/xuhancn/5/head -> origin/gh/xuhancn/5/head 2025-06-01T21:29:03.9503133Z * [new branch] gh/xuhancn/6/base -> origin/gh/xuhancn/6/base 2025-06-01T21:29:03.9503596Z * [new branch] gh/xuhancn/6/head -> origin/gh/xuhancn/6/head 2025-06-01T21:29:03.9504063Z * [new branch] gh/xuhancn/7/base -> origin/gh/xuhancn/7/base 2025-06-01T21:29:03.9504526Z * [new branch] gh/xuhancn/7/head -> origin/gh/xuhancn/7/head 2025-06-01T21:29:03.9505165Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-06-01T21:29:03.9505676Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-06-01T21:29:03.9506164Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-06-01T21:29:03.9506662Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-06-01T21:29:03.9507149Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-06-01T21:29:03.9507733Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-06-01T21:29:03.9508224Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-06-01T21:29:03.9508716Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-06-01T21:29:03.9509223Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-06-01T21:29:03.9509714Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-06-01T21:29:03.9510216Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-06-01T21:29:03.9510713Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-06-01T21:29:03.9511302Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-06-01T21:29:03.9511891Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-06-01T21:29:03.9512429Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-06-01T21:29:03.9512975Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-06-01T21:29:03.9513460Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-06-01T21:29:03.9513962Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-06-01T21:29:03.9514456Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-06-01T21:29:03.9514940Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-06-01T21:29:03.9931616Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-06-01T21:29:03.9932246Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-06-01T21:29:03.9932743Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-06-01T21:29:03.9933243Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-06-01T21:29:03.9933727Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-06-01T21:29:03.9934221Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-06-01T21:29:03.9934735Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-06-01T21:29:03.9935223Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-06-01T21:29:03.9935713Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-06-01T21:29:03.9936206Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-06-01T21:29:03.9936697Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-06-01T21:29:03.9937189Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-06-01T21:29:03.9937677Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-06-01T21:29:03.9938174Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-06-01T21:29:03.9938860Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-06-01T21:29:03.9939359Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-06-01T21:29:03.9939845Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-06-01T21:29:03.9940344Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-06-01T21:29:03.9940852Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-06-01T21:29:03.9941339Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-06-01T21:29:03.9941830Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-06-01T21:29:03.9942313Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-06-01T21:29:03.9942804Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-06-01T21:29:03.9943297Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-06-01T21:29:03.9943781Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-06-01T21:29:03.9944274Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-06-01T21:29:03.9944757Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-06-01T21:29:03.9945362Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-06-01T21:29:03.9945864Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-06-01T21:29:03.9946347Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-06-01T21:29:03.9946868Z * [new branch] gh/yanboliang/62/base -> origin/gh/yanboliang/62/base 2025-06-01T21:29:03.9947459Z * [new branch] gh/yanboliang/62/head -> origin/gh/yanboliang/62/head 2025-06-01T21:29:03.9947983Z * [new branch] gh/yanboliang/62/orig -> origin/gh/yanboliang/62/orig 2025-06-01T21:29:03.9948486Z * [new branch] gh/ydwu4/194/base -> origin/gh/ydwu4/194/base 2025-06-01T21:29:03.9948948Z * [new branch] gh/ydwu4/194/head -> origin/gh/ydwu4/194/head 2025-06-01T21:29:03.9949421Z * [new branch] gh/ydwu4/194/orig -> origin/gh/ydwu4/194/orig 2025-06-01T21:29:03.9949877Z * [new branch] gh/ydwu4/201/base -> origin/gh/ydwu4/201/base 2025-06-01T21:29:03.9950346Z * [new branch] gh/ydwu4/201/head -> origin/gh/ydwu4/201/head 2025-06-01T21:29:03.9950804Z * [new branch] gh/ydwu4/201/orig -> origin/gh/ydwu4/201/orig 2025-06-01T21:29:03.9951271Z * [new branch] gh/ydwu4/208/base -> origin/gh/ydwu4/208/base 2025-06-01T21:29:03.9951737Z * [new branch] gh/ydwu4/208/head -> origin/gh/ydwu4/208/head 2025-06-01T21:29:03.9952198Z * [new branch] gh/ydwu4/208/orig -> origin/gh/ydwu4/208/orig 2025-06-01T21:29:03.9952665Z * [new branch] gh/ydwu4/219/base -> origin/gh/ydwu4/219/base 2025-06-01T21:29:03.9953121Z * [new branch] gh/ydwu4/219/head -> origin/gh/ydwu4/219/head 2025-06-01T21:29:03.9953586Z * [new branch] gh/ydwu4/219/orig -> origin/gh/ydwu4/219/orig 2025-06-01T21:29:03.9954051Z * [new branch] gh/ydwu4/223/base -> origin/gh/ydwu4/223/base 2025-06-01T21:29:03.9954505Z * [new branch] gh/ydwu4/223/head -> origin/gh/ydwu4/223/head 2025-06-01T21:29:04.0677214Z * [new branch] gh/ydwu4/223/orig -> origin/gh/ydwu4/223/orig 2025-06-01T21:29:04.0677748Z * [new branch] gh/ydwu4/224/base -> origin/gh/ydwu4/224/base 2025-06-01T21:29:04.0678233Z * [new branch] gh/ydwu4/224/head -> origin/gh/ydwu4/224/head 2025-06-01T21:29:04.0678923Z * [new branch] gh/ydwu4/224/orig -> origin/gh/ydwu4/224/orig 2025-06-01T21:29:04.0679385Z * [new branch] gh/ydwu4/225/base -> origin/gh/ydwu4/225/base 2025-06-01T21:29:04.0679865Z * [new branch] gh/ydwu4/225/head -> origin/gh/ydwu4/225/head 2025-06-01T21:29:04.0680345Z * [new branch] gh/ydwu4/225/orig -> origin/gh/ydwu4/225/orig 2025-06-01T21:29:04.0680814Z * [new branch] gh/ydwu4/229/base -> origin/gh/ydwu4/229/base 2025-06-01T21:29:04.0681278Z * [new branch] gh/ydwu4/229/head -> origin/gh/ydwu4/229/head 2025-06-01T21:29:04.0681734Z * [new branch] gh/ydwu4/229/orig -> origin/gh/ydwu4/229/orig 2025-06-01T21:29:04.0682199Z * [new branch] gh/ydwu4/230/base -> origin/gh/ydwu4/230/base 2025-06-01T21:29:04.0682662Z * [new branch] gh/ydwu4/230/head -> origin/gh/ydwu4/230/head 2025-06-01T21:29:04.0683129Z * [new branch] gh/ydwu4/230/orig -> origin/gh/ydwu4/230/orig 2025-06-01T21:29:04.0683601Z * [new branch] gh/ydwu4/231/base -> origin/gh/ydwu4/231/base 2025-06-01T21:29:04.0684058Z * [new branch] gh/ydwu4/231/head -> origin/gh/ydwu4/231/head 2025-06-01T21:29:04.0684654Z * [new branch] gh/ydwu4/231/orig -> origin/gh/ydwu4/231/orig 2025-06-01T21:29:04.0685114Z * [new branch] gh/ydwu4/232/base -> origin/gh/ydwu4/232/base 2025-06-01T21:29:04.0685597Z * [new branch] gh/ydwu4/232/head -> origin/gh/ydwu4/232/head 2025-06-01T21:29:04.0686062Z * [new branch] gh/ydwu4/232/orig -> origin/gh/ydwu4/232/orig 2025-06-01T21:29:04.0686538Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-06-01T21:29:04.0687014Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-06-01T21:29:04.0687476Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-06-01T21:29:04.0687941Z * [new branch] gh/ydwu4/234/base -> origin/gh/ydwu4/234/base 2025-06-01T21:29:04.0688407Z * [new branch] gh/ydwu4/234/head -> origin/gh/ydwu4/234/head 2025-06-01T21:29:04.0688879Z * [new branch] gh/ydwu4/234/orig -> origin/gh/ydwu4/234/orig 2025-06-01T21:29:04.0689348Z * [new branch] gh/ydwu4/235/base -> origin/gh/ydwu4/235/base 2025-06-01T21:29:04.0689810Z * [new branch] gh/ydwu4/235/head -> origin/gh/ydwu4/235/head 2025-06-01T21:29:04.0690285Z * [new branch] gh/ydwu4/235/orig -> origin/gh/ydwu4/235/orig 2025-06-01T21:29:04.0690746Z * [new branch] gh/ydwu4/236/base -> origin/gh/ydwu4/236/base 2025-06-01T21:29:04.0691219Z * [new branch] gh/ydwu4/236/head -> origin/gh/ydwu4/236/head 2025-06-01T21:29:04.0691681Z * [new branch] gh/ydwu4/236/orig -> origin/gh/ydwu4/236/orig 2025-06-01T21:29:04.0692138Z * [new branch] gh/ydwu4/237/base -> origin/gh/ydwu4/237/base 2025-06-01T21:29:04.0692608Z * [new branch] gh/ydwu4/237/head -> origin/gh/ydwu4/237/head 2025-06-01T21:29:04.0693068Z * [new branch] gh/ydwu4/237/orig -> origin/gh/ydwu4/237/orig 2025-06-01T21:29:04.0693532Z * [new branch] gh/ydwu4/238/base -> origin/gh/ydwu4/238/base 2025-06-01T21:29:04.0693989Z * [new branch] gh/ydwu4/238/head -> origin/gh/ydwu4/238/head 2025-06-01T21:29:04.0694455Z * [new branch] gh/ydwu4/238/orig -> origin/gh/ydwu4/238/orig 2025-06-01T21:29:04.0694922Z * [new branch] gh/ydwu4/239/base -> origin/gh/ydwu4/239/base 2025-06-01T21:29:04.0695480Z * [new branch] gh/ydwu4/239/head -> origin/gh/ydwu4/239/head 2025-06-01T21:29:04.0695951Z * [new branch] gh/ydwu4/239/orig -> origin/gh/ydwu4/239/orig 2025-06-01T21:29:04.0696408Z * [new branch] gh/ydwu4/240/base -> origin/gh/ydwu4/240/base 2025-06-01T21:29:04.0696891Z * [new branch] gh/ydwu4/240/head -> origin/gh/ydwu4/240/head 2025-06-01T21:29:04.0697362Z * [new branch] gh/ydwu4/240/orig -> origin/gh/ydwu4/240/orig 2025-06-01T21:29:04.0697826Z * [new branch] gh/ydwu4/241/base -> origin/gh/ydwu4/241/base 2025-06-01T21:29:04.0698289Z * [new branch] gh/ydwu4/241/head -> origin/gh/ydwu4/241/head 2025-06-01T21:29:04.0698743Z * [new branch] gh/ydwu4/241/orig -> origin/gh/ydwu4/241/orig 2025-06-01T21:29:04.0699207Z * [new branch] gh/ydwu4/242/base -> origin/gh/ydwu4/242/base 2025-06-01T21:29:04.0699675Z * [new branch] gh/ydwu4/242/head -> origin/gh/ydwu4/242/head 2025-06-01T21:29:04.1142864Z * [new branch] gh/ydwu4/242/orig -> origin/gh/ydwu4/242/orig 2025-06-01T21:29:04.1143402Z * [new branch] gh/ydwu4/243/base -> origin/gh/ydwu4/243/base 2025-06-01T21:29:04.1143873Z * [new branch] gh/ydwu4/243/head -> origin/gh/ydwu4/243/head 2025-06-01T21:29:04.1144521Z * [new branch] gh/ydwu4/243/orig -> origin/gh/ydwu4/243/orig 2025-06-01T21:29:04.1144996Z * [new branch] gh/ydwu4/244/base -> origin/gh/ydwu4/244/base 2025-06-01T21:29:04.1145460Z * [new branch] gh/ydwu4/244/head -> origin/gh/ydwu4/244/head 2025-06-01T21:29:04.1145939Z * [new branch] gh/ydwu4/244/orig -> origin/gh/ydwu4/244/orig 2025-06-01T21:29:04.1146404Z * [new branch] gh/ydwu4/245/base -> origin/gh/ydwu4/245/base 2025-06-01T21:29:04.1146892Z * [new branch] gh/ydwu4/245/head -> origin/gh/ydwu4/245/head 2025-06-01T21:29:04.1147445Z * [new branch] gh/ydwu4/245/orig -> origin/gh/ydwu4/245/orig 2025-06-01T21:29:04.1147906Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-06-01T21:29:04.1148375Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-06-01T21:29:04.1148842Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-06-01T21:29:04.1149311Z * [new branch] gh/ydwu4/247/base -> origin/gh/ydwu4/247/base 2025-06-01T21:29:04.1149777Z * [new branch] gh/ydwu4/247/head -> origin/gh/ydwu4/247/head 2025-06-01T21:29:04.1150233Z * [new branch] gh/ydwu4/247/orig -> origin/gh/ydwu4/247/orig 2025-06-01T21:29:04.1150706Z * [new branch] gh/ydwu4/248/base -> origin/gh/ydwu4/248/base 2025-06-01T21:29:04.1151166Z * [new branch] gh/ydwu4/248/head -> origin/gh/ydwu4/248/head 2025-06-01T21:29:04.1151627Z * [new branch] gh/ydwu4/248/orig -> origin/gh/ydwu4/248/orig 2025-06-01T21:29:04.1152083Z * [new branch] gh/ydwu4/249/base -> origin/gh/ydwu4/249/base 2025-06-01T21:29:04.1152559Z * [new branch] gh/ydwu4/249/head -> origin/gh/ydwu4/249/head 2025-06-01T21:29:04.1153021Z * [new branch] gh/ydwu4/249/orig -> origin/gh/ydwu4/249/orig 2025-06-01T21:29:04.1153471Z * [new branch] gh/ydwu4/250/base -> origin/gh/ydwu4/250/base 2025-06-01T21:29:04.1153935Z * [new branch] gh/ydwu4/250/head -> origin/gh/ydwu4/250/head 2025-06-01T21:29:04.1154389Z * [new branch] gh/ydwu4/250/orig -> origin/gh/ydwu4/250/orig 2025-06-01T21:29:04.1154857Z * [new branch] gh/ydwu4/251/base -> origin/gh/ydwu4/251/base 2025-06-01T21:29:04.1155466Z * [new branch] gh/ydwu4/251/head -> origin/gh/ydwu4/251/head 2025-06-01T21:29:04.1155929Z * [new branch] gh/ydwu4/251/orig -> origin/gh/ydwu4/251/orig 2025-06-01T21:29:04.1156397Z * [new branch] gh/ydwu4/252/base -> origin/gh/ydwu4/252/base 2025-06-01T21:29:04.1156861Z * [new branch] gh/ydwu4/252/head -> origin/gh/ydwu4/252/head 2025-06-01T21:29:04.1157324Z * [new branch] gh/ydwu4/252/orig -> origin/gh/ydwu4/252/orig 2025-06-01T21:29:04.1157791Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-06-01T21:29:04.1158244Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-06-01T21:29:04.1158706Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-06-01T21:29:04.1159158Z * [new branch] gh/ydwu4/254/base -> origin/gh/ydwu4/254/base 2025-06-01T21:29:04.1159637Z * [new branch] gh/ydwu4/254/head -> origin/gh/ydwu4/254/head 2025-06-01T21:29:04.1160090Z * [new branch] gh/ydwu4/254/orig -> origin/gh/ydwu4/254/orig 2025-06-01T21:29:04.1160564Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-06-01T21:29:04.1161131Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-06-01T21:29:04.1161596Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-06-01T21:29:04.1162067Z * [new branch] gh/ydwu4/256/base -> origin/gh/ydwu4/256/base 2025-06-01T21:29:04.1162527Z * [new branch] gh/ydwu4/256/head -> origin/gh/ydwu4/256/head 2025-06-01T21:29:04.1163020Z * [new branch] gh/ydwu4/256/orig -> origin/gh/ydwu4/256/orig 2025-06-01T21:29:04.1163504Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-06-01T21:29:04.1163965Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-06-01T21:29:04.1164430Z * [new branch] gh/yf225/164/base -> origin/gh/yf225/164/base 2025-06-01T21:29:04.1164883Z * [new branch] gh/yf225/164/head -> origin/gh/yf225/164/head 2025-06-01T21:29:04.1165354Z * [new branch] gh/yf225/164/orig -> origin/gh/yf225/164/orig 2025-06-01T21:29:04.1624271Z * [new branch] gh/yf225/167/base -> origin/gh/yf225/167/base 2025-06-01T21:29:04.1624803Z * [new branch] gh/yf225/167/head -> origin/gh/yf225/167/head 2025-06-01T21:29:04.1625290Z * [new branch] gh/yf225/167/orig -> origin/gh/yf225/167/orig 2025-06-01T21:29:04.1625746Z * [new branch] gh/yf225/169/base -> origin/gh/yf225/169/base 2025-06-01T21:29:04.1626209Z * [new branch] gh/yf225/169/head -> origin/gh/yf225/169/head 2025-06-01T21:29:04.1626698Z * [new branch] gh/yf225/169/orig -> origin/gh/yf225/169/orig 2025-06-01T21:29:04.1627147Z * [new branch] gh/yf225/170/base -> origin/gh/yf225/170/base 2025-06-01T21:29:04.1627678Z * [new branch] gh/yf225/170/head -> origin/gh/yf225/170/head 2025-06-01T21:29:04.1628198Z * [new branch] gh/yf225/170/orig -> origin/gh/yf225/170/orig 2025-06-01T21:29:04.1628712Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-06-01T21:29:04.1629163Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-06-01T21:29:04.1629624Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-06-01T21:29:04.1630081Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-06-01T21:29:04.1631375Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-06-01T21:29:04.1631848Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-06-01T21:29:04.1632303Z * [new branch] gh/yf225/173/base -> origin/gh/yf225/173/base 2025-06-01T21:29:04.1632769Z * [new branch] gh/yf225/173/head -> origin/gh/yf225/173/head 2025-06-01T21:29:04.1633240Z * [new branch] gh/yf225/173/orig -> origin/gh/yf225/173/orig 2025-06-01T21:29:04.1633734Z * [new branch] gh/yf225/174/base -> origin/gh/yf225/174/base 2025-06-01T21:29:04.1634261Z * [new branch] gh/yf225/174/head -> origin/gh/yf225/174/head 2025-06-01T21:29:04.1634723Z * [new branch] gh/yf225/174/orig -> origin/gh/yf225/174/orig 2025-06-01T21:29:04.1635213Z * [new branch] gh/yf225/175/base -> origin/gh/yf225/175/base 2025-06-01T21:29:04.1635676Z * [new branch] gh/yf225/175/head -> origin/gh/yf225/175/head 2025-06-01T21:29:04.1636140Z * [new branch] gh/yf225/176/base -> origin/gh/yf225/176/base 2025-06-01T21:29:04.1636607Z * [new branch] gh/yf225/176/head -> origin/gh/yf225/176/head 2025-06-01T21:29:04.1637057Z * [new branch] gh/yf225/176/orig -> origin/gh/yf225/176/orig 2025-06-01T21:29:04.1637670Z * [new branch] gh/yf225/177/base -> origin/gh/yf225/177/base 2025-06-01T21:29:04.1638141Z * [new branch] gh/yf225/177/head -> origin/gh/yf225/177/head 2025-06-01T21:29:04.1638592Z * [new branch] gh/yf225/177/orig -> origin/gh/yf225/177/orig 2025-06-01T21:29:04.1639056Z * [new branch] gh/yf225/178/base -> origin/gh/yf225/178/base 2025-06-01T21:29:04.1639509Z * [new branch] gh/yf225/178/head -> origin/gh/yf225/178/head 2025-06-01T21:29:04.1640027Z * [new branch] gh/yf225/178/orig -> origin/gh/yf225/178/orig 2025-06-01T21:29:04.1640525Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-06-01T21:29:04.1640987Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-06-01T21:29:04.1641466Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-06-01T21:29:04.1641975Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-06-01T21:29:04.1642476Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-06-01T21:29:04.1642961Z * [new branch] gh/yifuwang/185/base -> origin/gh/yifuwang/185/base 2025-06-01T21:29:04.1643455Z * [new branch] gh/yifuwang/185/head -> origin/gh/yifuwang/185/head 2025-06-01T21:29:04.1643947Z * [new branch] gh/yifuwang/185/orig -> origin/gh/yifuwang/185/orig 2025-06-01T21:29:04.1644443Z * [new branch] gh/yifuwang/186/base -> origin/gh/yifuwang/186/base 2025-06-01T21:29:04.1644935Z * [new branch] gh/yifuwang/186/head -> origin/gh/yifuwang/186/head 2025-06-01T21:29:04.1645426Z * [new branch] gh/yifuwang/186/orig -> origin/gh/yifuwang/186/orig 2025-06-01T21:29:04.1645977Z * [new branch] gh/yifuwang/187/base -> origin/gh/yifuwang/187/base 2025-06-01T21:29:04.1646515Z * [new branch] gh/yifuwang/187/head -> origin/gh/yifuwang/187/head 2025-06-01T21:29:04.1646999Z * [new branch] gh/yifuwang/187/orig -> origin/gh/yifuwang/187/orig 2025-06-01T21:29:04.1647488Z * [new branch] gh/yifuwang/188/base -> origin/gh/yifuwang/188/base 2025-06-01T21:29:04.1647972Z * [new branch] gh/yifuwang/188/head -> origin/gh/yifuwang/188/head 2025-06-01T21:29:04.2162912Z * [new branch] gh/yifuwang/188/orig -> origin/gh/yifuwang/188/orig 2025-06-01T21:29:04.2164121Z * [new branch] gh/yifuwang/189/base -> origin/gh/yifuwang/189/base 2025-06-01T21:29:04.2164624Z * [new branch] gh/yifuwang/189/head -> origin/gh/yifuwang/189/head 2025-06-01T21:29:04.2165124Z * [new branch] gh/yifuwang/189/orig -> origin/gh/yifuwang/189/orig 2025-06-01T21:29:04.2165622Z * [new branch] gh/yifuwang/190/base -> origin/gh/yifuwang/190/base 2025-06-01T21:29:04.2166125Z * [new branch] gh/yifuwang/190/head -> origin/gh/yifuwang/190/head 2025-06-01T21:29:04.2166625Z * [new branch] gh/yifuwang/190/orig -> origin/gh/yifuwang/190/orig 2025-06-01T21:29:04.2167115Z * [new branch] gh/yifuwang/191/base -> origin/gh/yifuwang/191/base 2025-06-01T21:29:04.2167610Z * [new branch] gh/yifuwang/191/head -> origin/gh/yifuwang/191/head 2025-06-01T21:29:04.2168101Z * [new branch] gh/yifuwang/191/orig -> origin/gh/yifuwang/191/orig 2025-06-01T21:29:04.2168602Z * [new branch] gh/yifuwang/192/base -> origin/gh/yifuwang/192/base 2025-06-01T21:29:04.2169104Z * [new branch] gh/yifuwang/192/head -> origin/gh/yifuwang/192/head 2025-06-01T21:29:04.2169598Z * [new branch] gh/yifuwang/192/orig -> origin/gh/yifuwang/192/orig 2025-06-01T21:29:04.2170672Z * [new branch] gh/yifuwang/194/base -> origin/gh/yifuwang/194/base 2025-06-01T21:29:04.2171176Z * [new branch] gh/yifuwang/194/head -> origin/gh/yifuwang/194/head 2025-06-01T21:29:04.2171679Z * [new branch] gh/yifuwang/194/orig -> origin/gh/yifuwang/194/orig 2025-06-01T21:29:04.2172185Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-06-01T21:29:04.2172673Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-06-01T21:29:04.2173188Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-06-01T21:29:04.2173678Z * [new branch] gh/yifuwang/196/base -> origin/gh/yifuwang/196/base 2025-06-01T21:29:04.2174176Z * [new branch] gh/yifuwang/196/head -> origin/gh/yifuwang/196/head 2025-06-01T21:29:04.2174665Z * [new branch] gh/yifuwang/196/orig -> origin/gh/yifuwang/196/orig 2025-06-01T21:29:04.2175168Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-06-01T21:29:04.2175668Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-06-01T21:29:04.2176157Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-06-01T21:29:04.2176654Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-06-01T21:29:04.2177172Z * [new branch] gh/yiming0416/3/base -> origin/gh/yiming0416/3/base 2025-06-01T21:29:04.2177668Z * [new branch] gh/yiming0416/3/head -> origin/gh/yiming0416/3/head 2025-06-01T21:29:04.2178168Z * [new branch] gh/yiming0416/4/base -> origin/gh/yiming0416/4/base 2025-06-01T21:29:04.2178658Z * [new branch] gh/yiming0416/4/head -> origin/gh/yiming0416/4/head 2025-06-01T21:29:04.2179165Z * [new branch] gh/yiming0416/5/base -> origin/gh/yiming0416/5/base 2025-06-01T21:29:04.2179654Z * [new branch] gh/yiming0416/5/head -> origin/gh/yiming0416/5/head 2025-06-01T21:29:04.2180147Z * [new branch] gh/yiming0416/5/orig -> origin/gh/yiming0416/5/orig 2025-06-01T21:29:04.2180645Z * [new branch] gh/yiming0416/6/base -> origin/gh/yiming0416/6/base 2025-06-01T21:29:04.2181133Z * [new branch] gh/yiming0416/6/head -> origin/gh/yiming0416/6/head 2025-06-01T21:29:04.2182002Z * [new branch] gh/yiming0416/6/orig -> origin/gh/yiming0416/6/orig 2025-06-01T21:29:04.2182498Z * [new branch] gh/yiming0416/7/base -> origin/gh/yiming0416/7/base 2025-06-01T21:29:04.2182997Z * [new branch] gh/yiming0416/7/head -> origin/gh/yiming0416/7/head 2025-06-01T21:29:04.2183502Z * [new branch] gh/yiming0416/7/orig -> origin/gh/yiming0416/7/orig 2025-06-01T21:29:04.2184004Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-06-01T21:29:04.2184513Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-06-01T21:29:04.2185010Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-06-01T21:29:04.2185520Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-06-01T21:29:04.2186031Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-06-01T21:29:04.2186527Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-06-01T21:29:04.2187030Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-06-01T21:29:04.2187617Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-06-01T21:29:04.2646962Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-06-01T21:29:04.2647676Z * [new branch] gh/ysiraichi/82/base -> origin/gh/ysiraichi/82/base 2025-06-01T21:29:04.2648191Z * [new branch] gh/ysiraichi/82/head -> origin/gh/ysiraichi/82/head 2025-06-01T21:29:04.2648709Z * [new branch] gh/ysiraichi/82/orig -> origin/gh/ysiraichi/82/orig 2025-06-01T21:29:04.2649206Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-06-01T21:29:04.2649711Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-06-01T21:29:04.2650228Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-06-01T21:29:04.2650720Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-06-01T21:29:04.2651224Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-06-01T21:29:04.2651717Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-06-01T21:29:04.2652218Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-06-01T21:29:04.2652711Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-06-01T21:29:04.2653218Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-06-01T21:29:04.2653716Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-06-01T21:29:04.2654221Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-06-01T21:29:04.2654724Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-06-01T21:29:04.2655249Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-06-01T21:29:04.2655747Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-06-01T21:29:04.2656252Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-06-01T21:29:04.2656739Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-06-01T21:29:04.2657220Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-06-01T21:29:04.2657684Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-06-01T21:29:04.2658153Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-06-01T21:29:04.2659277Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-06-01T21:29:04.2659743Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-06-01T21:29:04.2660243Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-06-01T21:29:04.2660751Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-06-01T21:29:04.2661273Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-06-01T21:29:04.2661773Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-06-01T21:29:04.2662266Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-06-01T21:29:04.2662763Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-06-01T21:29:04.2663253Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-06-01T21:29:04.2663755Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-06-01T21:29:04.2664258Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-06-01T21:29:04.2664747Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-06-01T21:29:04.2665357Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-06-01T21:29:04.2665853Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-06-01T21:29:04.2666352Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-06-01T21:29:04.2666856Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-06-01T21:29:04.2667435Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-06-01T21:29:04.2667945Z * [new branch] gh/zhxchen17/1/base -> origin/gh/zhxchen17/1/base 2025-06-01T21:29:04.2668442Z * [new branch] gh/zhxchen17/1/head -> origin/gh/zhxchen17/1/head 2025-06-01T21:29:04.2668940Z * [new branch] gh/zhxchen17/1/orig -> origin/gh/zhxchen17/1/orig 2025-06-01T21:29:04.2669435Z * [new branch] gh/zhxchen17/10/base -> origin/gh/zhxchen17/10/base 2025-06-01T21:29:04.2669941Z * [new branch] gh/zhxchen17/10/head -> origin/gh/zhxchen17/10/head 2025-06-01T21:29:04.2670434Z * [new branch] gh/zhxchen17/10/orig -> origin/gh/zhxchen17/10/orig 2025-06-01T21:29:04.3137999Z * [new branch] gh/zhxchen17/11/base -> origin/gh/zhxchen17/11/base 2025-06-01T21:29:04.3138585Z * [new branch] gh/zhxchen17/11/head -> origin/gh/zhxchen17/11/head 2025-06-01T21:29:04.3139091Z * [new branch] gh/zhxchen17/11/orig -> origin/gh/zhxchen17/11/orig 2025-06-01T21:29:04.3139613Z * [new branch] gh/zhxchen17/12/base -> origin/gh/zhxchen17/12/base 2025-06-01T21:29:04.3140116Z * [new branch] gh/zhxchen17/12/head -> origin/gh/zhxchen17/12/head 2025-06-01T21:29:04.3140608Z * [new branch] gh/zhxchen17/12/orig -> origin/gh/zhxchen17/12/orig 2025-06-01T21:29:04.3141103Z * [new branch] gh/zhxchen17/13/base -> origin/gh/zhxchen17/13/base 2025-06-01T21:29:04.3141612Z * [new branch] gh/zhxchen17/13/head -> origin/gh/zhxchen17/13/head 2025-06-01T21:29:04.3142100Z * [new branch] gh/zhxchen17/13/orig -> origin/gh/zhxchen17/13/orig 2025-06-01T21:29:04.3142601Z * [new branch] gh/zhxchen17/14/base -> origin/gh/zhxchen17/14/base 2025-06-01T21:29:04.3143091Z * [new branch] gh/zhxchen17/14/head -> origin/gh/zhxchen17/14/head 2025-06-01T21:29:04.3143589Z * [new branch] gh/zhxchen17/14/orig -> origin/gh/zhxchen17/14/orig 2025-06-01T21:29:04.3144738Z * [new branch] gh/zhxchen17/15/base -> origin/gh/zhxchen17/15/base 2025-06-01T21:29:04.3145237Z * [new branch] gh/zhxchen17/15/head -> origin/gh/zhxchen17/15/head 2025-06-01T21:29:04.3145740Z * [new branch] gh/zhxchen17/15/orig -> origin/gh/zhxchen17/15/orig 2025-06-01T21:29:04.3146235Z * [new branch] gh/zhxchen17/16/base -> origin/gh/zhxchen17/16/base 2025-06-01T21:29:04.3146729Z * [new branch] gh/zhxchen17/16/head -> origin/gh/zhxchen17/16/head 2025-06-01T21:29:04.3147218Z * [new branch] gh/zhxchen17/16/orig -> origin/gh/zhxchen17/16/orig 2025-06-01T21:29:04.3147795Z * [new branch] gh/zhxchen17/17/base -> origin/gh/zhxchen17/17/base 2025-06-01T21:29:04.3148296Z * [new branch] gh/zhxchen17/17/head -> origin/gh/zhxchen17/17/head 2025-06-01T21:29:04.3148785Z * [new branch] gh/zhxchen17/17/orig -> origin/gh/zhxchen17/17/orig 2025-06-01T21:29:04.3149293Z * [new branch] gh/zhxchen17/18/base -> origin/gh/zhxchen17/18/base 2025-06-01T21:29:04.3149781Z * [new branch] gh/zhxchen17/18/head -> origin/gh/zhxchen17/18/head 2025-06-01T21:29:04.3150285Z * [new branch] gh/zhxchen17/18/orig -> origin/gh/zhxchen17/18/orig 2025-06-01T21:29:04.3150911Z * [new branch] gh/zhxchen17/19/base -> origin/gh/zhxchen17/19/base 2025-06-01T21:29:04.3151402Z * [new branch] gh/zhxchen17/19/head -> origin/gh/zhxchen17/19/head 2025-06-01T21:29:04.3151910Z * [new branch] gh/zhxchen17/19/orig -> origin/gh/zhxchen17/19/orig 2025-06-01T21:29:04.3152407Z * [new branch] gh/zhxchen17/2/base -> origin/gh/zhxchen17/2/base 2025-06-01T21:29:04.3152915Z * [new branch] gh/zhxchen17/2/head -> origin/gh/zhxchen17/2/head 2025-06-01T21:29:04.3153422Z * [new branch] gh/zhxchen17/2/orig -> origin/gh/zhxchen17/2/orig 2025-06-01T21:29:04.3153917Z * [new branch] gh/zhxchen17/20/base -> origin/gh/zhxchen17/20/base 2025-06-01T21:29:04.3154423Z * [new branch] gh/zhxchen17/20/head -> origin/gh/zhxchen17/20/head 2025-06-01T21:29:04.3154916Z * [new branch] gh/zhxchen17/20/orig -> origin/gh/zhxchen17/20/orig 2025-06-01T21:29:04.3155419Z * [new branch] gh/zhxchen17/21/base -> origin/gh/zhxchen17/21/base 2025-06-01T21:29:04.3155915Z * [new branch] gh/zhxchen17/21/head -> origin/gh/zhxchen17/21/head 2025-06-01T21:29:04.3156402Z * [new branch] gh/zhxchen17/21/orig -> origin/gh/zhxchen17/21/orig 2025-06-01T21:29:04.3156900Z * [new branch] gh/zhxchen17/3/base -> origin/gh/zhxchen17/3/base 2025-06-01T21:29:04.3157382Z * [new branch] gh/zhxchen17/3/head -> origin/gh/zhxchen17/3/head 2025-06-01T21:29:04.3157877Z * [new branch] gh/zhxchen17/3/orig -> origin/gh/zhxchen17/3/orig 2025-06-01T21:29:04.3158363Z * [new branch] gh/zhxchen17/4/base -> origin/gh/zhxchen17/4/base 2025-06-01T21:29:04.3158861Z * [new branch] gh/zhxchen17/4/head -> origin/gh/zhxchen17/4/head 2025-06-01T21:29:04.3159352Z * [new branch] gh/zhxchen17/4/orig -> origin/gh/zhxchen17/4/orig 2025-06-01T21:29:04.3159836Z * [new branch] gh/zhxchen17/5/base -> origin/gh/zhxchen17/5/base 2025-06-01T21:29:04.3160325Z * [new branch] gh/zhxchen17/5/head -> origin/gh/zhxchen17/5/head 2025-06-01T21:29:04.3160806Z * [new branch] gh/zhxchen17/5/orig -> origin/gh/zhxchen17/5/orig 2025-06-01T21:29:04.3161297Z * [new branch] gh/zhxchen17/6/base -> origin/gh/zhxchen17/6/base 2025-06-01T21:29:04.3161789Z * [new branch] gh/zhxchen17/6/head -> origin/gh/zhxchen17/6/head 2025-06-01T21:29:04.3718104Z * [new branch] gh/zhxchen17/6/orig -> origin/gh/zhxchen17/6/orig 2025-06-01T21:29:04.3718682Z * [new branch] gh/zhxchen17/7/base -> origin/gh/zhxchen17/7/base 2025-06-01T21:29:04.3719189Z * [new branch] gh/zhxchen17/7/head -> origin/gh/zhxchen17/7/head 2025-06-01T21:29:04.3719708Z * [new branch] gh/zhxchen17/7/orig -> origin/gh/zhxchen17/7/orig 2025-06-01T21:29:04.3720276Z * [new branch] gh/zhxchen17/8/base -> origin/gh/zhxchen17/8/base 2025-06-01T21:29:04.3720806Z * [new branch] gh/zhxchen17/8/head -> origin/gh/zhxchen17/8/head 2025-06-01T21:29:04.3721298Z * [new branch] gh/zhxchen17/8/orig -> origin/gh/zhxchen17/8/orig 2025-06-01T21:29:04.3721788Z * [new branch] gh/zhxchen17/9/base -> origin/gh/zhxchen17/9/base 2025-06-01T21:29:04.3722269Z * [new branch] gh/zhxchen17/9/head -> origin/gh/zhxchen17/9/head 2025-06-01T21:29:04.3722780Z * [new branch] gh/zhxchen17/9/orig -> origin/gh/zhxchen17/9/orig 2025-06-01T21:29:04.3723260Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-06-01T21:29:04.3723731Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-06-01T21:29:04.3724374Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-06-01T21:29:04.3724856Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-06-01T21:29:04.3725316Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-06-01T21:29:04.3725786Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-06-01T21:29:04.3726300Z * [new branch] gh/zklaus/3/base -> origin/gh/zklaus/3/base 2025-06-01T21:29:04.3726799Z * [new branch] gh/zklaus/3/head -> origin/gh/zklaus/3/head 2025-06-01T21:29:04.3727268Z * [new branch] gh/zklaus/3/orig -> origin/gh/zklaus/3/orig 2025-06-01T21:29:04.3727728Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-06-01T21:29:04.3728195Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-06-01T21:29:04.3728659Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-06-01T21:29:04.3729130Z * [new branch] gh/zou3519/1141/base -> origin/gh/zou3519/1141/base 2025-06-01T21:29:04.3729615Z * [new branch] gh/zou3519/1141/head -> origin/gh/zou3519/1141/head 2025-06-01T21:29:04.3730098Z * [new branch] gh/zou3519/1141/orig -> origin/gh/zou3519/1141/orig 2025-06-01T21:29:04.3730583Z * [new branch] gh/zou3519/1145/base -> origin/gh/zou3519/1145/base 2025-06-01T21:29:04.3731069Z * [new branch] gh/zou3519/1145/head -> origin/gh/zou3519/1145/head 2025-06-01T21:29:04.3731544Z * [new branch] gh/zou3519/1145/orig -> origin/gh/zou3519/1145/orig 2025-06-01T21:29:04.3732070Z * [new branch] gh/zou3519/1149/base -> origin/gh/zou3519/1149/base 2025-06-01T21:29:04.3732586Z * [new branch] gh/zou3519/1149/head -> origin/gh/zou3519/1149/head 2025-06-01T21:29:04.3733067Z * [new branch] gh/zou3519/1149/orig -> origin/gh/zou3519/1149/orig 2025-06-01T21:29:04.3733541Z * [new branch] gh/zou3519/1152/base -> origin/gh/zou3519/1152/base 2025-06-01T21:29:04.3734017Z * [new branch] gh/zou3519/1152/head -> origin/gh/zou3519/1152/head 2025-06-01T21:29:04.3734496Z * [new branch] gh/zou3519/1152/orig -> origin/gh/zou3519/1152/orig 2025-06-01T21:29:04.3734967Z * [new branch] gh/zou3519/1156/base -> origin/gh/zou3519/1156/base 2025-06-01T21:29:04.3735983Z * [new branch] gh/zou3519/1156/head -> origin/gh/zou3519/1156/head 2025-06-01T21:29:04.3736465Z * [new branch] gh/zou3519/1156/orig -> origin/gh/zou3519/1156/orig 2025-06-01T21:29:04.3736950Z * [new branch] gh/zou3519/1161/base -> origin/gh/zou3519/1161/base 2025-06-01T21:29:04.3737444Z * [new branch] gh/zou3519/1161/head -> origin/gh/zou3519/1161/head 2025-06-01T21:29:04.3737976Z * [new branch] gh/zou3519/1161/orig -> origin/gh/zou3519/1161/orig 2025-06-01T21:29:04.3738503Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-06-01T21:29:04.3738980Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-06-01T21:29:04.3739459Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-06-01T21:29:04.3739944Z * [new branch] gh/zou3519/1163/base -> origin/gh/zou3519/1163/base 2025-06-01T21:29:04.3740419Z * [new branch] gh/zou3519/1163/head -> origin/gh/zou3519/1163/head 2025-06-01T21:29:04.3740903Z * [new branch] gh/zou3519/1163/orig -> origin/gh/zou3519/1163/orig 2025-06-01T21:29:04.3741379Z * [new branch] gh/zou3519/1164/base -> origin/gh/zou3519/1164/base 2025-06-01T21:29:04.4165023Z * [new branch] gh/zou3519/1164/head -> origin/gh/zou3519/1164/head 2025-06-01T21:29:04.4165592Z * [new branch] gh/zou3519/1164/orig -> origin/gh/zou3519/1164/orig 2025-06-01T21:29:04.4166086Z * [new branch] gh/zou3519/1165/base -> origin/gh/zou3519/1165/base 2025-06-01T21:29:04.4166576Z * [new branch] gh/zou3519/1165/head -> origin/gh/zou3519/1165/head 2025-06-01T21:29:04.4167054Z * [new branch] gh/zou3519/1165/orig -> origin/gh/zou3519/1165/orig 2025-06-01T21:29:04.4167549Z * [new branch] gh/zou3519/1166/base -> origin/gh/zou3519/1166/base 2025-06-01T21:29:04.4168037Z * [new branch] gh/zou3519/1166/head -> origin/gh/zou3519/1166/head 2025-06-01T21:29:04.4168514Z * [new branch] gh/zou3519/1166/orig -> origin/gh/zou3519/1166/orig 2025-06-01T21:29:04.4169006Z * [new branch] gh/zou3519/1167/base -> origin/gh/zou3519/1167/base 2025-06-01T21:29:04.4169485Z * [new branch] gh/zou3519/1167/head -> origin/gh/zou3519/1167/head 2025-06-01T21:29:04.4169966Z * [new branch] gh/zou3519/1167/orig -> origin/gh/zou3519/1167/orig 2025-06-01T21:29:04.4170435Z * [new branch] gh/zou3519/1168/base -> origin/gh/zou3519/1168/base 2025-06-01T21:29:04.4170945Z * [new branch] gh/zou3519/1168/head -> origin/gh/zou3519/1168/head 2025-06-01T21:29:04.4171432Z * [new branch] gh/zou3519/1168/orig -> origin/gh/zou3519/1168/orig 2025-06-01T21:29:04.4171911Z * [new branch] gh/zou3519/1169/base -> origin/gh/zou3519/1169/base 2025-06-01T21:29:04.4172389Z * [new branch] gh/zou3519/1169/head -> origin/gh/zou3519/1169/head 2025-06-01T21:29:04.4172872Z * [new branch] gh/zou3519/1169/orig -> origin/gh/zou3519/1169/orig 2025-06-01T21:29:04.4173349Z * [new branch] gh/zou3519/1170/base -> origin/gh/zou3519/1170/base 2025-06-01T21:29:04.4173837Z * [new branch] gh/zou3519/1170/head -> origin/gh/zou3519/1170/head 2025-06-01T21:29:04.4174314Z * [new branch] gh/zou3519/1170/orig -> origin/gh/zou3519/1170/orig 2025-06-01T21:29:04.4174794Z * [new branch] gh/zou3519/1171/base -> origin/gh/zou3519/1171/base 2025-06-01T21:29:04.4175273Z * [new branch] gh/zou3519/1171/head -> origin/gh/zou3519/1171/head 2025-06-01T21:29:04.4175748Z * [new branch] gh/zou3519/1171/orig -> origin/gh/zou3519/1171/orig 2025-06-01T21:29:04.4176813Z * [new branch] gh/zou3519/1172/base -> origin/gh/zou3519/1172/base 2025-06-01T21:29:04.4177289Z * [new branch] gh/zou3519/1172/head -> origin/gh/zou3519/1172/head 2025-06-01T21:29:04.4177771Z * [new branch] gh/zou3519/1172/orig -> origin/gh/zou3519/1172/orig 2025-06-01T21:29:04.4178262Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-06-01T21:29:04.4178730Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-06-01T21:29:04.4179202Z * [new branch] google-main -> origin/google-main 2025-06-01T21:29:04.4179693Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-06-01T21:29:04.4180222Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-06-01T21:29:04.4180715Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-06-01T21:29:04.4181179Z * [new branch] guard_system -> origin/guard_system 2025-06-01T21:29:04.4181818Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-06-01T21:29:04.4182500Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-06-01T21:29:04.4183104Z * [new branch] hc_baseline -> origin/hc_baseline 2025-06-01T21:29:04.4183531Z * [new branch] hhh_rand -> origin/hhh_rand 2025-06-01T21:29:04.4184014Z * [new branch] hoy/autotune/numwarps -> origin/hoy/autotune/numwarps 2025-06-01T21:29:04.4184513Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-06-01T21:29:04.4184981Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-06-01T21:29:04.4185577Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-06-01T21:29:04.4186197Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-06-01T21:29:04.4186778Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-06-01T21:29:04.4187447Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-06-01T21:29:04.4188160Z * [new branch] increase-phlippe_resnet-tolerance-float16 -> origin/increase-phlippe_resnet-tolerance-float16 2025-06-01T21:29:04.4188805Z * [new branch] inline -> origin/inline 2025-06-01T21:29:04.4189219Z * [new branch] inlining -> origin/inlining 2025-06-01T21:29:04.4630879Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-06-01T21:29:04.4631399Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-06-01T21:29:04.4631897Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-06-01T21:29:04.4632351Z * [new branch] issue#58739 -> origin/issue#58739 2025-06-01T21:29:04.4632788Z * [new branch] issue_150765_fix -> origin/issue_150765_fix 2025-06-01T21:29:04.4633385Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-06-01T21:29:04.4634076Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-06-01T21:29:04.4634760Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-06-01T21:29:04.4635360Z * [new branch] jeanschmidt/issue_148342 -> origin/jeanschmidt/issue_148342 2025-06-01T21:29:04.4635986Z * [new branch] jeanschmidt/remove_perf_test_scripts -> origin/jeanschmidt/remove_perf_test_scripts 2025-06-01T21:29:04.4637209Z * [new branch] jeanschmidt/test_infra_250314 -> origin/jeanschmidt/test_infra_250314 2025-06-01T21:29:04.4637775Z * [new branch] justinchu/onnx-deps -> origin/justinchu/onnx-deps 2025-06-01T21:29:04.4638240Z * [new branch] jz/istft -> origin/jz/istft 2025-06-01T21:29:04.4638803Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-06-01T21:29:04.4639456Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-06-01T21:29:04.4640046Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-06-01T21:29:04.4640579Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-06-01T21:29:04.4641071Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-06-01T21:29:04.4641656Z * [new branch] lucaskabela/dynamo_nested_const_fix -> origin/lucaskabela/dynamo_nested_const_fix 2025-06-01T21:29:04.4642383Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-06-01T21:29:04.4643126Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-06-01T21:29:04.4644023Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-06-01T21:29:04.4655600Z * [new branch] macos_test -> origin/macos_test 2025-06-01T21:29:04.4656175Z * [new branch] main -> origin/main 2025-06-01T21:29:04.4656623Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-06-01T21:29:04.4657120Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-06-01T21:29:04.4657621Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-06-01T21:29:04.4658086Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-06-01T21:29:04.4658562Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-06-01T21:29:04.4659026Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-06-01T21:29:04.4659513Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-06-01T21:29:04.4659983Z * [new branch] malfet-patch-20 -> origin/malfet-patch-20 2025-06-01T21:29:04.4660458Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-06-01T21:29:04.4660932Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-06-01T21:29:04.4661397Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-06-01T21:29:04.4661868Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-06-01T21:29:04.4662318Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-06-01T21:29:04.4662778Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-06-01T21:29:04.4663240Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-06-01T21:29:04.4663694Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-06-01T21:29:04.4664161Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-06-01T21:29:04.4664656Z * [new branch] malfet/add-ciflow-pull -> origin/malfet/add-ciflow-pull 2025-06-01T21:29:04.4665203Z * [new branch] malfet/add-h100-opt-in -> origin/malfet/add-h100-opt-in 2025-06-01T21:29:04.4665703Z * [new branch] malfet/cp-150427 -> origin/malfet/cp-150427 2025-06-01T21:29:04.4666362Z * [new branch] malfet/cp-152510 -> origin/malfet/cp-152510 2025-06-01T21:29:04.5096989Z * [new branch] malfet/cuda-do-not-vec128-on-12.6 -> origin/malfet/cuda-do-not-vec128-on-12.6 2025-06-01T21:29:04.5097664Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-06-01T21:29:04.5098261Z * [new branch] malfet/lets-revert-145746 -> origin/malfet/lets-revert-145746 2025-06-01T21:29:04.5098895Z * [new branch] malfet/move-dtype_abbr-to-utils -> origin/malfet/move-dtype_abbr-to-utils 2025-06-01T21:29:04.5099535Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-06-01T21:29:04.5100123Z * [new branch] missing_gloo_causes_deadlock -> origin/missing_gloo_causes_deadlock 2025-06-01T21:29:04.5100676Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-06-01T21:29:04.5101142Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-06-01T21:29:04.5101659Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-06-01T21:29:04.5102206Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-06-01T21:29:04.5102712Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-06-01T21:29:04.5103447Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-06-01T21:29:04.5104014Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-06-01T21:29:04.5104507Z * [new branch] mlazos/buff-opt2 -> origin/mlazos/buff-opt2 2025-06-01T21:29:04.5104974Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-06-01T21:29:04.5105439Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-06-01T21:29:04.5105903Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-06-01T21:29:04.5106352Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-06-01T21:29:04.5106827Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-06-01T21:29:04.5107407Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-06-01T21:29:04.5107942Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-06-01T21:29:04.5108532Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-06-01T21:29:04.5109120Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-06-01T21:29:04.5109662Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-06-01T21:29:04.5110183Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-06-01T21:29:04.5110695Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-06-01T21:29:04.5111180Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-06-01T21:29:04.5111707Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-06-01T21:29:04.5112247Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-06-01T21:29:04.5112782Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-06-01T21:29:04.5113295Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-06-01T21:29:04.5113789Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-06-01T21:29:04.5114277Z * [new branch] mlazos/einops-fix -> origin/mlazos/einops-fix 2025-06-01T21:29:04.5114739Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-06-01T21:29:04.5115367Z * [new branch] mlazos/evt-killswitch -> origin/mlazos/evt-killswitch 2025-06-01T21:29:04.5115893Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-06-01T21:29:04.5116384Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-06-01T21:29:04.5116896Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-06-01T21:29:04.5117363Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-06-01T21:29:04.5117826Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-06-01T21:29:04.5118330Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-06-01T21:29:04.5118826Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-06-01T21:29:04.5119320Z * [new branch] mlazos/fuse-window -> origin/mlazos/fuse-window 2025-06-01T21:29:04.5119817Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-06-01T21:29:04.5120294Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-06-01T21:29:04.5120745Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-06-01T21:29:04.5121292Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-06-01T21:29:04.5649036Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-06-01T21:29:04.5649569Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-06-01T21:29:04.5650044Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-06-01T21:29:04.5650513Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-06-01T21:29:04.5650977Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-06-01T21:29:04.5651463Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-06-01T21:29:04.5651894Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-06-01T21:29:04.5652320Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-06-01T21:29:04.5652746Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-06-01T21:29:04.5653187Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-06-01T21:29:04.5653610Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-06-01T21:29:04.5654027Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-06-01T21:29:04.5654458Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-06-01T21:29:04.5654892Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-06-01T21:29:04.5655325Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-06-01T21:29:04.5655786Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-06-01T21:29:04.5656304Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-06-01T21:29:04.5656840Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-06-01T21:29:04.5657328Z * [new branch] mlazos/int-fix2 -> origin/mlazos/int-fix2 2025-06-01T21:29:04.5657811Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-06-01T21:29:04.5658332Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-06-01T21:29:04.5658814Z * [new branch] mlazos/main -> origin/mlazos/main 2025-06-01T21:29:04.5659328Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-06-01T21:29:04.5660055Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-06-01T21:29:04.5660518Z * [new branch] mlazos/main_test -> origin/mlazos/main_test 2025-06-01T21:29:04.5660983Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-06-01T21:29:04.5661403Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-06-01T21:29:04.5661879Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-06-01T21:29:04.5662371Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-06-01T21:29:04.5662942Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-06-01T21:29:04.5663557Z * [new branch] mlazos/mlazos/subclass-test -> origin/mlazos/mlazos/subclass-test 2025-06-01T21:29:04.5664170Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-06-01T21:29:04.5664708Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-06-01T21:29:04.5665170Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-06-01T21:29:04.5665677Z * [new branch] mlazos/mutable-backup -> origin/mlazos/mutable-backup 2025-06-01T21:29:04.5666279Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-06-01T21:29:04.5666844Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-06-01T21:29:04.5667541Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-06-01T21:29:04.5668076Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-06-01T21:29:04.5668594Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-06-01T21:29:04.5669075Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-06-01T21:29:04.5669565Z * [new branch] mlazos/opt-recipe -> origin/mlazos/opt-recipe 2025-06-01T21:29:04.5670059Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-06-01T21:29:04.5670555Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-06-01T21:29:04.5671051Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-06-01T21:29:04.5671519Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-06-01T21:29:04.5671966Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-06-01T21:29:04.5672427Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-06-01T21:29:04.5672945Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-06-01T21:29:04.6154144Z * [new branch] mlazos/subclass-test -> origin/mlazos/subclass-test 2025-06-01T21:29:04.6154659Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-06-01T21:29:04.6155166Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-06-01T21:29:04.6155705Z * [new branch] mlazos/tensor-lr2 -> origin/mlazos/tensor-lr2 2025-06-01T21:29:04.6156178Z * [new branch] mlazos/test-fix -> origin/mlazos/test-fix 2025-06-01T21:29:04.6156641Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-06-01T21:29:04.6157120Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-06-01T21:29:04.6157649Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-06-01T21:29:04.6158170Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-06-01T21:29:04.6158967Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-06-01T21:29:04.6159471Z * [new branch] mlazos/trace-ao -> origin/mlazos/trace-ao 2025-06-01T21:29:04.6159965Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-06-01T21:29:04.6160462Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-06-01T21:29:04.6160949Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-06-01T21:29:04.6161418Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-06-01T21:29:04.6161910Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-06-01T21:29:04.6162371Z * [new branch] move_unstash -> origin/move_unstash 2025-06-01T21:29:04.6162815Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-06-01T21:29:04.6163296Z * [new branch] msaroufim-patch-1 -> origin/msaroufim-patch-1 2025-06-01T21:29:04.6163784Z * [new branch] msaroufim-patch-2 -> origin/msaroufim-patch-2 2025-06-01T21:29:04.6164311Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-06-01T21:29:04.6164961Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-06-01T21:29:04.6165631Z * [new branch] msaroufim/nospew -> origin/msaroufim/nospew 2025-06-01T21:29:04.6166104Z * [new branch] myst_nb_trial -> origin/myst_nb_trial 2025-06-01T21:29:04.6166562Z * [new branch] nWEIdia-patch-1 -> origin/nWEIdia-patch-1 2025-06-01T21:29:04.6167030Z * [new branch] new-batch-norm -> origin/new-batch-norm 2025-06-01T21:29:04.6167487Z * [new branch] ngimel-h100_tests -> origin/ngimel-h100_tests 2025-06-01T21:29:04.6167978Z * [new branch] ngimel/alloc_rdma -> origin/ngimel/alloc_rdma 2025-06-01T21:29:04.6168461Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-06-01T21:29:04.6168955Z * [new branch] ngimel/cutlass_ptr_array -> origin/ngimel/cutlass_ptr_array 2025-06-01T21:29:04.6169495Z * [new branch] ngimel/elems_per_thread -> origin/ngimel/elems_per_thread 2025-06-01T21:29:04.6169988Z * [new branch] ngimel/fix_index -> origin/ngimel/fix_index 2025-06-01T21:29:04.6170484Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-06-01T21:29:04.6170943Z * [new branch] ngimel/h100_tests -> origin/ngimel/h100_tests 2025-06-01T21:29:04.6171468Z * [new branch] ngimel/index_2dlist -> origin/ngimel/index_2dlist 2025-06-01T21:29:04.6172009Z * [new branch] ngimel/mem_pool_thread_local -> origin/ngimel/mem_pool_thread_local 2025-06-01T21:29:04.6172544Z * [new branch] ngimel/mempool_test -> origin/ngimel/mempool_test 2025-06-01T21:29:04.6173047Z * [new branch] ngimel/mempool_thread -> origin/ngimel/mempool_thread 2025-06-01T21:29:04.6173551Z * [new branch] ngimel/reland_gather -> origin/ngimel/reland_gather 2025-06-01T21:29:04.6174059Z * [new branch] ngimel/removememctx -> origin/ngimel/removememctx 2025-06-01T21:29:04.6174563Z * [new branch] ngimel/unroll_kernel -> origin/ngimel/unroll_kernel 2025-06-01T21:29:04.6175073Z * [new branch] ngimel/use_host_register -> origin/ngimel/use_host_register 2025-06-01T21:29:04.6175617Z * [new branch] ngimel/zero_k_grouped_gemm -> origin/ngimel/zero_k_grouped_gemm 2025-06-01T21:29:04.6176099Z * [new branch] nightly -> origin/nightly 2025-06-01T21:29:04.6176602Z * [new branch] nikitaved/tensordot -> origin/nikitaved/tensordot 2025-06-01T21:29:04.6177222Z * [new branch] offline -> origin/offline 2025-06-01T21:29:04.6177656Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-06-01T21:29:04.6648151Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-06-01T21:29:04.6648677Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-06-01T21:29:04.6649153Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-06-01T21:29:04.6649627Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-06-01T21:29:04.6650086Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-06-01T21:29:04.6650573Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-06-01T21:29:04.6651028Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-06-01T21:29:04.6651502Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-06-01T21:29:04.6651961Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-06-01T21:29:04.6652419Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-06-01T21:29:04.6653051Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-06-01T21:29:04.6653513Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-06-01T21:29:04.6653980Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-06-01T21:29:04.6654449Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-06-01T21:29:04.6654903Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-06-01T21:29:04.6655371Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-06-01T21:29:04.6655832Z * [new branch] origin/voz/serde -> origin/origin/voz/serde 2025-06-01T21:29:04.6656299Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-06-01T21:29:04.6656770Z * [new branch] pack_hook_docs -> origin/pack_hook_docs 2025-06-01T21:29:04.6657236Z * [new branch] padded-tensor -> origin/padded-tensor 2025-06-01T21:29:04.6657690Z * [new branch] parallel_cat -> origin/parallel_cat 2025-06-01T21:29:04.6658137Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-06-01T21:29:04.6658571Z * [new branch] pca2 -> origin/pca2 2025-06-01T21:29:04.6659005Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-06-01T21:29:04.6659508Z * [new branch] pianpwk/01_auto_warning -> origin/pianpwk/01_auto_warning 2025-06-01T21:29:04.6660126Z * [new branch] pianpwk/backed_size_oblivious_global -> origin/pianpwk/backed_size_oblivious_global 2025-06-01T21:29:04.6660822Z * [new branch] pianpwk/backed_symint_endofbounds -> origin/pianpwk/backed_symint_endofbounds 2025-06-01T21:29:04.6661440Z * [new branch] pianpwk/bincount_symint -> origin/pianpwk/bincount_symint 2025-06-01T21:29:04.6661972Z * [new branch] pianpwk/cse_bound_expr -> origin/pianpwk/cse_bound_expr 2025-06-01T21:29:04.6662497Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-06-01T21:29:04.6663070Z * [new branch] pianpwk/draft_cuda_oom_nonstrict -> origin/pianpwk/draft_cuda_oom_nonstrict 2025-06-01T21:29:04.6663707Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-06-01T21:29:04.6664302Z * [new branch] pianpwk/draft_strict_stack -> origin/pianpwk/draft_strict_stack 2025-06-01T21:29:04.6664982Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-06-01T21:29:04.6665546Z * [new branch] pianpwk/dynamo_export_ctx -> origin/pianpwk/dynamo_export_ctx 2025-06-01T21:29:04.6666104Z * [new branch] pianpwk/export_partial_fwd -> origin/pianpwk/export_partial_fwd 2025-06-01T21:29:04.6666672Z * [new branch] pianpwk/false_infer_size -> origin/pianpwk/false_infer_size 2025-06-01T21:29:04.6667376Z * [new branch] pianpwk/inductor_cat_dtype_promote -> origin/pianpwk/inductor_cat_dtype_promote 2025-06-01T21:29:04.6668050Z * [new branch] pianpwk/inductor_unbacked_symint -> origin/pianpwk/inductor_unbacked_symint 2025-06-01T21:29:04.6668653Z * [new branch] pianpwk/kth_value_symint -> origin/pianpwk/kth_value_symint 2025-06-01T21:29:04.6669214Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-06-01T21:29:04.6669780Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-06-01T21:29:04.6670338Z * [new branch] pianpwk/no_benchmark_aten_to -> origin/pianpwk/no_benchmark_aten_to 2025-06-01T21:29:04.6670904Z * [new branch] pianpwk/no_loc_frame_locals -> origin/pianpwk/no_loc_frame_locals 2025-06-01T21:29:04.6671597Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-06-01T21:29:04.6672256Z * [new branch] pianpwk/oblivious_expand -> origin/pianpwk/oblivious_expand 2025-06-01T21:29:04.7104059Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-06-01T21:29:04.7104721Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-06-01T21:29:04.7105369Z * [new branch] pianpwk/oblivious_reshape_view -> origin/pianpwk/oblivious_reshape_view 2025-06-01T21:29:04.7106063Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-06-01T21:29:04.7106785Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-06-01T21:29:04.7107628Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-06-01T21:29:04.7108279Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-06-01T21:29:04.7108933Z * [new branch] pianpwk/oblivious_storagenbytes -> origin/pianpwk/oblivious_storagenbytes 2025-06-01T21:29:04.7109539Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-06-01T21:29:04.7110078Z * [new branch] pianpwk/pad_nd_meta -> origin/pianpwk/pad_nd_meta 2025-06-01T21:29:04.7110595Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-06-01T21:29:04.7111191Z * [new branch] pianpwk/pgo_dynamic_whitelist -> origin/pianpwk/pgo_dynamic_whitelist 2025-06-01T21:29:04.7111758Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-06-01T21:29:04.7112348Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-06-01T21:29:04.7112931Z * [new branch] pianpwk/skt_user_code -> origin/pianpwk/skt_user_code 2025-06-01T21:29:04.7113451Z * [new branch] pianpwk/suggest_for_bool -> origin/pianpwk/suggest_for_bool 2025-06-01T21:29:04.7113974Z * [new branch] pianpwk/sym_and_terms -> origin/pianpwk/sym_and_terms 2025-06-01T21:29:04.7114513Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-06-01T21:29:04.7115123Z * [new branch] pianpwk/treat_sizes_as_size_like -> origin/pianpwk/treat_sizes_as_size_like 2025-06-01T21:29:04.7115927Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-06-01T21:29:04.7116540Z * [new branch] pianpwk/unbacked_safe_unsqueeze -> origin/pianpwk/unbacked_safe_unsqueeze 2025-06-01T21:29:04.7117186Z * [new branch] pianpwk/unbacked_scalar_tensor -> origin/pianpwk/unbacked_scalar_tensor 2025-06-01T21:29:04.7117787Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-06-01T21:29:04.7118386Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-06-01T21:29:04.7119006Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-06-01T21:29:04.7119619Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-06-01T21:29:04.7120250Z * [new branch] pianpwk/verbose_tensor_guards_v2 -> origin/pianpwk/verbose_tensor_guards_v2 2025-06-01T21:29:04.7120886Z * [new branch] pianpwk/verbose_tensor_guards_v3 -> origin/pianpwk/verbose_tensor_guards_v3 2025-06-01T21:29:04.7121444Z * [new branch] pin-new-theme -> origin/pin-new-theme 2025-06-01T21:29:04.7121898Z * [new branch] pin-torchao -> origin/pin-torchao 2025-06-01T21:29:04.7122554Z * [new branch] pool-separate -> origin/pool-separate 2025-06-01T21:29:04.7123046Z * [new branch] pr/131860 -> origin/pr/131860 2025-06-01T21:29:04.7123462Z * [new branch] pr150241 -> origin/pr150241 2025-06-01T21:29:04.7123882Z * [new branch] pr153742 -> origin/pr153742 2025-06-01T21:29:04.7124319Z * [new branch] provenance_doc -> origin/provenance_doc 2025-06-01T21:29:04.7124784Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-06-01T21:29:04.7125288Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-06-01T21:29:04.7125822Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-06-01T21:29:04.7126336Z * [new branch] refactor-adamw -> origin/refactor-adamw 2025-06-01T21:29:04.7126787Z * [new branch] release/1.10 -> origin/release/1.10 2025-06-01T21:29:04.7127225Z * [new branch] release/1.11 -> origin/release/1.11 2025-06-01T21:29:04.7127662Z * [new branch] release/1.12 -> origin/release/1.12 2025-06-01T21:29:04.7128091Z * [new branch] release/1.13 -> origin/release/1.13 2025-06-01T21:29:04.7128530Z * [new branch] release/1.4 -> origin/release/1.4 2025-06-01T21:29:04.7958710Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-06-01T21:29:04.7959252Z * [new branch] release/1.5 -> origin/release/1.5 2025-06-01T21:29:04.7959691Z * [new branch] release/1.6 -> origin/release/1.6 2025-06-01T21:29:04.7960125Z * [new branch] release/1.7 -> origin/release/1.7 2025-06-01T21:29:04.7960576Z * [new branch] release/1.8 -> origin/release/1.8 2025-06-01T21:29:04.7961016Z * [new branch] release/1.9 -> origin/release/1.9 2025-06-01T21:29:04.7961445Z * [new branch] release/2.0 -> origin/release/2.0 2025-06-01T21:29:04.7961919Z * [new branch] release/2.1 -> origin/release/2.1 2025-06-01T21:29:04.7962368Z * [new branch] release/2.2 -> origin/release/2.2 2025-06-01T21:29:04.7962807Z * [new branch] release/2.3 -> origin/release/2.3 2025-06-01T21:29:04.7963816Z * [new branch] release/2.4 -> origin/release/2.4 2025-06-01T21:29:04.7964244Z * [new branch] release/2.5 -> origin/release/2.5 2025-06-01T21:29:04.7964678Z * [new branch] release/2.6 -> origin/release/2.6 2025-06-01T21:29:04.7965095Z * [new branch] release/2.7 -> origin/release/2.7 2025-06-01T21:29:04.7965574Z * [new branch] release_auto_func_cache -> origin/release_auto_func_cache 2025-06-01T21:29:04.7966055Z * [new branch] release_notes -> origin/release_notes 2025-06-01T21:29:04.7966886Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-06-01T21:29:04.7967631Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-06-01T21:29:04.7968359Z * [new branch] revert-154600-gh/pearu/110/head -> origin/revert-154600-gh/pearu/110/head 2025-06-01T21:29:04.7969037Z * [new branch] revert-154617-gh/pearu/112/head -> origin/revert-154617-gh/pearu/112/head 2025-06-01T21:29:04.7969588Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-06-01T21:29:04.7970072Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-06-01T21:29:04.7970702Z * [new branch] rprop-playground -> origin/rprop-playground 2025-06-01T21:29:04.7971400Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-06-01T21:29:04.7972136Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-06-01T21:29:04.7972686Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-06-01T21:29:04.7973160Z * [new branch] rzou/fix -> origin/rzou/fix 2025-06-01T21:29:04.7973579Z * [new branch] rzou/fix2 -> origin/rzou/fix2 2025-06-01T21:29:04.7974046Z * [new branch] rzou/njt -> origin/rzou/njt 2025-06-01T21:29:04.7974483Z * [new branch] rzou/operator -> origin/rzou/operator 2025-06-01T21:29:04.7974960Z * [new branch] rzou/pca -> origin/rzou/pca 2025-06-01T21:29:04.7975410Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-06-01T21:29:04.7975859Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-06-01T21:29:04.7976330Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-06-01T21:29:04.7977087Z * [new branch] sanchitintel/gemm_template_avoid_malloc_lock_contention -> origin/sanchitintel/gemm_template_avoid_malloc_lock_contention 2025-06-01T21:29:04.7977938Z * [new branch] sanchitintel/modify_fp32_micro_gemm -> origin/sanchitintel/modify_fp32_micro_gemm 2025-06-01T21:29:04.7978678Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-06-01T21:29:04.7979550Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-06-01T21:29:04.7980398Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-06-01T21:29:04.7980940Z * [new branch] save -> origin/save 2025-06-01T21:29:04.7981343Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-06-01T21:29:04.7981816Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-06-01T21:29:04.7982306Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-06-01T21:29:04.7982805Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-06-01T21:29:04.7983455Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-06-01T21:29:04.7983976Z * [new branch] shoumikhin-patch-1 -> origin/shoumikhin-patch-1 2025-06-01T21:29:04.8426211Z * [new branch] shoumikhin-patch-10 -> origin/shoumikhin-patch-10 2025-06-01T21:29:04.8426750Z * [new branch] shoumikhin-patch-11 -> origin/shoumikhin-patch-11 2025-06-01T21:29:04.8427309Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-06-01T21:29:04.8427835Z * [new branch] shoumikhin-patch-2 -> origin/shoumikhin-patch-2 2025-06-01T21:29:04.8428337Z * [new branch] shoumikhin-patch-3 -> origin/shoumikhin-patch-3 2025-06-01T21:29:04.8428933Z * [new branch] shoumikhin-patch-4 -> origin/shoumikhin-patch-4 2025-06-01T21:29:04.8429473Z * [new branch] shoumikhin-patch-5 -> origin/shoumikhin-patch-5 2025-06-01T21:29:04.8429976Z * [new branch] shoumikhin-patch-6 -> origin/shoumikhin-patch-6 2025-06-01T21:29:04.8430480Z * [new branch] shoumikhin-patch-7 -> origin/shoumikhin-patch-7 2025-06-01T21:29:04.8430973Z * [new branch] shoumikhin-patch-8 -> origin/shoumikhin-patch-8 2025-06-01T21:29:04.8432132Z * [new branch] shoumikhin-patch-9 -> origin/shoumikhin-patch-9 2025-06-01T21:29:04.8432676Z * [new branch] shunting-multi-kernel-2 -> origin/shunting-multi-kernel-2 2025-06-01T21:29:04.8433238Z * [new branch] shunting-multi-kernel-3 -> origin/shunting-multi-kernel-3 2025-06-01T21:29:04.8433842Z * [new branch] shunting-triton-pin-update-5 -> origin/shunting-triton-pin-update-5 2025-06-01T21:29:04.8434456Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-06-01T21:29:04.8435060Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-06-01T21:29:04.8435626Z * [new branch] split-backend-plugin -> origin/split-backend-plugin 2025-06-01T21:29:04.8436146Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-06-01T21:29:04.8436809Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-06-01T21:29:04.8444853Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-06-01T21:29:04.8445535Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-06-01T21:29:04.8446085Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-06-01T21:29:04.8446644Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-06-01T21:29:04.8447118Z * [new branch] stash_v -> origin/stash_v 2025-06-01T21:29:04.8447571Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-06-01T21:29:04.8448091Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-06-01T21:29:04.8448617Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-06-01T21:29:04.8449106Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-06-01T21:29:04.8449554Z * [new branch] switch-bn -> origin/switch-bn 2025-06-01T21:29:04.8450102Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-06-01T21:29:04.8450640Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-06-01T21:29:04.8451080Z * [new branch] teja/dcp_poc -> origin/teja/dcp_poc 2025-06-01T21:29:04.8451524Z * [new branch] tensor_shelf -> origin/tensor_shelf 2025-06-01T21:29:04.8452218Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-06-01T21:29:04.8452770Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-06-01T21:29:04.8453268Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-06-01T21:29:04.8453713Z * [new branch] test/inductor -> origin/test/inductor 2025-06-01T21:29:04.8454189Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-06-01T21:29:04.8454713Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-06-01T21:29:04.8455255Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-06-01T21:29:04.8455760Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-06-01T21:29:04.8456270Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-06-01T21:29:04.8456827Z * [new branch] triton-cpu-arm-expriment -> origin/triton-cpu-arm-expriment 2025-06-01T21:29:04.8457333Z * [new branch] triton-update -> origin/triton-update 2025-06-01T21:29:04.8457780Z * [new branch] triton_kernel -> origin/triton_kernel 2025-06-01T21:29:04.8458365Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-06-01T21:29:04.8458832Z * [new branch] try-runllm -> origin/try-runllm 2025-06-01T21:29:04.8459257Z * [new branch] type_dec -> origin/type_dec 2025-06-01T21:29:04.8845771Z * [new branch] update-audio-commit-hash/14543755404-1550-1 -> origin/update-audio-commit-hash/14543755404-1550-1 2025-06-01T21:29:04.8846648Z * [new branch] update-audio-commit-hash/14654232188-1560-1 -> origin/update-audio-commit-hash/14654232188-1560-1 2025-06-01T21:29:04.8847504Z * [new branch] update-audio-commit-hash/14849006741-1577-1 -> origin/update-audio-commit-hash/14849006741-1577-1 2025-06-01T21:29:04.8848307Z * [new branch] update-audio-commit-hash/14939917980-1582-1 -> origin/update-audio-commit-hash/14939917980-1582-1 2025-06-01T21:29:04.8849159Z * [new branch] update-audio-commit-hash/15009422285-1586-1 -> origin/update-audio-commit-hash/15009422285-1586-1 2025-06-01T21:29:04.8850013Z * [new branch] update-audio-commit-hash/15150628051-1595-1 -> origin/update-audio-commit-hash/15150628051-1595-1 2025-06-01T21:29:04.8850815Z * [new branch] update-audio-commit-hash/15358121390-1608-1 -> origin/update-audio-commit-hash/15358121390-1608-1 2025-06-01T21:29:04.8851531Z * [new branch] update-benchmark-cuda-12.8 -> origin/update-benchmark-cuda-12.8 2025-06-01T21:29:04.8852159Z * [new branch] update-doc-dependencies-local -> origin/update-doc-dependencies-local 2025-06-01T21:29:04.8852772Z * [new branch] update-doca-actions -> origin/update-doca-actions 2025-06-01T21:29:04.8853496Z * [new branch] update-executorch-commit-hash/14543755404-1550-1 -> origin/update-executorch-commit-hash/14543755404-1550-1 2025-06-01T21:29:04.8854424Z * [new branch] update-executorch-commit-hash/14675703089-1561-1 -> origin/update-executorch-commit-hash/14675703089-1561-1 2025-06-01T21:29:04.8855402Z * [new branch] update-executorch-commit-hash/14985369033-1585-1 -> origin/update-executorch-commit-hash/14985369033-1585-1 2025-06-01T21:29:04.8856313Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-06-01T21:29:04.8857041Z * [new branch] update-triton-wheel-install -> origin/update-triton-wheel-install 2025-06-01T21:29:04.8857756Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-06-01T21:29:04.8858757Z * [new branch] update-vision-commit-hash/9010274985-1089-1 -> origin/update-vision-commit-hash/9010274985-1089-1 2025-06-01T21:29:04.8859573Z * [new branch] update-xla-commit-hash/14440116118-180-1 -> origin/update-xla-commit-hash/14440116118-180-1 2025-06-01T21:29:04.8860323Z * [new branch] update-xla-commit-hash/14831479729-183-1 -> origin/update-xla-commit-hash/14831479729-183-1 2025-06-01T21:29:04.8861072Z * [new branch] update-xla-commit-hash/14966557941-184-1 -> origin/update-xla-commit-hash/14966557941-184-1 2025-06-01T21:29:04.8861911Z * [new branch] update-xla-commit-hash/15107157326-185-1 -> origin/update-xla-commit-hash/15107157326-185-1 2025-06-01T21:29:04.8862656Z * [new branch] update-xla-commit-hash/15249005916-186-1 -> origin/update-xla-commit-hash/15249005916-186-1 2025-06-01T21:29:04.8863423Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-06-01T21:29:04.8864082Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-06-01T21:29:04.8864642Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-06-01T21:29:04.8865317Z * [new branch] update_slow_tests_1744616441 -> origin/update_slow_tests_1744616441 2025-06-01T21:29:04.8865858Z * [new branch] update_slow_tests_1747640463 -> origin/update_slow_tests_1747640463 2025-06-01T21:29:04.8866411Z * [new branch] update_slow_tests_1748245625 -> origin/update_slow_tests_1748245625 2025-06-01T21:29:04.8866976Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-06-01T21:29:04.8867633Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-06-01T21:29:04.8868164Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-06-01T21:29:04.8868573Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-06-01T21:29:04.8868979Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-06-01T21:29:04.8869363Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-06-01T21:29:04.8869767Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-06-01T21:29:04.8870157Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-06-01T21:29:04.8870538Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-06-01T21:29:04.8870967Z * [new branch] validate-flex -> origin/validate-flex 2025-06-01T21:29:04.9366608Z * [new branch] validate_fn -> origin/validate_fn 2025-06-01T21:29:04.9367138Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-06-01T21:29:04.9367634Z * [new branch] viable/strict -> origin/viable/strict 2025-06-01T21:29:04.9368145Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-06-01T21:29:04.9368758Z * [new branch] wdvr/devcontainer_apt_cleanup -> origin/wdvr/devcontainer_apt_cleanup 2025-06-01T21:29:04.9369396Z * [new branch] wdvr/devcontainer_conda_removal -> origin/wdvr/devcontainer_conda_removal 2025-06-01T21:29:04.9370027Z * [new branch] wdvr/devcontainer_context_fix -> origin/wdvr/devcontainer_context_fix 2025-06-01T21:29:04.9370588Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-06-01T21:29:04.9371086Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-06-01T21:29:04.9371553Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-06-01T21:29:04.9372241Z * [new branch] wdvr/logging2fix -> origin/wdvr/logging2fix 2025-06-01T21:29:04.9372753Z * [new branch] whc/flight -> origin/whc/flight 2025-06-01T21:29:04.9373186Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-06-01T21:29:04.9373616Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-06-01T21:29:04.9374064Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-06-01T21:29:04.9374506Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-06-01T21:29:04.9374971Z * [new branch] whc/flightbase -> origin/whc/flightbase 2025-06-01T21:29:04.9375422Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-06-01T21:29:04.9375858Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-06-01T21:29:04.9376278Z * [new branch] whc/uneven -> origin/whc/uneven 2025-06-01T21:29:04.9376731Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-06-01T21:29:04.9377218Z * [new branch] windowsMonitoring -> origin/windowsMonitoring 2025-06-01T21:29:04.9377675Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-06-01T21:29:04.9378526Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-06-01T21:29:04.9379281Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-06-01T21:29:04.9379740Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-06-01T21:29:04.9380195Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-06-01T21:29:04.9380629Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-06-01T21:29:04.9381102Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-06-01T21:29:04.9381584Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-06-01T21:29:04.9382039Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-06-01T21:29:04.9382516Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-06-01T21:29:04.9383016Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-06-01T21:29:04.9383494Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-06-01T21:29:04.9383933Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-06-01T21:29:04.9384408Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-06-01T21:29:04.9384913Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-06-01T21:29:04.9385379Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-06-01T21:29:04.9385850Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-06-01T21:29:04.9386357Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-06-01T21:29:04.9386918Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-06-01T21:29:04.9387513Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-06-01T21:29:04.9387980Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-06-01T21:29:04.9388461Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-06-01T21:29:04.9388982Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-06-01T21:29:04.9389519Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-06-01T21:29:04.9390139Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-06-01T21:29:04.9390685Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-06-01T21:29:04.9907680Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-06-01T21:29:04.9908254Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-06-01T21:29:04.9908728Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-06-01T21:29:04.9909222Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-06-01T21:29:04.9909678Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-06-01T21:29:04.9910162Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-06-01T21:29:04.9910719Z * [new branch] xmfan/compiled_autograd_bench -> origin/xmfan/compiled_autograd_bench 2025-06-01T21:29:04.9911368Z * [new branch] xmfan/compiled_autograd_bench_base -> origin/xmfan/compiled_autograd_bench_base 2025-06-01T21:29:04.9912046Z * [new branch] xmfan/compiled_autograd_benchmark -> origin/xmfan/compiled_autograd_benchmark 2025-06-01T21:29:04.9912666Z * [new branch] xmfan/compiled_autograd_ddp -> origin/xmfan/compiled_autograd_ddp 2025-06-01T21:29:04.9913441Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-06-01T21:29:04.9914100Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-06-01T21:29:04.9914741Z * [new branch] xmfan/compiled_autograd_hud -> origin/xmfan/compiled_autograd_hud 2025-06-01T21:29:04.9915441Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-06-01T21:29:04.9916199Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-06-01T21:29:04.9916831Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-06-01T21:29:04.9917420Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-06-01T21:29:04.9918024Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-06-01T21:29:04.9918697Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-06-01T21:29:04.9919309Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-06-01T21:29:04.9920016Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-06-01T21:29:04.9920939Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-06-01T21:29:04.9921644Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-06-01T21:29:04.9922141Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-06-01T21:29:04.9922603Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-06-01T21:29:04.9923042Z * [new branch] xmfan/test -> origin/xmfan/test 2025-06-01T21:29:04.9923534Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-06-01T21:29:04.9924072Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-06-01T21:29:04.9924633Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-06-01T21:29:04.9925378Z * [new branch] yguo/repro-segfault-triton-aoti-cpp-wrapper -> origin/yguo/repro-segfault-triton-aoti-cpp-wrapper 2025-06-01T21:29:04.9926211Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-06-01T21:29:04.9926699Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-06-01T21:29:04.9927167Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-06-01T21:29:04.9927675Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-06-01T21:29:04.9928164Z * [new branch] zainr/no-win-pull -> origin/zainr/no-win-pull 2025-06-01T21:29:04.9928682Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-06-01T21:29:04.9929211Z * [new branch] zainr/require-easycla -> origin/zainr/require-easycla 2025-06-01T21:29:04.9929709Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-06-01T21:29:04.9930194Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-06-01T21:29:04.9930633Z * [new branch] zb2p -> origin/zb2p 2025-06-01T21:29:04.9931068Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-06-01T21:29:04.9931577Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-06-01T21:29:05.0347703Z * [new branch] zhxchen17/moodycamel -> origin/zhxchen17/moodycamel 2025-06-01T21:29:05.0348295Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-06-01T21:29:05.0348802Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-06-01T21:29:05.0349322Z * [new branch] zhxchen17/sticky_cache/0 -> origin/zhxchen17/sticky_cache/0 2025-06-01T21:29:05.0349849Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-06-01T21:29:05.0350406Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-06-01T21:29:05.0350899Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-06-01T21:29:05.0351359Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-06-01T21:29:05.0351854Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-06-01T21:29:05.0352319Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-06-01T21:29:05.0352749Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-06-01T21:29:05.0353208Z * [new branch] zxiiro/test-bazel -> origin/zxiiro/test-bazel 2025-06-01T21:29:05.0353695Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-06-01T21:29:05.0354149Z * [new branch] zxiiro/xpu -> origin/zxiiro/xpu 2025-06-01T21:29:05.0354876Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-06-01T21:29:05.0355587Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-06-01T21:29:05.0355994Z * [new tag] ciflow/all/70978 -> ciflow/all/70978 2025-06-01T21:29:05.0356430Z * [new tag] ciflow/all/70979 -> ciflow/all/70979 2025-06-01T21:29:05.0356872Z * [new tag] ciflow/all/70989 -> ciflow/all/70989 2025-06-01T21:29:05.0357295Z * [new tag] ciflow/autoformat/149003 -> ciflow/autoformat/149003 2025-06-01T21:29:05.0357753Z * [new tag] ciflow/binaries/120076 -> ciflow/binaries/120076 2025-06-01T21:29:05.0358200Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-06-01T21:29:05.0358632Z * [new tag] ciflow/binaries/148173 -> ciflow/binaries/148173 2025-06-01T21:29:05.0359225Z * [new tag] ciflow/binaries/149192 -> ciflow/binaries/149192 2025-06-01T21:29:05.0359658Z * [new tag] ciflow/binaries/150688 -> ciflow/binaries/150688 2025-06-01T21:29:05.0360104Z * [new tag] ciflow/binaries/151581 -> ciflow/binaries/151581 2025-06-01T21:29:05.0360549Z * [new tag] ciflow/binaries/152782 -> ciflow/binaries/152782 2025-06-01T21:29:05.0360988Z * [new tag] ciflow/binaries/153322 -> ciflow/binaries/153322 2025-06-01T21:29:05.0361423Z * [new tag] ciflow/binaries/153538 -> ciflow/binaries/153538 2025-06-01T21:29:05.0361852Z * [new tag] ciflow/binaries/153792 -> ciflow/binaries/153792 2025-06-01T21:29:05.0362333Z * [new tag] ciflow/binaries/154783 -> ciflow/binaries/154783 2025-06-01T21:29:05.0362760Z * [new tag] ciflow/binaries/154809 -> ciflow/binaries/154809 2025-06-01T21:29:05.0363334Z * [new tag] ciflow/binaries/154811 -> ciflow/binaries/154811 2025-06-01T21:29:05.0363774Z * [new tag] ciflow/binaries/154819 -> ciflow/binaries/154819 2025-06-01T21:29:05.0364260Z * [new tag] ciflow/binaries_libtorch/152184 -> ciflow/binaries_libtorch/152184 2025-06-01T21:29:05.0364790Z * [new tag] ciflow/binaries_wheel/146055 -> ciflow/binaries_wheel/146055 2025-06-01T21:29:05.0365384Z * [new tag] ciflow/binaries_wheel/149192 -> ciflow/binaries_wheel/149192 2025-06-01T21:29:05.0365879Z * [new tag] ciflow/binaries_wheel/151429 -> ciflow/binaries_wheel/151429 2025-06-01T21:29:05.0366374Z * [new tag] ciflow/binaries_wheel/152184 -> ciflow/binaries_wheel/152184 2025-06-01T21:29:05.0366860Z * [new tag] ciflow/binaries_wheel/152820 -> ciflow/binaries_wheel/152820 2025-06-01T21:29:05.0367359Z * [new tag] ciflow/binaries_wheel/153228 -> ciflow/binaries_wheel/153228 2025-06-01T21:29:05.0367844Z * [new tag] ciflow/binaries_wheel/153538 -> ciflow/binaries_wheel/153538 2025-06-01T21:29:05.0368337Z * [new tag] ciflow/binaries_wheel/154107 -> ciflow/binaries_wheel/154107 2025-06-01T21:29:05.0368881Z * [new tag] ciflow/binaries_wheel/154346 -> ciflow/binaries_wheel/154346 2025-06-01T21:29:05.0369459Z * [new tag] ciflow/binaries_wheel/154729 -> ciflow/binaries_wheel/154729 2025-06-01T21:29:05.0369919Z * [new tag] ciflow/cuda/70978 -> ciflow/cuda/70978 2025-06-01T21:29:05.0370327Z * [new tag] ciflow/cuda/70979 -> ciflow/cuda/70979 2025-06-01T21:29:05.0370729Z * [new tag] ciflow/cuda/70989 -> ciflow/cuda/70989 2025-06-01T21:29:05.0669077Z * [new tag] ciflow/h100/db26aeaec2ce9d47e52ec21ae30d15054bcd2a71 -> ciflow/h100/db26aeaec2ce9d47e52ec21ae30d15054bcd2a71 2025-06-01T21:29:05.0669927Z * [new tag] ciflow/inductor-cu124/153541 -> ciflow/inductor-cu124/153541 2025-06-01T21:29:05.0670442Z * [new tag] ciflow/inductor-cu126/152782 -> ciflow/inductor-cu126/152782 2025-06-01T21:29:05.0670946Z * [new tag] ciflow/inductor-cu126/153541 -> ciflow/inductor-cu126/153541 2025-06-01T21:29:05.0671642Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151581 -> ciflow/inductor-micro-benchmark-cpu-x86/151581 2025-06-01T21:29:05.0672494Z * [new tag] ciflow/inductor-micro-benchmark-cpu-x86/151585 -> ciflow/inductor-micro-benchmark-cpu-x86/151585 2025-06-01T21:29:05.0673261Z * [new tag] ciflow/inductor-micro-benchmark/151581 -> ciflow/inductor-micro-benchmark/151581 2025-06-01T21:29:05.0673964Z * [new tag] ciflow/inductor-micro-benchmark/151585 -> ciflow/inductor-micro-benchmark/151585 2025-06-01T21:29:05.0674633Z * [new tag] ciflow/inductor-perf-compare/151581 -> ciflow/inductor-perf-compare/151581 2025-06-01T21:29:05.0675472Z * [new tag] ciflow/inductor-perf-compare/151585 -> ciflow/inductor-perf-compare/151585 2025-06-01T21:29:05.0676207Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/148672 -> ciflow/inductor-perf-test-nightly-rocm/148672 2025-06-01T21:29:05.0677032Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149039 -> ciflow/inductor-perf-test-nightly-rocm/149039 2025-06-01T21:29:05.0677860Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/149506 -> ciflow/inductor-perf-test-nightly-rocm/149506 2025-06-01T21:29:05.0678687Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151581 -> ciflow/inductor-perf-test-nightly-rocm/151581 2025-06-01T21:29:05.0679499Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-06-01T21:29:05.0680315Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/154511 -> ciflow/inductor-perf-test-nightly-rocm/154511 2025-06-01T21:29:05.0681090Z * [new tag] ciflow/inductor-perf-test-nightly/151581 -> ciflow/inductor-perf-test-nightly/151581 2025-06-01T21:29:05.0681819Z * [new tag] ciflow/inductor-perf-test-nightly/154511 -> ciflow/inductor-perf-test-nightly/154511 2025-06-01T21:29:05.0682910Z * [new tag] ciflow/inductor-periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 -> ciflow/inductor-periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 2025-06-01T21:29:05.0683795Z * [new tag] ciflow/inductor-periodic/149949 -> ciflow/inductor-periodic/149949 2025-06-01T21:29:05.0684373Z * [new tag] ciflow/inductor-periodic/150411 -> ciflow/inductor-periodic/150411 2025-06-01T21:29:05.0684944Z * [new tag] ciflow/inductor-periodic/151581 -> ciflow/inductor-periodic/151581 2025-06-01T21:29:05.0685501Z * [new tag] ciflow/inductor-periodic/153290 -> ciflow/inductor-periodic/153290 2025-06-01T21:29:05.0686072Z * [new tag] ciflow/inductor-periodic/154497 -> ciflow/inductor-periodic/154497 2025-06-01T21:29:05.0686936Z * [new tag] ciflow/inductor-periodic/c13eeaa718c985782bd72bf47886430f6203a768 -> ciflow/inductor-periodic/c13eeaa718c985782bd72bf47886430f6203a768 2025-06-01T21:29:05.0688130Z * [new tag] ciflow/inductor-periodic/fe082c5ffe0c9b1bb70727f2ee7996987bf7c5cd -> ciflow/inductor-periodic/fe082c5ffe0c9b1bb70727f2ee7996987bf7c5cd 2025-06-01T21:29:05.0688973Z * [new tag] ciflow/inductor-rocm/141309 -> ciflow/inductor-rocm/141309 2025-06-01T21:29:05.0689461Z * [new tag] ciflow/inductor-rocm/147583 -> ciflow/inductor-rocm/147583 2025-06-01T21:29:05.0689952Z * [new tag] ciflow/inductor-rocm/151581 -> ciflow/inductor-rocm/151581 2025-06-01T21:29:05.0690428Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-06-01T21:29:05.0690937Z * [new tag] ciflow/inductor-rocm/153545 -> ciflow/inductor-rocm/153545 2025-06-01T21:29:05.0691418Z * [new tag] ciflow/inductor-rocm/153548 -> ciflow/inductor-rocm/153548 2025-06-01T21:29:05.0691900Z * [new tag] ciflow/inductor-rocm/154525 -> ciflow/inductor-rocm/154525 2025-06-01T21:29:05.0692368Z * [new tag] ciflow/inductor/110155 -> ciflow/inductor/110155 2025-06-01T21:29:05.0692810Z * [new tag] ciflow/inductor/119496 -> ciflow/inductor/119496 2025-06-01T21:29:05.0693262Z * [new tag] ciflow/inductor/119977 -> ciflow/inductor/119977 2025-06-01T21:29:05.0693687Z * [new tag] ciflow/inductor/120076 -> ciflow/inductor/120076 2025-06-01T21:29:05.0694120Z * [new tag] ciflow/inductor/121445 -> ciflow/inductor/121445 2025-06-01T21:29:05.0694558Z * [new tag] ciflow/inductor/124490 -> ciflow/inductor/124490 2025-06-01T21:29:05.1004492Z * [new tag] ciflow/inductor/125270 -> ciflow/inductor/125270 2025-06-01T21:29:05.1005023Z * [new tag] ciflow/inductor/125326 -> ciflow/inductor/125326 2025-06-01T21:29:05.1005468Z * [new tag] ciflow/inductor/125428 -> ciflow/inductor/125428 2025-06-01T21:29:05.1005898Z * [new tag] ciflow/inductor/125888 -> ciflow/inductor/125888 2025-06-01T21:29:05.1006383Z * [new tag] ciflow/inductor/125995 -> ciflow/inductor/125995 2025-06-01T21:29:05.1006807Z * [new tag] ciflow/inductor/126348 -> ciflow/inductor/126348 2025-06-01T21:29:05.1007246Z * [new tag] ciflow/inductor/127293 -> ciflow/inductor/127293 2025-06-01T21:29:05.1007678Z * [new tag] ciflow/inductor/127294 -> ciflow/inductor/127294 2025-06-01T21:29:05.1008102Z * [new tag] ciflow/inductor/129352 -> ciflow/inductor/129352 2025-06-01T21:29:05.1008558Z * [new tag] ciflow/inductor/130887 -> ciflow/inductor/130887 2025-06-01T21:29:05.1008981Z * [new tag] ciflow/inductor/132414 -> ciflow/inductor/132414 2025-06-01T21:29:05.1009425Z * [new tag] ciflow/inductor/133044 -> ciflow/inductor/133044 2025-06-01T21:29:05.1009853Z * [new tag] ciflow/inductor/133289 -> ciflow/inductor/133289 2025-06-01T21:29:05.1010473Z * [new tag] ciflow/inductor/133296 -> ciflow/inductor/133296 2025-06-01T21:29:05.1010918Z * [new tag] ciflow/inductor/133297 -> ciflow/inductor/133297 2025-06-01T21:29:05.1011343Z * [new tag] ciflow/inductor/133315 -> ciflow/inductor/133315 2025-06-01T21:29:05.1011788Z * [new tag] ciflow/inductor/133392 -> ciflow/inductor/133392 2025-06-01T21:29:05.1012220Z * [new tag] ciflow/inductor/133419 -> ciflow/inductor/133419 2025-06-01T21:29:05.1012662Z * [new tag] ciflow/inductor/133423 -> ciflow/inductor/133423 2025-06-01T21:29:05.1013096Z * [new tag] ciflow/inductor/133667 -> ciflow/inductor/133667 2025-06-01T21:29:05.1013526Z * [new tag] ciflow/inductor/133753 -> ciflow/inductor/133753 2025-06-01T21:29:05.1013964Z * [new tag] ciflow/inductor/135792 -> ciflow/inductor/135792 2025-06-01T21:29:05.1014398Z * [new tag] ciflow/inductor/136355 -> ciflow/inductor/136355 2025-06-01T21:29:05.1014828Z * [new tag] ciflow/inductor/136702 -> ciflow/inductor/136702 2025-06-01T21:29:05.1015267Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-06-01T21:29:05.1015690Z * [new tag] ciflow/inductor/137568 -> ciflow/inductor/137568 2025-06-01T21:29:05.1016134Z * [new tag] ciflow/inductor/137583 -> ciflow/inductor/137583 2025-06-01T21:29:05.1016571Z * [new tag] ciflow/inductor/137846 -> ciflow/inductor/137846 2025-06-01T21:29:05.1016998Z * [new tag] ciflow/inductor/138214 -> ciflow/inductor/138214 2025-06-01T21:29:05.1017433Z * [new tag] ciflow/inductor/138388 -> ciflow/inductor/138388 2025-06-01T21:29:05.1017865Z * [new tag] ciflow/inductor/138513 -> ciflow/inductor/138513 2025-06-01T21:29:05.1018306Z * [new tag] ciflow/inductor/138519 -> ciflow/inductor/138519 2025-06-01T21:29:05.1018736Z * [new tag] ciflow/inductor/138626 -> ciflow/inductor/138626 2025-06-01T21:29:05.1019165Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-06-01T21:29:05.1019589Z * [new tag] ciflow/inductor/139975 -> ciflow/inductor/139975 2025-06-01T21:29:05.1020018Z * [new tag] ciflow/inductor/140756 -> ciflow/inductor/140756 2025-06-01T21:29:05.1020583Z * [new tag] ciflow/inductor/140979 -> ciflow/inductor/140979 2025-06-01T21:29:05.1021013Z * [new tag] ciflow/inductor/141309 -> ciflow/inductor/141309 2025-06-01T21:29:05.1021449Z * [new tag] ciflow/inductor/141842 -> ciflow/inductor/141842 2025-06-01T21:29:05.1021875Z * [new tag] ciflow/inductor/141961 -> ciflow/inductor/141961 2025-06-01T21:29:05.1022324Z * [new tag] ciflow/inductor/142295 -> ciflow/inductor/142295 2025-06-01T21:29:05.1022759Z * [new tag] ciflow/inductor/143712 -> ciflow/inductor/143712 2025-06-01T21:29:05.1023186Z * [new tag] ciflow/inductor/143812 -> ciflow/inductor/143812 2025-06-01T21:29:05.1023619Z * [new tag] ciflow/inductor/143833 -> ciflow/inductor/143833 2025-06-01T21:29:05.1024042Z * [new tag] ciflow/inductor/143987 -> ciflow/inductor/143987 2025-06-01T21:29:05.1024482Z * [new tag] ciflow/inductor/144366 -> ciflow/inductor/144366 2025-06-01T21:29:05.1024908Z * [new tag] ciflow/inductor/144438 -> ciflow/inductor/144438 2025-06-01T21:29:05.1025340Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-06-01T21:29:05.1025771Z * [new tag] ciflow/inductor/144542 -> ciflow/inductor/144542 2025-06-01T21:29:05.1375512Z * [new tag] ciflow/inductor/144548 -> ciflow/inductor/144548 2025-06-01T21:29:05.1376018Z * [new tag] ciflow/inductor/144553 -> ciflow/inductor/144553 2025-06-01T21:29:05.1376489Z * [new tag] ciflow/inductor/144555 -> ciflow/inductor/144555 2025-06-01T21:29:05.1376973Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-06-01T21:29:05.1377443Z * [new tag] ciflow/inductor/144765 -> ciflow/inductor/144765 2025-06-01T21:29:05.1377887Z * [new tag] ciflow/inductor/144905 -> ciflow/inductor/144905 2025-06-01T21:29:05.1378325Z * [new tag] ciflow/inductor/144925 -> ciflow/inductor/144925 2025-06-01T21:29:05.1378765Z * [new tag] ciflow/inductor/144992 -> ciflow/inductor/144992 2025-06-01T21:29:05.1379194Z * [new tag] ciflow/inductor/145153 -> ciflow/inductor/145153 2025-06-01T21:29:05.1379641Z * [new tag] ciflow/inductor/145353 -> ciflow/inductor/145353 2025-06-01T21:29:05.1380069Z * [new tag] ciflow/inductor/145594 -> ciflow/inductor/145594 2025-06-01T21:29:05.1380506Z * [new tag] ciflow/inductor/145595 -> ciflow/inductor/145595 2025-06-01T21:29:05.1380930Z * [new tag] ciflow/inductor/145681 -> ciflow/inductor/145681 2025-06-01T21:29:05.1381377Z * [new tag] ciflow/inductor/145911 -> ciflow/inductor/145911 2025-06-01T21:29:05.1381828Z * [new tag] ciflow/inductor/145922 -> ciflow/inductor/145922 2025-06-01T21:29:05.1382257Z * [new tag] ciflow/inductor/145992 -> ciflow/inductor/145992 2025-06-01T21:29:05.1382725Z * [new tag] ciflow/inductor/146101 -> ciflow/inductor/146101 2025-06-01T21:29:05.1383161Z * [new tag] ciflow/inductor/146172 -> ciflow/inductor/146172 2025-06-01T21:29:05.1383639Z * [new tag] ciflow/inductor/146267 -> ciflow/inductor/146267 2025-06-01T21:29:05.1384078Z * [new tag] ciflow/inductor/146288 -> ciflow/inductor/146288 2025-06-01T21:29:05.1384507Z * [new tag] ciflow/inductor/146335 -> ciflow/inductor/146335 2025-06-01T21:29:05.1384950Z * [new tag] ciflow/inductor/146436 -> ciflow/inductor/146436 2025-06-01T21:29:05.1385379Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-06-01T21:29:05.1385824Z * [new tag] ciflow/inductor/146558 -> ciflow/inductor/146558 2025-06-01T21:29:05.1386401Z * [new tag] ciflow/inductor/146845 -> ciflow/inductor/146845 2025-06-01T21:29:05.1386833Z * [new tag] ciflow/inductor/146874 -> ciflow/inductor/146874 2025-06-01T21:29:05.1387351Z * [new tag] ciflow/inductor/146983 -> ciflow/inductor/146983 2025-06-01T21:29:05.1387793Z * [new tag] ciflow/inductor/147049 -> ciflow/inductor/147049 2025-06-01T21:29:05.1388234Z * [new tag] ciflow/inductor/147146 -> ciflow/inductor/147146 2025-06-01T21:29:05.1388673Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-06-01T21:29:05.1389161Z * [new tag] ciflow/inductor/147368 -> ciflow/inductor/147368 2025-06-01T21:29:05.1389641Z * [new tag] ciflow/inductor/147410 -> ciflow/inductor/147410 2025-06-01T21:29:05.1390071Z * [new tag] ciflow/inductor/147514 -> ciflow/inductor/147514 2025-06-01T21:29:05.1390519Z * [new tag] ciflow/inductor/147528 -> ciflow/inductor/147528 2025-06-01T21:29:05.1390947Z * [new tag] ciflow/inductor/147562 -> ciflow/inductor/147562 2025-06-01T21:29:05.1391386Z * [new tag] ciflow/inductor/147583 -> ciflow/inductor/147583 2025-06-01T21:29:05.1391928Z * [new tag] ciflow/inductor/147603 -> ciflow/inductor/147603 2025-06-01T21:29:05.1392364Z * [new tag] ciflow/inductor/147745 -> ciflow/inductor/147745 2025-06-01T21:29:05.1392807Z * [new tag] ciflow/inductor/147881 -> ciflow/inductor/147881 2025-06-01T21:29:05.1393241Z * [new tag] ciflow/inductor/147927 -> ciflow/inductor/147927 2025-06-01T21:29:05.1393684Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-06-01T21:29:05.1394121Z * [new tag] ciflow/inductor/148173 -> ciflow/inductor/148173 2025-06-01T21:29:05.1394553Z * [new tag] ciflow/inductor/148186 -> ciflow/inductor/148186 2025-06-01T21:29:05.1395029Z * [new tag] ciflow/inductor/148202 -> ciflow/inductor/148202 2025-06-01T21:29:05.1395452Z * [new tag] ciflow/inductor/148235 -> ciflow/inductor/148235 2025-06-01T21:29:05.1395927Z * [new tag] ciflow/inductor/148294 -> ciflow/inductor/148294 2025-06-01T21:29:05.1396348Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-06-01T21:29:05.1396785Z * [new tag] ciflow/inductor/148357 -> ciflow/inductor/148357 2025-06-01T21:29:05.1397219Z * [new tag] ciflow/inductor/148408 -> ciflow/inductor/148408 2025-06-01T21:29:05.1397640Z * [new tag] ciflow/inductor/148413 -> ciflow/inductor/148413 2025-06-01T21:29:05.1725708Z * [new tag] ciflow/inductor/148414 -> ciflow/inductor/148414 2025-06-01T21:29:05.1726270Z * [new tag] ciflow/inductor/148415 -> ciflow/inductor/148415 2025-06-01T21:29:05.1726709Z * [new tag] ciflow/inductor/148418 -> ciflow/inductor/148418 2025-06-01T21:29:05.1727153Z * [new tag] ciflow/inductor/148424 -> ciflow/inductor/148424 2025-06-01T21:29:05.1727593Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-06-01T21:29:05.1728033Z * [new tag] ciflow/inductor/148485 -> ciflow/inductor/148485 2025-06-01T21:29:05.1728469Z * [new tag] ciflow/inductor/148488 -> ciflow/inductor/148488 2025-06-01T21:29:05.1728892Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-06-01T21:29:05.1729322Z * [new tag] ciflow/inductor/148529 -> ciflow/inductor/148529 2025-06-01T21:29:05.1729748Z * [new tag] ciflow/inductor/148569 -> ciflow/inductor/148569 2025-06-01T21:29:05.1730382Z * [new tag] ciflow/inductor/148618 -> ciflow/inductor/148618 2025-06-01T21:29:05.1730805Z * [new tag] ciflow/inductor/148694 -> ciflow/inductor/148694 2025-06-01T21:29:05.1731246Z * [new tag] ciflow/inductor/148710 -> ciflow/inductor/148710 2025-06-01T21:29:05.1731693Z * [new tag] ciflow/inductor/148731 -> ciflow/inductor/148731 2025-06-01T21:29:05.1732120Z * [new tag] ciflow/inductor/148780 -> ciflow/inductor/148780 2025-06-01T21:29:05.1732554Z * [new tag] ciflow/inductor/148898 -> ciflow/inductor/148898 2025-06-01T21:29:05.1732975Z * [new tag] ciflow/inductor/148932 -> ciflow/inductor/148932 2025-06-01T21:29:05.1733404Z * [new tag] ciflow/inductor/148947 -> ciflow/inductor/148947 2025-06-01T21:29:05.1733838Z * [new tag] ciflow/inductor/149039 -> ciflow/inductor/149039 2025-06-01T21:29:05.1734271Z * [new tag] ciflow/inductor/149055 -> ciflow/inductor/149055 2025-06-01T21:29:05.1734701Z * [new tag] ciflow/inductor/149066 -> ciflow/inductor/149066 2025-06-01T21:29:05.1735131Z * [new tag] ciflow/inductor/149067 -> ciflow/inductor/149067 2025-06-01T21:29:05.1735569Z * [new tag] ciflow/inductor/149068 -> ciflow/inductor/149068 2025-06-01T21:29:05.1736119Z * [new tag] ciflow/inductor/149069 -> ciflow/inductor/149069 2025-06-01T21:29:05.1736547Z * [new tag] ciflow/inductor/149140 -> ciflow/inductor/149140 2025-06-01T21:29:05.1736988Z * [new tag] ciflow/inductor/149150 -> ciflow/inductor/149150 2025-06-01T21:29:05.1737421Z * [new tag] ciflow/inductor/149173 -> ciflow/inductor/149173 2025-06-01T21:29:05.1737859Z * [new tag] ciflow/inductor/149192 -> ciflow/inductor/149192 2025-06-01T21:29:05.1738294Z * [new tag] ciflow/inductor/149282 -> ciflow/inductor/149282 2025-06-01T21:29:05.1738740Z * [new tag] ciflow/inductor/149288 -> ciflow/inductor/149288 2025-06-01T21:29:05.1739181Z * [new tag] ciflow/inductor/149348 -> ciflow/inductor/149348 2025-06-01T21:29:05.1739604Z * [new tag] ciflow/inductor/149362 -> ciflow/inductor/149362 2025-06-01T21:29:05.1740039Z * [new tag] ciflow/inductor/149420 -> ciflow/inductor/149420 2025-06-01T21:29:05.1740461Z * [new tag] ciflow/inductor/149426 -> ciflow/inductor/149426 2025-06-01T21:29:05.1740894Z * [new tag] ciflow/inductor/149427 -> ciflow/inductor/149427 2025-06-01T21:29:05.1741331Z * [new tag] ciflow/inductor/149486 -> ciflow/inductor/149486 2025-06-01T21:29:05.1741758Z * [new tag] ciflow/inductor/149506 -> ciflow/inductor/149506 2025-06-01T21:29:05.1742205Z * [new tag] ciflow/inductor/149518 -> ciflow/inductor/149518 2025-06-01T21:29:05.1742627Z * [new tag] ciflow/inductor/149560 -> ciflow/inductor/149560 2025-06-01T21:29:05.1743066Z * [new tag] ciflow/inductor/149561 -> ciflow/inductor/149561 2025-06-01T21:29:05.1743498Z * [new tag] ciflow/inductor/149562 -> ciflow/inductor/149562 2025-06-01T21:29:05.1743928Z * [new tag] ciflow/inductor/149580 -> ciflow/inductor/149580 2025-06-01T21:29:05.1744364Z * [new tag] ciflow/inductor/149697 -> ciflow/inductor/149697 2025-06-01T21:29:05.1744794Z * [new tag] ciflow/inductor/149701 -> ciflow/inductor/149701 2025-06-01T21:29:05.1745226Z * [new tag] ciflow/inductor/149706 -> ciflow/inductor/149706 2025-06-01T21:29:05.1745653Z * [new tag] ciflow/inductor/149733 -> ciflow/inductor/149733 2025-06-01T21:29:05.1746202Z * [new tag] ciflow/inductor/149763 -> ciflow/inductor/149763 2025-06-01T21:29:05.1746644Z * [new tag] ciflow/inductor/149769 -> ciflow/inductor/149769 2025-06-01T21:29:05.1747070Z * [new tag] ciflow/inductor/149913 -> ciflow/inductor/149913 2025-06-01T21:29:05.2080849Z * [new tag] ciflow/inductor/149949 -> ciflow/inductor/149949 2025-06-01T21:29:05.2081365Z * [new tag] ciflow/inductor/149958 -> ciflow/inductor/149958 2025-06-01T21:29:05.2081818Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-06-01T21:29:05.2082255Z * [new tag] ciflow/inductor/149967 -> ciflow/inductor/149967 2025-06-01T21:29:05.2082697Z * [new tag] ciflow/inductor/149998 -> ciflow/inductor/149998 2025-06-01T21:29:05.2083135Z * [new tag] ciflow/inductor/150003 -> ciflow/inductor/150003 2025-06-01T21:29:05.2083571Z * [new tag] ciflow/inductor/150044 -> ciflow/inductor/150044 2025-06-01T21:29:05.2084018Z * [new tag] ciflow/inductor/150080 -> ciflow/inductor/150080 2025-06-01T21:29:05.2084499Z * [new tag] ciflow/inductor/150116 -> ciflow/inductor/150116 2025-06-01T21:29:05.2084983Z * [new tag] ciflow/inductor/150241 -> ciflow/inductor/150241 2025-06-01T21:29:05.2085628Z * [new tag] ciflow/inductor/150287 -> ciflow/inductor/150287 2025-06-01T21:29:05.2086065Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-06-01T21:29:05.2086514Z * [new tag] ciflow/inductor/150331 -> ciflow/inductor/150331 2025-06-01T21:29:05.2086948Z * [new tag] ciflow/inductor/150349 -> ciflow/inductor/150349 2025-06-01T21:29:05.2087391Z * [new tag] ciflow/inductor/150355 -> ciflow/inductor/150355 2025-06-01T21:29:05.2087839Z * [new tag] ciflow/inductor/150365 -> ciflow/inductor/150365 2025-06-01T21:29:05.2088270Z * [new tag] ciflow/inductor/150411 -> ciflow/inductor/150411 2025-06-01T21:29:05.2088709Z * [new tag] ciflow/inductor/150415 -> ciflow/inductor/150415 2025-06-01T21:29:05.2089165Z * [new tag] ciflow/inductor/150429 -> ciflow/inductor/150429 2025-06-01T21:29:05.2089599Z * [new tag] ciflow/inductor/150455 -> ciflow/inductor/150455 2025-06-01T21:29:05.2090029Z * [new tag] ciflow/inductor/150474 -> ciflow/inductor/150474 2025-06-01T21:29:05.2090453Z * [new tag] ciflow/inductor/150481 -> ciflow/inductor/150481 2025-06-01T21:29:05.2090881Z * [new tag] ciflow/inductor/150546 -> ciflow/inductor/150546 2025-06-01T21:29:05.2091306Z * [new tag] ciflow/inductor/150564 -> ciflow/inductor/150564 2025-06-01T21:29:05.2091746Z * [new tag] ciflow/inductor/150567 -> ciflow/inductor/150567 2025-06-01T21:29:05.2092181Z * [new tag] ciflow/inductor/150569 -> ciflow/inductor/150569 2025-06-01T21:29:05.2092606Z * [new tag] ciflow/inductor/150582 -> ciflow/inductor/150582 2025-06-01T21:29:05.2093038Z * [new tag] ciflow/inductor/150583 -> ciflow/inductor/150583 2025-06-01T21:29:05.2093463Z * [new tag] ciflow/inductor/150669 -> ciflow/inductor/150669 2025-06-01T21:29:05.2093909Z * [new tag] ciflow/inductor/150673 -> ciflow/inductor/150673 2025-06-01T21:29:05.2094345Z * [new tag] ciflow/inductor/150717 -> ciflow/inductor/150717 2025-06-01T21:29:05.2094774Z * [new tag] ciflow/inductor/150719 -> ciflow/inductor/150719 2025-06-01T21:29:05.2095204Z * [new tag] ciflow/inductor/150720 -> ciflow/inductor/150720 2025-06-01T21:29:05.2095767Z * [new tag] ciflow/inductor/150762 -> ciflow/inductor/150762 2025-06-01T21:29:05.2096209Z * [new tag] ciflow/inductor/150789 -> ciflow/inductor/150789 2025-06-01T21:29:05.2096653Z * [new tag] ciflow/inductor/150793 -> ciflow/inductor/150793 2025-06-01T21:29:05.2097080Z * [new tag] ciflow/inductor/150794 -> ciflow/inductor/150794 2025-06-01T21:29:05.2097530Z * [new tag] ciflow/inductor/150795 -> ciflow/inductor/150795 2025-06-01T21:29:05.2097959Z * [new tag] ciflow/inductor/150796 -> ciflow/inductor/150796 2025-06-01T21:29:05.2098395Z * [new tag] ciflow/inductor/150875 -> ciflow/inductor/150875 2025-06-01T21:29:05.2098818Z * [new tag] ciflow/inductor/150899 -> ciflow/inductor/150899 2025-06-01T21:29:05.2099250Z * [new tag] ciflow/inductor/150937 -> ciflow/inductor/150937 2025-06-01T21:29:05.2099696Z * [new tag] ciflow/inductor/150944 -> ciflow/inductor/150944 2025-06-01T21:29:05.2100119Z * [new tag] ciflow/inductor/150954 -> ciflow/inductor/150954 2025-06-01T21:29:05.2100551Z * [new tag] ciflow/inductor/150968 -> ciflow/inductor/150968 2025-06-01T21:29:05.2100974Z * [new tag] ciflow/inductor/151009 -> ciflow/inductor/151009 2025-06-01T21:29:05.2101511Z * [new tag] ciflow/inductor/151115 -> ciflow/inductor/151115 2025-06-01T21:29:05.2101949Z * [new tag] ciflow/inductor/151120 -> ciflow/inductor/151120 2025-06-01T21:29:05.2102382Z * [new tag] ciflow/inductor/151217 -> ciflow/inductor/151217 2025-06-01T21:29:05.2426197Z * [new tag] ciflow/inductor/151265 -> ciflow/inductor/151265 2025-06-01T21:29:05.2426646Z * [new tag] ciflow/inductor/151271 -> ciflow/inductor/151271 2025-06-01T21:29:05.2427097Z * [new tag] ciflow/inductor/151315 -> ciflow/inductor/151315 2025-06-01T21:29:05.2427603Z * [new tag] ciflow/inductor/151481 -> ciflow/inductor/151481 2025-06-01T21:29:05.2428035Z * [new tag] ciflow/inductor/151495 -> ciflow/inductor/151495 2025-06-01T21:29:05.2428468Z * [new tag] ciflow/inductor/151497 -> ciflow/inductor/151497 2025-06-01T21:29:05.2428897Z * [new tag] ciflow/inductor/151568 -> ciflow/inductor/151568 2025-06-01T21:29:05.2429334Z * [new tag] ciflow/inductor/151581 -> ciflow/inductor/151581 2025-06-01T21:29:05.2429776Z * [new tag] ciflow/inductor/151585 -> ciflow/inductor/151585 2025-06-01T21:29:05.2430202Z * [new tag] ciflow/inductor/151604 -> ciflow/inductor/151604 2025-06-01T21:29:05.2430637Z * [new tag] ciflow/inductor/151679 -> ciflow/inductor/151679 2025-06-01T21:29:05.2431071Z * [new tag] ciflow/inductor/151711 -> ciflow/inductor/151711 2025-06-01T21:29:05.2431551Z * [new tag] ciflow/inductor/151718 -> ciflow/inductor/151718 2025-06-01T21:29:05.2432027Z * [new tag] ciflow/inductor/151719 -> ciflow/inductor/151719 2025-06-01T21:29:05.2432453Z * [new tag] ciflow/inductor/151774 -> ciflow/inductor/151774 2025-06-01T21:29:05.2432895Z * [new tag] ciflow/inductor/151775 -> ciflow/inductor/151775 2025-06-01T21:29:05.2433322Z * [new tag] ciflow/inductor/151777 -> ciflow/inductor/151777 2025-06-01T21:29:05.2433764Z * [new tag] ciflow/inductor/151778 -> ciflow/inductor/151778 2025-06-01T21:29:05.2434196Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-06-01T21:29:05.2434629Z * [new tag] ciflow/inductor/151854 -> ciflow/inductor/151854 2025-06-01T21:29:05.2435064Z * [new tag] ciflow/inductor/151860 -> ciflow/inductor/151860 2025-06-01T21:29:05.2435663Z * [new tag] ciflow/inductor/151900 -> ciflow/inductor/151900 2025-06-01T21:29:05.2436104Z * [new tag] ciflow/inductor/151919 -> ciflow/inductor/151919 2025-06-01T21:29:05.2436533Z * [new tag] ciflow/inductor/151924 -> ciflow/inductor/151924 2025-06-01T21:29:05.2436980Z * [new tag] ciflow/inductor/151935 -> ciflow/inductor/151935 2025-06-01T21:29:05.2437463Z * [new tag] ciflow/inductor/151941 -> ciflow/inductor/151941 2025-06-01T21:29:05.2437933Z * [new tag] ciflow/inductor/151948 -> ciflow/inductor/151948 2025-06-01T21:29:05.2438367Z * [new tag] ciflow/inductor/151956 -> ciflow/inductor/151956 2025-06-01T21:29:05.2438791Z * [new tag] ciflow/inductor/151958 -> ciflow/inductor/151958 2025-06-01T21:29:05.2439223Z * [new tag] ciflow/inductor/151971 -> ciflow/inductor/151971 2025-06-01T21:29:05.2439665Z * [new tag] ciflow/inductor/152011 -> ciflow/inductor/152011 2025-06-01T21:29:05.2440088Z * [new tag] ciflow/inductor/152137 -> ciflow/inductor/152137 2025-06-01T21:29:05.2440521Z * [new tag] ciflow/inductor/152159 -> ciflow/inductor/152159 2025-06-01T21:29:05.2441070Z * [new tag] ciflow/inductor/152166 -> ciflow/inductor/152166 2025-06-01T21:29:05.2441512Z * [new tag] ciflow/inductor/152193 -> ciflow/inductor/152193 2025-06-01T21:29:05.2441968Z * [new tag] ciflow/inductor/152194 -> ciflow/inductor/152194 2025-06-01T21:29:05.2442395Z * [new tag] ciflow/inductor/152197 -> ciflow/inductor/152197 2025-06-01T21:29:05.2442840Z * [new tag] ciflow/inductor/152198 -> ciflow/inductor/152198 2025-06-01T21:29:05.2443312Z * [new tag] ciflow/inductor/152217 -> ciflow/inductor/152217 2025-06-01T21:29:05.2443800Z * [new tag] ciflow/inductor/152289 -> ciflow/inductor/152289 2025-06-01T21:29:05.2444233Z * [new tag] ciflow/inductor/152311 -> ciflow/inductor/152311 2025-06-01T21:29:05.2444677Z * [new tag] ciflow/inductor/152353 -> ciflow/inductor/152353 2025-06-01T21:29:05.2445117Z * [new tag] ciflow/inductor/152361 -> ciflow/inductor/152361 2025-06-01T21:29:05.2445542Z * [new tag] ciflow/inductor/152392 -> ciflow/inductor/152392 2025-06-01T21:29:05.2445976Z * [new tag] ciflow/inductor/152405 -> ciflow/inductor/152405 2025-06-01T21:29:05.2446400Z * [new tag] ciflow/inductor/152449 -> ciflow/inductor/152449 2025-06-01T21:29:05.2446836Z * [new tag] ciflow/inductor/152450 -> ciflow/inductor/152450 2025-06-01T21:29:05.2447270Z * [new tag] ciflow/inductor/152453 -> ciflow/inductor/152453 2025-06-01T21:29:05.2447705Z * [new tag] ciflow/inductor/152493 -> ciflow/inductor/152493 2025-06-01T21:29:05.2448140Z * [new tag] ciflow/inductor/152495 -> ciflow/inductor/152495 2025-06-01T21:29:05.2752560Z * [new tag] ciflow/inductor/152509 -> ciflow/inductor/152509 2025-06-01T21:29:05.2753043Z * [new tag] ciflow/inductor/152543 -> ciflow/inductor/152543 2025-06-01T21:29:05.2753493Z * [new tag] ciflow/inductor/152586 -> ciflow/inductor/152586 2025-06-01T21:29:05.2753949Z * [new tag] ciflow/inductor/152622 -> ciflow/inductor/152622 2025-06-01T21:29:05.2754385Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-06-01T21:29:05.2754811Z * [new tag] ciflow/inductor/152633 -> ciflow/inductor/152633 2025-06-01T21:29:05.2755246Z * [new tag] ciflow/inductor/152646 -> ciflow/inductor/152646 2025-06-01T21:29:05.2756610Z * [new tag] ciflow/inductor/152729 -> ciflow/inductor/152729 2025-06-01T21:29:05.2757041Z * [new tag] ciflow/inductor/152738 -> ciflow/inductor/152738 2025-06-01T21:29:05.2757490Z * [new tag] ciflow/inductor/152739 -> ciflow/inductor/152739 2025-06-01T21:29:05.2757925Z * [new tag] ciflow/inductor/152771 -> ciflow/inductor/152771 2025-06-01T21:29:05.2758364Z * [new tag] ciflow/inductor/152775 -> ciflow/inductor/152775 2025-06-01T21:29:05.2758803Z * [new tag] ciflow/inductor/152776 -> ciflow/inductor/152776 2025-06-01T21:29:05.2759229Z * [new tag] ciflow/inductor/152782 -> ciflow/inductor/152782 2025-06-01T21:29:05.2759673Z * [new tag] ciflow/inductor/152806 -> ciflow/inductor/152806 2025-06-01T21:29:05.2760111Z * [new tag] ciflow/inductor/152894 -> ciflow/inductor/152894 2025-06-01T21:29:05.2760551Z * [new tag] ciflow/inductor/152975 -> ciflow/inductor/152975 2025-06-01T21:29:05.2761002Z * [new tag] ciflow/inductor/152991 -> ciflow/inductor/152991 2025-06-01T21:29:05.2761427Z * [new tag] ciflow/inductor/153004 -> ciflow/inductor/153004 2025-06-01T21:29:05.2761979Z * [new tag] ciflow/inductor/153011 -> ciflow/inductor/153011 2025-06-01T21:29:05.2762411Z * [new tag] ciflow/inductor/153117 -> ciflow/inductor/153117 2025-06-01T21:29:05.2771850Z * [new tag] ciflow/inductor/153131 -> ciflow/inductor/153131 2025-06-01T21:29:05.2772318Z * [new tag] ciflow/inductor/153150 -> ciflow/inductor/153150 2025-06-01T21:29:05.2772782Z * [new tag] ciflow/inductor/153165 -> ciflow/inductor/153165 2025-06-01T21:29:05.2773222Z * [new tag] ciflow/inductor/153173 -> ciflow/inductor/153173 2025-06-01T21:29:05.2773690Z * [new tag] ciflow/inductor/153201 -> ciflow/inductor/153201 2025-06-01T21:29:05.2774134Z * [new tag] ciflow/inductor/153271 -> ciflow/inductor/153271 2025-06-01T21:29:05.2774568Z * [new tag] ciflow/inductor/153272 -> ciflow/inductor/153272 2025-06-01T21:29:05.2775017Z * [new tag] ciflow/inductor/153278 -> ciflow/inductor/153278 2025-06-01T21:29:05.2775465Z * [new tag] ciflow/inductor/153290 -> ciflow/inductor/153290 2025-06-01T21:29:05.2775913Z * [new tag] ciflow/inductor/153317 -> ciflow/inductor/153317 2025-06-01T21:29:05.2776420Z * [new tag] ciflow/inductor/153384 -> ciflow/inductor/153384 2025-06-01T21:29:05.2776905Z * [new tag] ciflow/inductor/153419 -> ciflow/inductor/153419 2025-06-01T21:29:05.2777357Z * [new tag] ciflow/inductor/153430 -> ciflow/inductor/153430 2025-06-01T21:29:05.2777793Z * [new tag] ciflow/inductor/153434 -> ciflow/inductor/153434 2025-06-01T21:29:05.2778235Z * [new tag] ciflow/inductor/153436 -> ciflow/inductor/153436 2025-06-01T21:29:05.2778666Z * [new tag] ciflow/inductor/153473 -> ciflow/inductor/153473 2025-06-01T21:29:05.2779109Z * [new tag] ciflow/inductor/153481 -> ciflow/inductor/153481 2025-06-01T21:29:05.2779557Z * [new tag] ciflow/inductor/153499 -> ciflow/inductor/153499 2025-06-01T21:29:05.2779986Z * [new tag] ciflow/inductor/153501 -> ciflow/inductor/153501 2025-06-01T21:29:05.2780425Z * [new tag] ciflow/inductor/153548 -> ciflow/inductor/153548 2025-06-01T21:29:05.2780863Z * [new tag] ciflow/inductor/153553 -> ciflow/inductor/153553 2025-06-01T21:29:05.2781305Z * [new tag] ciflow/inductor/153569 -> ciflow/inductor/153569 2025-06-01T21:29:05.2781936Z * [new tag] ciflow/inductor/153596 -> ciflow/inductor/153596 2025-06-01T21:29:05.2782412Z * [new tag] ciflow/inductor/153623 -> ciflow/inductor/153623 2025-06-01T21:29:05.2782893Z * [new tag] ciflow/inductor/153628 -> ciflow/inductor/153628 2025-06-01T21:29:05.2783326Z * [new tag] ciflow/inductor/153654 -> ciflow/inductor/153654 2025-06-01T21:29:05.2783779Z * [new tag] ciflow/inductor/153662 -> ciflow/inductor/153662 2025-06-01T21:29:05.2784227Z * [new tag] ciflow/inductor/153663 -> ciflow/inductor/153663 2025-06-01T21:29:05.3108430Z * [new tag] ciflow/inductor/153672 -> ciflow/inductor/153672 2025-06-01T21:29:05.3108919Z * [new tag] ciflow/inductor/153682 -> ciflow/inductor/153682 2025-06-01T21:29:05.3109360Z * [new tag] ciflow/inductor/153723 -> ciflow/inductor/153723 2025-06-01T21:29:05.3109821Z * [new tag] ciflow/inductor/153730 -> ciflow/inductor/153730 2025-06-01T21:29:05.3110261Z * [new tag] ciflow/inductor/153734 -> ciflow/inductor/153734 2025-06-01T21:29:05.3110692Z * [new tag] ciflow/inductor/153739 -> ciflow/inductor/153739 2025-06-01T21:29:05.3111128Z * [new tag] ciflow/inductor/153743 -> ciflow/inductor/153743 2025-06-01T21:29:05.3112365Z * [new tag] ciflow/inductor/153748 -> ciflow/inductor/153748 2025-06-01T21:29:05.3112892Z * [new tag] ciflow/inductor/153751 -> ciflow/inductor/153751 2025-06-01T21:29:05.3113379Z * [new tag] ciflow/inductor/153752 -> ciflow/inductor/153752 2025-06-01T21:29:05.3113811Z * [new tag] ciflow/inductor/153766 -> ciflow/inductor/153766 2025-06-01T21:29:05.3114252Z * [new tag] ciflow/inductor/153774 -> ciflow/inductor/153774 2025-06-01T21:29:05.3114694Z * [new tag] ciflow/inductor/153780 -> ciflow/inductor/153780 2025-06-01T21:29:05.3115129Z * [new tag] ciflow/inductor/153802 -> ciflow/inductor/153802 2025-06-01T21:29:05.3115566Z * [new tag] ciflow/inductor/153834 -> ciflow/inductor/153834 2025-06-01T21:29:05.3115990Z * [new tag] ciflow/inductor/153841 -> ciflow/inductor/153841 2025-06-01T21:29:05.3116429Z * [new tag] ciflow/inductor/153846 -> ciflow/inductor/153846 2025-06-01T21:29:05.3116854Z * [new tag] ciflow/inductor/153886 -> ciflow/inductor/153886 2025-06-01T21:29:05.3117300Z * [new tag] ciflow/inductor/153953 -> ciflow/inductor/153953 2025-06-01T21:29:05.3117728Z * [new tag] ciflow/inductor/153966 -> ciflow/inductor/153966 2025-06-01T21:29:05.3118167Z * [new tag] ciflow/inductor/153969 -> ciflow/inductor/153969 2025-06-01T21:29:05.3118609Z * [new tag] ciflow/inductor/154000 -> ciflow/inductor/154000 2025-06-01T21:29:05.3119040Z * [new tag] ciflow/inductor/154003 -> ciflow/inductor/154003 2025-06-01T21:29:05.3119478Z * [new tag] ciflow/inductor/154007 -> ciflow/inductor/154007 2025-06-01T21:29:05.3119909Z * [new tag] ciflow/inductor/154013 -> ciflow/inductor/154013 2025-06-01T21:29:05.3120353Z * [new tag] ciflow/inductor/154032 -> ciflow/inductor/154032 2025-06-01T21:29:05.3120792Z * [new tag] ciflow/inductor/154047 -> ciflow/inductor/154047 2025-06-01T21:29:05.3121223Z * [new tag] ciflow/inductor/154056 -> ciflow/inductor/154056 2025-06-01T21:29:05.3121678Z * [new tag] ciflow/inductor/154058 -> ciflow/inductor/154058 2025-06-01T21:29:05.3122111Z * [new tag] ciflow/inductor/154063 -> ciflow/inductor/154063 2025-06-01T21:29:05.3122701Z * [new tag] ciflow/inductor/154064 -> ciflow/inductor/154064 2025-06-01T21:29:05.3123143Z * [new tag] ciflow/inductor/154065 -> ciflow/inductor/154065 2025-06-01T21:29:05.3123586Z * [new tag] ciflow/inductor/154066 -> ciflow/inductor/154066 2025-06-01T21:29:05.3124032Z * [new tag] ciflow/inductor/154072 -> ciflow/inductor/154072 2025-06-01T21:29:05.3124474Z * [new tag] ciflow/inductor/154078 -> ciflow/inductor/154078 2025-06-01T21:29:05.3124922Z * [new tag] ciflow/inductor/154081 -> ciflow/inductor/154081 2025-06-01T21:29:05.3125361Z * [new tag] ciflow/inductor/154100 -> ciflow/inductor/154100 2025-06-01T21:29:05.3125803Z * [new tag] ciflow/inductor/154129 -> ciflow/inductor/154129 2025-06-01T21:29:05.3126244Z * [new tag] ciflow/inductor/154134 -> ciflow/inductor/154134 2025-06-01T21:29:05.3126678Z * [new tag] ciflow/inductor/154142 -> ciflow/inductor/154142 2025-06-01T21:29:05.3127111Z * [new tag] ciflow/inductor/154149 -> ciflow/inductor/154149 2025-06-01T21:29:05.3127536Z * [new tag] ciflow/inductor/154165 -> ciflow/inductor/154165 2025-06-01T21:29:05.3127969Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-06-01T21:29:05.3128505Z * [new tag] ciflow/inductor/154194 -> ciflow/inductor/154194 2025-06-01T21:29:05.3128940Z * [new tag] ciflow/inductor/154199 -> ciflow/inductor/154199 2025-06-01T21:29:05.3129387Z * [new tag] ciflow/inductor/154263 -> ciflow/inductor/154263 2025-06-01T21:29:05.3129831Z * [new tag] ciflow/inductor/154273 -> ciflow/inductor/154273 2025-06-01T21:29:05.3130276Z * [new tag] ciflow/inductor/154283 -> ciflow/inductor/154283 2025-06-01T21:29:05.3130711Z * [new tag] ciflow/inductor/154287 -> ciflow/inductor/154287 2025-06-01T21:29:05.3447113Z * [new tag] ciflow/inductor/154289 -> ciflow/inductor/154289 2025-06-01T21:29:05.3447568Z * [new tag] ciflow/inductor/154343 -> ciflow/inductor/154343 2025-06-01T21:29:05.3448009Z * [new tag] ciflow/inductor/154348 -> ciflow/inductor/154348 2025-06-01T21:29:05.3448465Z * [new tag] ciflow/inductor/154350 -> ciflow/inductor/154350 2025-06-01T21:29:05.3448886Z * [new tag] ciflow/inductor/154366 -> ciflow/inductor/154366 2025-06-01T21:29:05.3449324Z * [new tag] ciflow/inductor/154388 -> ciflow/inductor/154388 2025-06-01T21:29:05.3449765Z * [new tag] ciflow/inductor/154389 -> ciflow/inductor/154389 2025-06-01T21:29:05.3450194Z * [new tag] ciflow/inductor/154390 -> ciflow/inductor/154390 2025-06-01T21:29:05.3450643Z * [new tag] ciflow/inductor/154415 -> ciflow/inductor/154415 2025-06-01T21:29:05.3451075Z * [new tag] ciflow/inductor/154434 -> ciflow/inductor/154434 2025-06-01T21:29:05.3451521Z * [new tag] ciflow/inductor/154464 -> ciflow/inductor/154464 2025-06-01T21:29:05.3451962Z * [new tag] ciflow/inductor/154472 -> ciflow/inductor/154472 2025-06-01T21:29:05.3452456Z * [new tag] ciflow/inductor/154475 -> ciflow/inductor/154475 2025-06-01T21:29:05.3452889Z * [new tag] ciflow/inductor/154482 -> ciflow/inductor/154482 2025-06-01T21:29:05.3453367Z * [new tag] ciflow/inductor/154492 -> ciflow/inductor/154492 2025-06-01T21:29:05.3453795Z * [new tag] ciflow/inductor/154497 -> ciflow/inductor/154497 2025-06-01T21:29:05.3454232Z * [new tag] ciflow/inductor/154510 -> ciflow/inductor/154510 2025-06-01T21:29:05.3454656Z * [new tag] ciflow/inductor/154514 -> ciflow/inductor/154514 2025-06-01T21:29:05.3455275Z * [new tag] ciflow/inductor/154523 -> ciflow/inductor/154523 2025-06-01T21:29:05.3455708Z * [new tag] ciflow/inductor/154535 -> ciflow/inductor/154535 2025-06-01T21:29:05.3456144Z * [new tag] ciflow/inductor/154539 -> ciflow/inductor/154539 2025-06-01T21:29:05.3456595Z * [new tag] ciflow/inductor/154543 -> ciflow/inductor/154543 2025-06-01T21:29:05.3457029Z * [new tag] ciflow/inductor/154544 -> ciflow/inductor/154544 2025-06-01T21:29:05.3457480Z * [new tag] ciflow/inductor/154551 -> ciflow/inductor/154551 2025-06-01T21:29:05.3457920Z * [new tag] ciflow/inductor/154555 -> ciflow/inductor/154555 2025-06-01T21:29:05.3458365Z * [new tag] ciflow/inductor/154564 -> ciflow/inductor/154564 2025-06-01T21:29:05.3458859Z * [new tag] ciflow/inductor/154570 -> ciflow/inductor/154570 2025-06-01T21:29:05.3459343Z * [new tag] ciflow/inductor/154575 -> ciflow/inductor/154575 2025-06-01T21:29:05.3459781Z * [new tag] ciflow/inductor/154586 -> ciflow/inductor/154586 2025-06-01T21:29:05.3460216Z * [new tag] ciflow/inductor/154630 -> ciflow/inductor/154630 2025-06-01T21:29:05.3460780Z * [new tag] ciflow/inductor/154640 -> ciflow/inductor/154640 2025-06-01T21:29:05.3461229Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-06-01T21:29:05.3461663Z * [new tag] ciflow/inductor/154654 -> ciflow/inductor/154654 2025-06-01T21:29:05.3462106Z * [new tag] ciflow/inductor/154656 -> ciflow/inductor/154656 2025-06-01T21:29:05.3462547Z * [new tag] ciflow/inductor/154667 -> ciflow/inductor/154667 2025-06-01T21:29:05.3462995Z * [new tag] ciflow/inductor/154673 -> ciflow/inductor/154673 2025-06-01T21:29:05.3463437Z * [new tag] ciflow/inductor/154679 -> ciflow/inductor/154679 2025-06-01T21:29:05.3463876Z * [new tag] ciflow/inductor/154688 -> ciflow/inductor/154688 2025-06-01T21:29:05.3464318Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-06-01T21:29:05.3464823Z * [new tag] ciflow/inductor/154695 -> ciflow/inductor/154695 2025-06-01T21:29:05.3465286Z * [new tag] ciflow/inductor/154698 -> ciflow/inductor/154698 2025-06-01T21:29:05.3465710Z * [new tag] ciflow/inductor/154699 -> ciflow/inductor/154699 2025-06-01T21:29:05.3466150Z * [new tag] ciflow/inductor/154704 -> ciflow/inductor/154704 2025-06-01T21:29:05.3466586Z * [new tag] ciflow/inductor/154737 -> ciflow/inductor/154737 2025-06-01T21:29:05.3467013Z * [new tag] ciflow/inductor/154740 -> ciflow/inductor/154740 2025-06-01T21:29:05.3467529Z * [new tag] ciflow/inductor/154752 -> ciflow/inductor/154752 2025-06-01T21:29:05.3467960Z * [new tag] ciflow/inductor/154753 -> ciflow/inductor/154753 2025-06-01T21:29:05.3468402Z * [new tag] ciflow/inductor/154754 -> ciflow/inductor/154754 2025-06-01T21:29:05.3468852Z * [new tag] ciflow/inductor/154757 -> ciflow/inductor/154757 2025-06-01T21:29:05.3469293Z * [new tag] ciflow/inductor/154761 -> ciflow/inductor/154761 2025-06-01T21:29:05.3784071Z * [new tag] ciflow/inductor/154764 -> ciflow/inductor/154764 2025-06-01T21:29:05.3784579Z * [new tag] ciflow/inductor/154766 -> ciflow/inductor/154766 2025-06-01T21:29:05.3785017Z * [new tag] ciflow/inductor/154768 -> ciflow/inductor/154768 2025-06-01T21:29:05.3785455Z * [new tag] ciflow/inductor/154769 -> ciflow/inductor/154769 2025-06-01T21:29:05.3786104Z * [new tag] ciflow/inductor/154771 -> ciflow/inductor/154771 2025-06-01T21:29:05.3786549Z * [new tag] ciflow/inductor/154772 -> ciflow/inductor/154772 2025-06-01T21:29:05.3786993Z * [new tag] ciflow/inductor/154774 -> ciflow/inductor/154774 2025-06-01T21:29:05.3787473Z * [new tag] ciflow/inductor/154775 -> ciflow/inductor/154775 2025-06-01T21:29:05.3787908Z * [new tag] ciflow/inductor/154776 -> ciflow/inductor/154776 2025-06-01T21:29:05.3788336Z * [new tag] ciflow/inductor/154780 -> ciflow/inductor/154780 2025-06-01T21:29:05.3788769Z * [new tag] ciflow/inductor/154782 -> ciflow/inductor/154782 2025-06-01T21:29:05.3789194Z * [new tag] ciflow/inductor/154783 -> ciflow/inductor/154783 2025-06-01T21:29:05.3789632Z * [new tag] ciflow/inductor/154793 -> ciflow/inductor/154793 2025-06-01T21:29:05.3790071Z * [new tag] ciflow/inductor/154794 -> ciflow/inductor/154794 2025-06-01T21:29:05.3790500Z * [new tag] ciflow/inductor/154804 -> ciflow/inductor/154804 2025-06-01T21:29:05.3790932Z * [new tag] ciflow/inductor/154805 -> ciflow/inductor/154805 2025-06-01T21:29:05.3791482Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-06-01T21:29:05.3791937Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-06-01T21:29:05.3792386Z * [new tag] ciflow/inductor/88106 -> ciflow/inductor/88106 2025-06-01T21:29:05.3792822Z * [new tag] ciflow/inductor/88196 -> ciflow/inductor/88196 2025-06-01T21:29:05.3793253Z * [new tag] ciflow/inductor/88998 -> ciflow/inductor/88998 2025-06-01T21:29:05.3793698Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-06-01T21:29:05.3794182Z * [new tag] ciflow/linux-aarch64/125888 -> ciflow/linux-aarch64/125888 2025-06-01T21:29:05.3794673Z * [new tag] ciflow/linux-aarch64/126050 -> ciflow/linux-aarch64/126050 2025-06-01T21:29:05.3795152Z * [new tag] ciflow/linux-aarch64/126054 -> ciflow/linux-aarch64/126054 2025-06-01T21:29:05.3795641Z * [new tag] ciflow/linux-aarch64/133297 -> ciflow/linux-aarch64/133297 2025-06-01T21:29:05.3796117Z * [new tag] ciflow/linux-aarch64/133315 -> ciflow/linux-aarch64/133315 2025-06-01T21:29:05.3796607Z * [new tag] ciflow/linux-aarch64/133392 -> ciflow/linux-aarch64/133392 2025-06-01T21:29:05.3797077Z * [new tag] ciflow/linux-aarch64/133419 -> ciflow/linux-aarch64/133419 2025-06-01T21:29:05.3797554Z * [new tag] ciflow/linux-aarch64/133423 -> ciflow/linux-aarch64/133423 2025-06-01T21:29:05.3798030Z * [new tag] ciflow/linux-aarch64/133667 -> ciflow/linux-aarch64/133667 2025-06-01T21:29:05.3798507Z * [new tag] ciflow/linux-aarch64/133753 -> ciflow/linux-aarch64/133753 2025-06-01T21:29:05.3798985Z * [new tag] ciflow/linux-aarch64/135792 -> ciflow/linux-aarch64/135792 2025-06-01T21:29:05.3799456Z * [new tag] ciflow/linux-aarch64/136355 -> ciflow/linux-aarch64/136355 2025-06-01T21:29:05.3799936Z * [new tag] ciflow/linux-aarch64/137568 -> ciflow/linux-aarch64/137568 2025-06-01T21:29:05.3800422Z * [new tag] ciflow/linux-aarch64/138388 -> ciflow/linux-aarch64/138388 2025-06-01T21:29:05.3800893Z * [new tag] ciflow/linux-aarch64/144774 -> ciflow/linux-aarch64/144774 2025-06-01T21:29:05.3801383Z * [new tag] ciflow/linux-aarch64/145260 -> ciflow/linux-aarch64/145260 2025-06-01T21:29:05.3801855Z * [new tag] ciflow/linux-aarch64/147073 -> ciflow/linux-aarch64/147073 2025-06-01T21:29:05.3802458Z * [new tag] ciflow/linux-aarch64/147359 -> ciflow/linux-aarch64/147359 2025-06-01T21:29:05.3802942Z * [new tag] ciflow/linux-aarch64/147763 -> ciflow/linux-aarch64/147763 2025-06-01T21:29:05.3803420Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-06-01T21:29:05.3803908Z * [new tag] ciflow/linux-aarch64/148173 -> ciflow/linux-aarch64/148173 2025-06-01T21:29:05.3804383Z * [new tag] ciflow/linux-aarch64/148424 -> ciflow/linux-aarch64/148424 2025-06-01T21:29:05.3804867Z * [new tag] ciflow/linux-aarch64/150095 -> ciflow/linux-aarch64/150095 2025-06-01T21:29:05.3805346Z * [new tag] ciflow/linux-aarch64/151896 -> ciflow/linux-aarch64/151896 2025-06-01T21:29:05.3805817Z * [new tag] ciflow/linux-aarch64/152001 -> ciflow/linux-aarch64/152001 2025-06-01T21:29:05.4143184Z * [new tag] ciflow/linux-aarch64/152361 -> ciflow/linux-aarch64/152361 2025-06-01T21:29:05.4143705Z * [new tag] ciflow/linux-aarch64/153940 -> ciflow/linux-aarch64/153940 2025-06-01T21:29:05.4144161Z * [new tag] ciflow/mps/102148 -> ciflow/mps/102148 2025-06-01T21:29:05.4144573Z * [new tag] ciflow/mps/119496 -> ciflow/mps/119496 2025-06-01T21:29:05.4144964Z * [new tag] ciflow/mps/120076 -> ciflow/mps/120076 2025-06-01T21:29:05.4145527Z * [new tag] ciflow/mps/133423 -> ciflow/mps/133423 2025-06-01T21:29:05.4145949Z * [new tag] ciflow/mps/133667 -> ciflow/mps/133667 2025-06-01T21:29:05.4146359Z * [new tag] ciflow/mps/145955 -> ciflow/mps/145955 2025-06-01T21:29:05.4146759Z * [new tag] ciflow/mps/146436 -> ciflow/mps/146436 2025-06-01T21:29:05.4147153Z * [new tag] ciflow/mps/147583 -> ciflow/mps/147583 2025-06-01T21:29:05.4147600Z * [new tag] ciflow/mps/148408 -> ciflow/mps/148408 2025-06-01T21:29:05.4148007Z * [new tag] ciflow/mps/148415 -> ciflow/mps/148415 2025-06-01T21:29:05.4148408Z * [new tag] ciflow/mps/149173 -> ciflow/mps/149173 2025-06-01T21:29:05.4148796Z * [new tag] ciflow/mps/149958 -> ciflow/mps/149958 2025-06-01T21:29:05.4149193Z * [new tag] ciflow/mps/150569 -> ciflow/mps/150569 2025-06-01T21:29:05.4149592Z * [new tag] ciflow/mps/150721 -> ciflow/mps/150721 2025-06-01T21:29:05.4149977Z * [new tag] ciflow/mps/150964 -> ciflow/mps/150964 2025-06-01T21:29:05.4150365Z * [new tag] ciflow/mps/151177 -> ciflow/mps/151177 2025-06-01T21:29:05.4150751Z * [new tag] ciflow/mps/151292 -> ciflow/mps/151292 2025-06-01T21:29:05.4151144Z * [new tag] ciflow/mps/151439 -> ciflow/mps/151439 2025-06-01T21:29:05.4151545Z * [new tag] ciflow/mps/151916 -> ciflow/mps/151916 2025-06-01T21:29:05.4151936Z * [new tag] ciflow/mps/152094 -> ciflow/mps/152094 2025-06-01T21:29:05.4152325Z * [new tag] ciflow/mps/152742 -> ciflow/mps/152742 2025-06-01T21:29:05.4152710Z * [new tag] ciflow/mps/152843 -> ciflow/mps/152843 2025-06-01T21:29:05.4153105Z * [new tag] ciflow/mps/153583 -> ciflow/mps/153583 2025-06-01T21:29:05.4153489Z * [new tag] ciflow/mps/153954 -> ciflow/mps/153954 2025-06-01T21:29:05.4153885Z * [new tag] ciflow/mps/153995 -> ciflow/mps/153995 2025-06-01T21:29:05.4154281Z * [new tag] ciflow/mps/154145 -> ciflow/mps/154145 2025-06-01T21:29:05.4154664Z * [new tag] ciflow/mps/154287 -> ciflow/mps/154287 2025-06-01T21:29:05.4155179Z * [new tag] ciflow/mps/154465 -> ciflow/mps/154465 2025-06-01T21:29:05.4155571Z * [new tag] ciflow/mps/154696 -> ciflow/mps/154696 2025-06-01T21:29:05.4156000Z * [new tag] ciflow/nightly/149192 -> ciflow/nightly/149192 2025-06-01T21:29:05.4156430Z * [new tag] ciflow/nightly/151567 -> ciflow/nightly/151567 2025-06-01T21:29:05.4156861Z * [new tag] ciflow/nightly/151581 -> ciflow/nightly/151581 2025-06-01T21:29:05.4157319Z * [new tag] ciflow/op-benchmark/151581 -> ciflow/op-benchmark/151581 2025-06-01T21:29:05.4157787Z * [new tag] ciflow/op-benchmark/151585 -> ciflow/op-benchmark/151585 2025-06-01T21:29:05.4158260Z * [new tag] ciflow/op-benchmark/154410 -> ciflow/op-benchmark/154410 2025-06-01T21:29:05.4158793Z * [new tag] ciflow/periodic-rocm-mi300/150694 -> ciflow/periodic-rocm-mi300/150694 2025-06-01T21:29:05.4159394Z * [new tag] ciflow/periodic-rocm-mi300/151581 -> ciflow/periodic-rocm-mi300/151581 2025-06-01T21:29:05.4159978Z * [new tag] ciflow/periodic-rocm-mi300/153545 -> ciflow/periodic-rocm-mi300/153545 2025-06-01T21:29:05.4160777Z * [new tag] ciflow/periodic/0203f89cc1937e6e97f4533b1a45bdc6c233b3fc -> ciflow/periodic/0203f89cc1937e6e97f4533b1a45bdc6c233b3fc 2025-06-01T21:29:05.4161914Z * [new tag] ciflow/periodic/02cecd101871cdeabc84c031c0d6c465fdd26bf1 -> ciflow/periodic/02cecd101871cdeabc84c031c0d6c465fdd26bf1 2025-06-01T21:29:05.4162946Z * [new tag] ciflow/periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 -> ciflow/periodic/053ca7439a0ec3c09a257bbcb31896a62d889f33 2025-06-01T21:29:05.4163682Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-06-01T21:29:05.4164141Z * [new tag] ciflow/periodic/123020 -> ciflow/periodic/123020 2025-06-01T21:29:05.4164585Z * [new tag] ciflow/periodic/141309 -> ciflow/periodic/141309 2025-06-01T21:29:05.4165032Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-06-01T21:29:05.4165480Z * [new tag] ciflow/periodic/148760 -> ciflow/periodic/148760 2025-06-01T21:29:05.4935819Z * [new tag] ciflow/periodic/149192 -> ciflow/periodic/149192 2025-06-01T21:29:05.4936348Z * [new tag] ciflow/periodic/150411 -> ciflow/periodic/150411 2025-06-01T21:29:05.4936795Z * [new tag] ciflow/periodic/150422 -> ciflow/periodic/150422 2025-06-01T21:29:05.4937237Z * [new tag] ciflow/periodic/150434 -> ciflow/periodic/150434 2025-06-01T21:29:05.4937675Z * [new tag] ciflow/periodic/151292 -> ciflow/periodic/151292 2025-06-01T21:29:05.4938103Z * [new tag] ciflow/periodic/151581 -> ciflow/periodic/151581 2025-06-01T21:29:05.4938563Z * [new tag] ciflow/periodic/151585 -> ciflow/periodic/151585 2025-06-01T21:29:05.4938990Z * [new tag] ciflow/periodic/152281 -> ciflow/periodic/152281 2025-06-01T21:29:05.4939427Z * [new tag] ciflow/periodic/154169 -> ciflow/periodic/154169 2025-06-01T21:29:05.4939918Z * [new tag] ciflow/periodic/154293 -> ciflow/periodic/154293 2025-06-01T21:29:05.4940411Z * [new tag] ciflow/periodic/154469 -> ciflow/periodic/154469 2025-06-01T21:29:05.4940849Z * [new tag] ciflow/periodic/154585 -> ciflow/periodic/154585 2025-06-01T21:29:05.4941590Z * [new tag] ciflow/periodic/1f0d764b65d71ff9dd8fb9093063ebfe00ac2d7e -> ciflow/periodic/1f0d764b65d71ff9dd8fb9093063ebfe00ac2d7e 2025-06-01T21:29:05.4942336Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-06-01T21:29:05.4942795Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-06-01T21:29:05.4943433Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-06-01T21:29:05.4943876Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-06-01T21:29:05.4944605Z * [new tag] ciflow/periodic/41663739085c57edc4a352c55ed6b23b8e9eb91d -> ciflow/periodic/41663739085c57edc4a352c55ed6b23b8e9eb91d 2025-06-01T21:29:05.4945672Z * [new tag] ciflow/periodic/5dd746b4b58d2e4760f46837b3ecae0090904456 -> ciflow/periodic/5dd746b4b58d2e4760f46837b3ecae0090904456 2025-06-01T21:29:05.4946743Z * [new tag] ciflow/periodic/5f4c8e4c896f9a1d89e1bf9b3bd92b3e7db5c3b9 -> ciflow/periodic/5f4c8e4c896f9a1d89e1bf9b3bd92b3e7db5c3b9 2025-06-01T21:29:05.4947826Z * [new tag] ciflow/periodic/7c63ddd817870bed34d74f921fb384105dfe6677 -> ciflow/periodic/7c63ddd817870bed34d74f921fb384105dfe6677 2025-06-01T21:29:05.4948590Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-06-01T21:29:05.4949352Z * [new tag] ciflow/periodic/c13eeaa718c985782bd72bf47886430f6203a768 -> ciflow/periodic/c13eeaa718c985782bd72bf47886430f6203a768 2025-06-01T21:29:05.4950117Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-06-01T21:29:05.4950659Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-06-01T21:29:05.4951303Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-06-01T21:29:05.4952177Z * [new tag] ciflow/periodic/e2b1c063194b66b40b52d0a9db59b55a5b7dfabd -> ciflow/periodic/e2b1c063194b66b40b52d0a9db59b55a5b7dfabd 2025-06-01T21:29:05.4953214Z * [new tag] ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc -> ciflow/periodic/ed0dea3e24a2ba4d01043c4cfd27e90655692adc 2025-06-01T21:29:05.4953977Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-06-01T21:29:05.4954528Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-06-01T21:29:05.4955043Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-06-01T21:29:05.4955504Z * [new tag] ciflow/pull/152484 -> ciflow/pull/152484 2025-06-01T21:29:05.4955942Z * [new tag] ciflow/rocm-mi300/125888 -> ciflow/rocm-mi300/125888 2025-06-01T21:29:05.4956377Z * [new tag] ciflow/rocm-mi300/139975 -> ciflow/rocm-mi300/139975 2025-06-01T21:29:05.4956830Z * [new tag] ciflow/rocm-mi300/151465 -> ciflow/rocm-mi300/151465 2025-06-01T21:29:05.4957260Z * [new tag] ciflow/rocm-mi300/151581 -> ciflow/rocm-mi300/151581 2025-06-01T21:29:05.4957744Z * [new tag] ciflow/rocm-mi300/153545 -> ciflow/rocm-mi300/153545 2025-06-01T21:29:05.4958230Z * [new tag] ciflow/rocm-mi300/154525 -> ciflow/rocm-mi300/154525 2025-06-01T21:29:05.4958667Z * [new tag] ciflow/rocm-mi300/154680 -> ciflow/rocm-mi300/154680 2025-06-01T21:29:05.4959093Z * [new tag] ciflow/rocm/124424 -> ciflow/rocm/124424 2025-06-01T21:29:05.4959493Z * [new tag] ciflow/rocm/125888 -> ciflow/rocm/125888 2025-06-01T21:29:05.4959899Z * [new tag] ciflow/rocm/139975 -> ciflow/rocm/139975 2025-06-01T21:29:05.4960293Z * [new tag] ciflow/rocm/141309 -> ciflow/rocm/141309 2025-06-01T21:29:05.5291956Z * [new tag] ciflow/rocm/145685 -> ciflow/rocm/145685 2025-06-01T21:29:05.5292437Z * [new tag] ciflow/rocm/146903 -> ciflow/rocm/146903 2025-06-01T21:29:05.5292835Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-06-01T21:29:05.5293240Z * [new tag] ciflow/rocm/148672 -> ciflow/rocm/148672 2025-06-01T21:29:05.5293861Z * [new tag] ciflow/rocm/149039 -> ciflow/rocm/149039 2025-06-01T21:29:05.5294259Z * [new tag] ciflow/rocm/149466 -> ciflow/rocm/149466 2025-06-01T21:29:05.5294672Z * [new tag] ciflow/rocm/149506 -> ciflow/rocm/149506 2025-06-01T21:29:05.5295066Z * [new tag] ciflow/rocm/151305 -> ciflow/rocm/151305 2025-06-01T21:29:05.5295473Z * [new tag] ciflow/rocm/151439 -> ciflow/rocm/151439 2025-06-01T21:29:05.5295871Z * [new tag] ciflow/rocm/151465 -> ciflow/rocm/151465 2025-06-01T21:29:05.5296275Z * [new tag] ciflow/rocm/151581 -> ciflow/rocm/151581 2025-06-01T21:29:05.5296674Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-06-01T21:29:05.5297061Z * [new tag] ciflow/rocm/153117 -> ciflow/rocm/153117 2025-06-01T21:29:05.5297461Z * [new tag] ciflow/rocm/153287 -> ciflow/rocm/153287 2025-06-01T21:29:05.5297853Z * [new tag] ciflow/rocm/153455 -> ciflow/rocm/153455 2025-06-01T21:29:05.5298259Z * [new tag] ciflow/rocm/153545 -> ciflow/rocm/153545 2025-06-01T21:29:05.5298653Z * [new tag] ciflow/rocm/153548 -> ciflow/rocm/153548 2025-06-01T21:29:05.5299171Z * [new tag] ciflow/rocm/153596 -> ciflow/rocm/153596 2025-06-01T21:29:05.5299577Z * [new tag] ciflow/rocm/153666 -> ciflow/rocm/153666 2025-06-01T21:29:05.5299969Z * [new tag] ciflow/rocm/154525 -> ciflow/rocm/154525 2025-06-01T21:29:05.5300371Z * [new tag] ciflow/s390/142346 -> ciflow/s390/142346 2025-06-01T21:29:05.5300774Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-06-01T21:29:05.5301164Z * [new tag] ciflow/s390/150116 -> ciflow/s390/150116 2025-06-01T21:29:05.5301560Z * [new tag] ciflow/s390/151581 -> ciflow/s390/151581 2025-06-01T21:29:05.5301943Z * [new tag] ciflow/s390/151585 -> ciflow/s390/151585 2025-06-01T21:29:05.5302335Z * [new tag] ciflow/s390/152372 -> ciflow/s390/152372 2025-06-01T21:29:05.5302730Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-06-01T21:29:05.5303142Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-06-01T21:29:05.5303895Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-06-01T21:29:05.5304630Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-06-01T21:29:05.5305037Z * [new tag] ciflow/slow/139975 -> ciflow/slow/139975 2025-06-01T21:29:05.5305438Z * [new tag] ciflow/slow/149192 -> ciflow/slow/149192 2025-06-01T21:29:05.5305846Z * [new tag] ciflow/slow/151581 -> ciflow/slow/151581 2025-06-01T21:29:05.5306242Z * [new tag] ciflow/slow/151585 -> ciflow/slow/151585 2025-06-01T21:29:05.5306632Z * [new tag] ciflow/slow/154347 -> ciflow/slow/154347 2025-06-01T21:29:05.5307034Z * [new tag] ciflow/slow/154469 -> ciflow/slow/154469 2025-06-01T21:29:05.5307521Z * [new tag] ciflow/slow/154783 -> ciflow/slow/154783 2025-06-01T21:29:05.5307929Z * [new tag] ciflow/slow/154809 -> ciflow/slow/154809 2025-06-01T21:29:05.5308322Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-06-01T21:29:05.5308741Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-06-01T21:29:05.5309165Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-06-01T21:29:05.5309685Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-06-01T21:29:05.5310097Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-06-01T21:29:05.5310781Z * [new tag] ciflow/slow/4863e5c843722eb2a34fb0ca1d518a33431a38c0 -> ciflow/slow/4863e5c843722eb2a34fb0ca1d518a33431a38c0 2025-06-01T21:29:05.5311468Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-06-01T21:29:05.5311888Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-06-01T21:29:05.5312286Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-06-01T21:29:05.5312989Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-06-01T21:29:05.5313685Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-06-01T21:29:05.5658590Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-06-01T21:29:05.5659064Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-06-01T21:29:05.5659475Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-06-01T21:29:05.5659880Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-06-01T21:29:05.5660864Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-06-01T21:29:05.5661708Z * [new tag] ciflow/torchao/149192 -> ciflow/torchao/149192 2025-06-01T21:29:05.5662185Z * [new tag] ciflow/torchbench/151581 -> ciflow/torchbench/151581 2025-06-01T21:29:05.5662646Z * [new tag] ciflow/torchbench/151585 -> ciflow/torchbench/151585 2025-06-01T21:29:05.5663108Z * [new tag] ciflow/torchbench/154665 -> ciflow/torchbench/154665 2025-06-01T21:29:05.5663547Z * [new tag] ciflow/trunk/101814 -> ciflow/trunk/101814 2025-06-01T21:29:05.5663959Z * [new tag] ciflow/trunk/108303 -> ciflow/trunk/108303 2025-06-01T21:29:05.5664365Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-06-01T21:29:05.5664765Z * [new tag] ciflow/trunk/120076 -> ciflow/trunk/120076 2025-06-01T21:29:05.5665169Z * [new tag] ciflow/trunk/121445 -> ciflow/trunk/121445 2025-06-01T21:29:05.5665578Z * [new tag] ciflow/trunk/123020 -> ciflow/trunk/123020 2025-06-01T21:29:05.5665981Z * [new tag] ciflow/trunk/124424 -> ciflow/trunk/124424 2025-06-01T21:29:05.5666379Z * [new tag] ciflow/trunk/124490 -> ciflow/trunk/124490 2025-06-01T21:29:05.5666779Z * [new tag] ciflow/trunk/125888 -> ciflow/trunk/125888 2025-06-01T21:29:05.5667190Z * [new tag] ciflow/trunk/125995 -> ciflow/trunk/125995 2025-06-01T21:29:05.5667656Z * [new tag] ciflow/trunk/126050 -> ciflow/trunk/126050 2025-06-01T21:29:05.5668065Z * [new tag] ciflow/trunk/126054 -> ciflow/trunk/126054 2025-06-01T21:29:05.5668477Z * [new tag] ciflow/trunk/127171 -> ciflow/trunk/127171 2025-06-01T21:29:05.5668878Z * [new tag] ciflow/trunk/127919 -> ciflow/trunk/127919 2025-06-01T21:29:05.5669287Z * [new tag] ciflow/trunk/129352 -> ciflow/trunk/129352 2025-06-01T21:29:05.5669686Z * [new tag] ciflow/trunk/130752 -> ciflow/trunk/130752 2025-06-01T21:29:05.5670093Z * [new tag] ciflow/trunk/133044 -> ciflow/trunk/133044 2025-06-01T21:29:05.5670491Z * [new tag] ciflow/trunk/133289 -> ciflow/trunk/133289 2025-06-01T21:29:05.5671048Z * [new tag] ciflow/trunk/133296 -> ciflow/trunk/133296 2025-06-01T21:29:05.5671456Z * [new tag] ciflow/trunk/133297 -> ciflow/trunk/133297 2025-06-01T21:29:05.5671852Z * [new tag] ciflow/trunk/133315 -> ciflow/trunk/133315 2025-06-01T21:29:05.5672261Z * [new tag] ciflow/trunk/133392 -> ciflow/trunk/133392 2025-06-01T21:29:05.5672668Z * [new tag] ciflow/trunk/133419 -> ciflow/trunk/133419 2025-06-01T21:29:05.5673075Z * [new tag] ciflow/trunk/133423 -> ciflow/trunk/133423 2025-06-01T21:29:05.5673485Z * [new tag] ciflow/trunk/133667 -> ciflow/trunk/133667 2025-06-01T21:29:05.5673885Z * [new tag] ciflow/trunk/133753 -> ciflow/trunk/133753 2025-06-01T21:29:05.5674288Z * [new tag] ciflow/trunk/135631 -> ciflow/trunk/135631 2025-06-01T21:29:05.5674687Z * [new tag] ciflow/trunk/136824 -> ciflow/trunk/136824 2025-06-01T21:29:05.5675091Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-06-01T21:29:05.5675495Z * [new tag] ciflow/trunk/138436 -> ciflow/trunk/138436 2025-06-01T21:29:05.5675891Z * [new tag] ciflow/trunk/138626 -> ciflow/trunk/138626 2025-06-01T21:29:05.5676406Z * [new tag] ciflow/trunk/138684 -> ciflow/trunk/138684 2025-06-01T21:29:05.5676814Z * [new tag] ciflow/trunk/138834 -> ciflow/trunk/138834 2025-06-01T21:29:05.5677225Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-06-01T21:29:05.5677625Z * [new tag] ciflow/trunk/139171 -> ciflow/trunk/139171 2025-06-01T21:29:05.5678035Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-06-01T21:29:05.5678460Z * [new tag] ciflow/trunk/139975 -> ciflow/trunk/139975 2025-06-01T21:29:05.5678874Z * [new tag] ciflow/trunk/140756 -> ciflow/trunk/140756 2025-06-01T21:29:05.5679285Z * [new tag] ciflow/trunk/140979 -> ciflow/trunk/140979 2025-06-01T21:29:05.5679689Z * [new tag] ciflow/trunk/141309 -> ciflow/trunk/141309 2025-06-01T21:29:05.5680095Z * [new tag] ciflow/trunk/141842 -> ciflow/trunk/141842 2025-06-01T21:29:05.5680507Z * [new tag] ciflow/trunk/141961 -> ciflow/trunk/141961 2025-06-01T21:29:05.6011324Z * [new tag] ciflow/trunk/142346 -> ciflow/trunk/142346 2025-06-01T21:29:05.6011786Z * [new tag] ciflow/trunk/143712 -> ciflow/trunk/143712 2025-06-01T21:29:05.6012194Z * [new tag] ciflow/trunk/143896 -> ciflow/trunk/143896 2025-06-01T21:29:05.6012601Z * [new tag] ciflow/trunk/144468 -> ciflow/trunk/144468 2025-06-01T21:29:05.6013037Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-06-01T21:29:05.6013432Z * [new tag] ciflow/trunk/144756 -> ciflow/trunk/144756 2025-06-01T21:29:05.6013840Z * [new tag] ciflow/trunk/144925 -> ciflow/trunk/144925 2025-06-01T21:29:05.6014232Z * [new tag] ciflow/trunk/144992 -> ciflow/trunk/144992 2025-06-01T21:29:05.6014707Z * [new tag] ciflow/trunk/145136 -> ciflow/trunk/145136 2025-06-01T21:29:05.6015151Z * [new tag] ciflow/trunk/145153 -> ciflow/trunk/145153 2025-06-01T21:29:05.6015568Z * [new tag] ciflow/trunk/145719 -> ciflow/trunk/145719 2025-06-01T21:29:05.6015979Z * [new tag] ciflow/trunk/146055 -> ciflow/trunk/146055 2025-06-01T21:29:05.6016375Z * [new tag] ciflow/trunk/146289 -> ciflow/trunk/146289 2025-06-01T21:29:05.6016980Z * [new tag] ciflow/trunk/146335 -> ciflow/trunk/146335 2025-06-01T21:29:05.6017396Z * [new tag] ciflow/trunk/146622 -> ciflow/trunk/146622 2025-06-01T21:29:05.6017811Z * [new tag] ciflow/trunk/146777 -> ciflow/trunk/146777 2025-06-01T21:29:05.6018218Z * [new tag] ciflow/trunk/146845 -> ciflow/trunk/146845 2025-06-01T21:29:05.6018625Z * [new tag] ciflow/trunk/146874 -> ciflow/trunk/146874 2025-06-01T21:29:05.6019034Z * [new tag] ciflow/trunk/146903 -> ciflow/trunk/146903 2025-06-01T21:29:05.6019436Z * [new tag] ciflow/trunk/147053 -> ciflow/trunk/147053 2025-06-01T21:29:05.6019837Z * [new tag] ciflow/trunk/147095 -> ciflow/trunk/147095 2025-06-01T21:29:05.6020234Z * [new tag] ciflow/trunk/147368 -> ciflow/trunk/147368 2025-06-01T21:29:05.6020684Z * [new tag] ciflow/trunk/147433 -> ciflow/trunk/147433 2025-06-01T21:29:05.6021097Z * [new tag] ciflow/trunk/147583 -> ciflow/trunk/147583 2025-06-01T21:29:05.6021536Z * [new tag] ciflow/trunk/147670 -> ciflow/trunk/147670 2025-06-01T21:29:05.6021941Z * [new tag] ciflow/trunk/147758 -> ciflow/trunk/147758 2025-06-01T21:29:05.6022481Z * [new tag] ciflow/trunk/147881 -> ciflow/trunk/147881 2025-06-01T21:29:05.6022884Z * [new tag] ciflow/trunk/148140 -> ciflow/trunk/148140 2025-06-01T21:29:05.6023439Z * [new tag] ciflow/trunk/148173 -> ciflow/trunk/148173 2025-06-01T21:29:05.6023834Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-06-01T21:29:05.6024238Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-06-01T21:29:05.6024629Z * [new tag] ciflow/trunk/148419 -> ciflow/trunk/148419 2025-06-01T21:29:05.6025047Z * [new tag] ciflow/trunk/148424 -> ciflow/trunk/148424 2025-06-01T21:29:05.6025449Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-06-01T21:29:05.6025838Z * [new tag] ciflow/trunk/148605 -> ciflow/trunk/148605 2025-06-01T21:29:05.6026239Z * [new tag] ciflow/trunk/148628 -> ciflow/trunk/148628 2025-06-01T21:29:05.6026682Z * [new tag] ciflow/trunk/148753 -> ciflow/trunk/148753 2025-06-01T21:29:05.6027087Z * [new tag] ciflow/trunk/148900 -> ciflow/trunk/148900 2025-06-01T21:29:05.6027620Z * [new tag] ciflow/trunk/148903 -> ciflow/trunk/148903 2025-06-01T21:29:05.6028025Z * [new tag] ciflow/trunk/148919 -> ciflow/trunk/148919 2025-06-01T21:29:05.6028433Z * [new tag] ciflow/trunk/149069 -> ciflow/trunk/149069 2025-06-01T21:29:05.6028841Z * [new tag] ciflow/trunk/149114 -> ciflow/trunk/149114 2025-06-01T21:29:05.6029248Z * [new tag] ciflow/trunk/149122 -> ciflow/trunk/149122 2025-06-01T21:29:05.6029644Z * [new tag] ciflow/trunk/149150 -> ciflow/trunk/149150 2025-06-01T21:29:05.6030054Z * [new tag] ciflow/trunk/149192 -> ciflow/trunk/149192 2025-06-01T21:29:05.6030462Z * [new tag] ciflow/trunk/149282 -> ciflow/trunk/149282 2025-06-01T21:29:05.6030857Z * [new tag] ciflow/trunk/149330 -> ciflow/trunk/149330 2025-06-01T21:29:05.6031264Z * [new tag] ciflow/trunk/149338 -> ciflow/trunk/149338 2025-06-01T21:29:05.6031661Z * [new tag] ciflow/trunk/149348 -> ciflow/trunk/149348 2025-06-01T21:29:05.6032063Z * [new tag] ciflow/trunk/149362 -> ciflow/trunk/149362 2025-06-01T21:29:05.6032465Z * [new tag] ciflow/trunk/149427 -> ciflow/trunk/149427 2025-06-01T21:29:05.6369349Z * [new tag] ciflow/trunk/149486 -> ciflow/trunk/149486 2025-06-01T21:29:05.6369803Z * [new tag] ciflow/trunk/149602 -> ciflow/trunk/149602 2025-06-01T21:29:05.6370216Z * [new tag] ciflow/trunk/149744 -> ciflow/trunk/149744 2025-06-01T21:29:05.6370659Z * [new tag] ciflow/trunk/149769 -> ciflow/trunk/149769 2025-06-01T21:29:05.6371069Z * [new tag] ciflow/trunk/149814 -> ciflow/trunk/149814 2025-06-01T21:29:05.6371468Z * [new tag] ciflow/trunk/149949 -> ciflow/trunk/149949 2025-06-01T21:29:05.6371891Z * [new tag] ciflow/trunk/149958 -> ciflow/trunk/149958 2025-06-01T21:29:05.6372286Z * [new tag] ciflow/trunk/149961 -> ciflow/trunk/149961 2025-06-01T21:29:05.6372756Z * [new tag] ciflow/trunk/149967 -> ciflow/trunk/149967 2025-06-01T21:29:05.6373222Z * [new tag] ciflow/trunk/150095 -> ciflow/trunk/150095 2025-06-01T21:29:05.6373619Z * [new tag] ciflow/trunk/150105 -> ciflow/trunk/150105 2025-06-01T21:29:05.6374026Z * [new tag] ciflow/trunk/150116 -> ciflow/trunk/150116 2025-06-01T21:29:05.6374424Z * [new tag] ciflow/trunk/150227 -> ciflow/trunk/150227 2025-06-01T21:29:05.6375016Z * [new tag] ciflow/trunk/150338 -> ciflow/trunk/150338 2025-06-01T21:29:05.6375433Z * [new tag] ciflow/trunk/150365 -> ciflow/trunk/150365 2025-06-01T21:29:05.6375832Z * [new tag] ciflow/trunk/150383 -> ciflow/trunk/150383 2025-06-01T21:29:05.6376244Z * [new tag] ciflow/trunk/150415 -> ciflow/trunk/150415 2025-06-01T21:29:05.6376649Z * [new tag] ciflow/trunk/150429 -> ciflow/trunk/150429 2025-06-01T21:29:05.6377065Z * [new tag] ciflow/trunk/150474 -> ciflow/trunk/150474 2025-06-01T21:29:05.6377458Z * [new tag] ciflow/trunk/150546 -> ciflow/trunk/150546 2025-06-01T21:29:05.6377861Z * [new tag] ciflow/trunk/150552 -> ciflow/trunk/150552 2025-06-01T21:29:05.6378308Z * [new tag] ciflow/trunk/150583 -> ciflow/trunk/150583 2025-06-01T21:29:05.6378752Z * [new tag] ciflow/trunk/150669 -> ciflow/trunk/150669 2025-06-01T21:29:05.6379159Z * [new tag] ciflow/trunk/150678 -> ciflow/trunk/150678 2025-06-01T21:29:05.6379551Z * [new tag] ciflow/trunk/150717 -> ciflow/trunk/150717 2025-06-01T21:29:05.6379963Z * [new tag] ciflow/trunk/150719 -> ciflow/trunk/150719 2025-06-01T21:29:05.6380373Z * [new tag] ciflow/trunk/150937 -> ciflow/trunk/150937 2025-06-01T21:29:05.6380767Z * [new tag] ciflow/trunk/150954 -> ciflow/trunk/150954 2025-06-01T21:29:05.6381179Z * [new tag] ciflow/trunk/150979 -> ciflow/trunk/150979 2025-06-01T21:29:05.6381573Z * [new tag] ciflow/trunk/151125 -> ciflow/trunk/151125 2025-06-01T21:29:05.6381980Z * [new tag] ciflow/trunk/151146 -> ciflow/trunk/151146 2025-06-01T21:29:05.6382383Z * [new tag] ciflow/trunk/151150 -> ciflow/trunk/151150 2025-06-01T21:29:05.6382787Z * [new tag] ciflow/trunk/151177 -> ciflow/trunk/151177 2025-06-01T21:29:05.6383188Z * [new tag] ciflow/trunk/151292 -> ciflow/trunk/151292 2025-06-01T21:29:05.6383582Z * [new tag] ciflow/trunk/151305 -> ciflow/trunk/151305 2025-06-01T21:29:05.6384030Z * [new tag] ciflow/trunk/151315 -> ciflow/trunk/151315 2025-06-01T21:29:05.6384472Z * [new tag] ciflow/trunk/151439 -> ciflow/trunk/151439 2025-06-01T21:29:05.6385011Z * [new tag] ciflow/trunk/151456 -> ciflow/trunk/151456 2025-06-01T21:29:05.6385429Z * [new tag] ciflow/trunk/151473 -> ciflow/trunk/151473 2025-06-01T21:29:05.6385830Z * [new tag] ciflow/trunk/151481 -> ciflow/trunk/151481 2025-06-01T21:29:05.6386237Z * [new tag] ciflow/trunk/151497 -> ciflow/trunk/151497 2025-06-01T21:29:05.6386642Z * [new tag] ciflow/trunk/151527 -> ciflow/trunk/151527 2025-06-01T21:29:05.6387049Z * [new tag] ciflow/trunk/151547 -> ciflow/trunk/151547 2025-06-01T21:29:05.6387551Z * [new tag] ciflow/trunk/151557 -> ciflow/trunk/151557 2025-06-01T21:29:05.6387963Z * [new tag] ciflow/trunk/151567 -> ciflow/trunk/151567 2025-06-01T21:29:05.6388379Z * [new tag] ciflow/trunk/151581 -> ciflow/trunk/151581 2025-06-01T21:29:05.6388786Z * [new tag] ciflow/trunk/151585 -> ciflow/trunk/151585 2025-06-01T21:29:05.6389193Z * [new tag] ciflow/trunk/151596 -> ciflow/trunk/151596 2025-06-01T21:29:05.6389667Z * [new tag] ciflow/trunk/151647 -> ciflow/trunk/151647 2025-06-01T21:29:05.6390082Z * [new tag] ciflow/trunk/151676 -> ciflow/trunk/151676 2025-06-01T21:29:05.6390663Z * [new tag] ciflow/trunk/151752 -> ciflow/trunk/151752 2025-06-01T21:29:05.6749521Z * [new tag] ciflow/trunk/151774 -> ciflow/trunk/151774 2025-06-01T21:29:05.6749983Z * [new tag] ciflow/trunk/151777 -> ciflow/trunk/151777 2025-06-01T21:29:05.6750393Z * [new tag] ciflow/trunk/151795 -> ciflow/trunk/151795 2025-06-01T21:29:05.6750806Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-06-01T21:29:05.6751253Z * [new tag] ciflow/trunk/151860 -> ciflow/trunk/151860 2025-06-01T21:29:05.6751651Z * [new tag] ciflow/trunk/151896 -> ciflow/trunk/151896 2025-06-01T21:29:05.6752060Z * [new tag] ciflow/trunk/151924 -> ciflow/trunk/151924 2025-06-01T21:29:05.6752460Z * [new tag] ciflow/trunk/152026 -> ciflow/trunk/152026 2025-06-01T21:29:05.6752883Z * [new tag] ciflow/trunk/152091 -> ciflow/trunk/152091 2025-06-01T21:29:05.6753307Z * [new tag] ciflow/trunk/152197 -> ciflow/trunk/152197 2025-06-01T21:29:05.6753707Z * [new tag] ciflow/trunk/152348 -> ciflow/trunk/152348 2025-06-01T21:29:05.6754115Z * [new tag] ciflow/trunk/152353 -> ciflow/trunk/152353 2025-06-01T21:29:05.6754509Z * [new tag] ciflow/trunk/152372 -> ciflow/trunk/152372 2025-06-01T21:29:05.6754909Z * [new tag] ciflow/trunk/152373 -> ciflow/trunk/152373 2025-06-01T21:29:05.6755322Z * [new tag] ciflow/trunk/152394 -> ciflow/trunk/152394 2025-06-01T21:29:05.6755716Z * [new tag] ciflow/trunk/152424 -> ciflow/trunk/152424 2025-06-01T21:29:05.6756122Z * [new tag] ciflow/trunk/152450 -> ciflow/trunk/152450 2025-06-01T21:29:05.6756514Z * [new tag] ciflow/trunk/152453 -> ciflow/trunk/152453 2025-06-01T21:29:05.6756922Z * [new tag] ciflow/trunk/152477 -> ciflow/trunk/152477 2025-06-01T21:29:05.6757327Z * [new tag] ciflow/trunk/152484 -> ciflow/trunk/152484 2025-06-01T21:29:05.6757720Z * [new tag] ciflow/trunk/152493 -> ciflow/trunk/152493 2025-06-01T21:29:05.6758127Z * [new tag] ciflow/trunk/152495 -> ciflow/trunk/152495 2025-06-01T21:29:05.6758526Z * [new tag] ciflow/trunk/152509 -> ciflow/trunk/152509 2025-06-01T21:29:05.6759124Z * [new tag] ciflow/trunk/152539 -> ciflow/trunk/152539 2025-06-01T21:29:05.6759526Z * [new tag] ciflow/trunk/152557 -> ciflow/trunk/152557 2025-06-01T21:29:05.6759934Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-06-01T21:29:05.6760341Z * [new tag] ciflow/trunk/152630 -> ciflow/trunk/152630 2025-06-01T21:29:05.6760741Z * [new tag] ciflow/trunk/152729 -> ciflow/trunk/152729 2025-06-01T21:29:05.6761145Z * [new tag] ciflow/trunk/152748 -> ciflow/trunk/152748 2025-06-01T21:29:05.6761536Z * [new tag] ciflow/trunk/152806 -> ciflow/trunk/152806 2025-06-01T21:29:05.6761938Z * [new tag] ciflow/trunk/152908 -> ciflow/trunk/152908 2025-06-01T21:29:05.6762334Z * [new tag] ciflow/trunk/152981 -> ciflow/trunk/152981 2025-06-01T21:29:05.6762729Z * [new tag] ciflow/trunk/152986 -> ciflow/trunk/152986 2025-06-01T21:29:05.6763134Z * [new tag] ciflow/trunk/153117 -> ciflow/trunk/153117 2025-06-01T21:29:05.6763526Z * [new tag] ciflow/trunk/153165 -> ciflow/trunk/153165 2025-06-01T21:29:05.6763932Z * [new tag] ciflow/trunk/153213 -> ciflow/trunk/153213 2025-06-01T21:29:05.6764450Z * [new tag] ciflow/trunk/153228 -> ciflow/trunk/153228 2025-06-01T21:29:05.6764867Z * [new tag] ciflow/trunk/153287 -> ciflow/trunk/153287 2025-06-01T21:29:05.6765276Z * [new tag] ciflow/trunk/153322 -> ciflow/trunk/153322 2025-06-01T21:29:05.6765671Z * [new tag] ciflow/trunk/153373 -> ciflow/trunk/153373 2025-06-01T21:29:05.6766077Z * [new tag] ciflow/trunk/153407 -> ciflow/trunk/153407 2025-06-01T21:29:05.6766472Z * [new tag] ciflow/trunk/153409 -> ciflow/trunk/153409 2025-06-01T21:29:05.6766889Z * [new tag] ciflow/trunk/153436 -> ciflow/trunk/153436 2025-06-01T21:29:05.6767299Z * [new tag] ciflow/trunk/153473 -> ciflow/trunk/153473 2025-06-01T21:29:05.6767694Z * [new tag] ciflow/trunk/153499 -> ciflow/trunk/153499 2025-06-01T21:29:05.6768100Z * [new tag] ciflow/trunk/153515 -> ciflow/trunk/153515 2025-06-01T21:29:05.6768498Z * [new tag] ciflow/trunk/153538 -> ciflow/trunk/153538 2025-06-01T21:29:05.6768901Z * [new tag] ciflow/trunk/153540 -> ciflow/trunk/153540 2025-06-01T21:29:05.6769293Z * [new tag] ciflow/trunk/153541 -> ciflow/trunk/153541 2025-06-01T21:29:05.6769700Z * [new tag] ciflow/trunk/153547 -> ciflow/trunk/153547 2025-06-01T21:29:05.6770109Z * [new tag] ciflow/trunk/153548 -> ciflow/trunk/153548 2025-06-01T21:29:05.7119026Z * [new tag] ciflow/trunk/153567 -> ciflow/trunk/153567 2025-06-01T21:29:05.7119469Z * [new tag] ciflow/trunk/153596 -> ciflow/trunk/153596 2025-06-01T21:29:05.7119890Z * [new tag] ciflow/trunk/153651 -> ciflow/trunk/153651 2025-06-01T21:29:05.7120295Z * [new tag] ciflow/trunk/153662 -> ciflow/trunk/153662 2025-06-01T21:29:05.7120722Z * [new tag] ciflow/trunk/153672 -> ciflow/trunk/153672 2025-06-01T21:29:05.7121128Z * [new tag] ciflow/trunk/153675 -> ciflow/trunk/153675 2025-06-01T21:29:05.7121523Z * [new tag] ciflow/trunk/153683 -> ciflow/trunk/153683 2025-06-01T21:29:05.7121931Z * [new tag] ciflow/trunk/153684 -> ciflow/trunk/153684 2025-06-01T21:29:05.7122332Z * [new tag] ciflow/trunk/153724 -> ciflow/trunk/153724 2025-06-01T21:29:05.7122919Z * [new tag] ciflow/trunk/153738 -> ciflow/trunk/153738 2025-06-01T21:29:05.7123316Z * [new tag] ciflow/trunk/153780 -> ciflow/trunk/153780 2025-06-01T21:29:05.7123728Z * [new tag] ciflow/trunk/153783 -> ciflow/trunk/153783 2025-06-01T21:29:05.7124149Z * [new tag] ciflow/trunk/153792 -> ciflow/trunk/153792 2025-06-01T21:29:05.7124554Z * [new tag] ciflow/trunk/153802 -> ciflow/trunk/153802 2025-06-01T21:29:05.7124972Z * [new tag] ciflow/trunk/153831 -> ciflow/trunk/153831 2025-06-01T21:29:05.7125371Z * [new tag] ciflow/trunk/153834 -> ciflow/trunk/153834 2025-06-01T21:29:05.7125797Z * [new tag] ciflow/trunk/153835 -> ciflow/trunk/153835 2025-06-01T21:29:05.7126200Z * [new tag] ciflow/trunk/153855 -> ciflow/trunk/153855 2025-06-01T21:29:05.7126597Z * [new tag] ciflow/trunk/153862 -> ciflow/trunk/153862 2025-06-01T21:29:05.7127002Z * [new tag] ciflow/trunk/153921 -> ciflow/trunk/153921 2025-06-01T21:29:05.7127400Z * [new tag] ciflow/trunk/153972 -> ciflow/trunk/153972 2025-06-01T21:29:05.7127808Z * [new tag] ciflow/trunk/153977 -> ciflow/trunk/153977 2025-06-01T21:29:05.7128335Z * [new tag] ciflow/trunk/154013 -> ciflow/trunk/154013 2025-06-01T21:29:05.7128742Z * [new tag] ciflow/trunk/154047 -> ciflow/trunk/154047 2025-06-01T21:29:05.7129157Z * [new tag] ciflow/trunk/154075 -> ciflow/trunk/154075 2025-06-01T21:29:05.7129565Z * [new tag] ciflow/trunk/154100 -> ciflow/trunk/154100 2025-06-01T21:29:05.7129979Z * [new tag] ciflow/trunk/154129 -> ciflow/trunk/154129 2025-06-01T21:29:05.7130393Z * [new tag] ciflow/trunk/154132 -> ciflow/trunk/154132 2025-06-01T21:29:05.7130797Z * [new tag] ciflow/trunk/154142 -> ciflow/trunk/154142 2025-06-01T21:29:05.7131200Z * [new tag] ciflow/trunk/154145 -> ciflow/trunk/154145 2025-06-01T21:29:05.7131601Z * [new tag] ciflow/trunk/154149 -> ciflow/trunk/154149 2025-06-01T21:29:05.7132011Z * [new tag] ciflow/trunk/154159 -> ciflow/trunk/154159 2025-06-01T21:29:05.7132421Z * [new tag] ciflow/trunk/154165 -> ciflow/trunk/154165 2025-06-01T21:29:05.7132828Z * [new tag] ciflow/trunk/154169 -> ciflow/trunk/154169 2025-06-01T21:29:05.7133231Z * [new tag] ciflow/trunk/154198 -> ciflow/trunk/154198 2025-06-01T21:29:05.7133625Z * [new tag] ciflow/trunk/154203 -> ciflow/trunk/154203 2025-06-01T21:29:05.7134033Z * [new tag] ciflow/trunk/154292 -> ciflow/trunk/154292 2025-06-01T21:29:05.7134444Z * [new tag] ciflow/trunk/154293 -> ciflow/trunk/154293 2025-06-01T21:29:05.7134867Z * [new tag] ciflow/trunk/154298 -> ciflow/trunk/154298 2025-06-01T21:29:05.7135267Z * [new tag] ciflow/trunk/154314 -> ciflow/trunk/154314 2025-06-01T21:29:05.7135670Z * [new tag] ciflow/trunk/154320 -> ciflow/trunk/154320 2025-06-01T21:29:05.7136074Z * [new tag] ciflow/trunk/154343 -> ciflow/trunk/154343 2025-06-01T21:29:05.7136480Z * [new tag] ciflow/trunk/154347 -> ciflow/trunk/154347 2025-06-01T21:29:05.7136885Z * [new tag] ciflow/trunk/154348 -> ciflow/trunk/154348 2025-06-01T21:29:05.7137283Z * [new tag] ciflow/trunk/154353 -> ciflow/trunk/154353 2025-06-01T21:29:05.7137691Z * [new tag] ciflow/trunk/154406 -> ciflow/trunk/154406 2025-06-01T21:29:05.7138088Z * [new tag] ciflow/trunk/154447 -> ciflow/trunk/154447 2025-06-01T21:29:05.7139820Z * [new tag] ciflow/trunk/154464 -> ciflow/trunk/154464 2025-06-01T21:29:05.7140222Z * [new tag] ciflow/trunk/154469 -> ciflow/trunk/154469 2025-06-01T21:29:05.7140627Z * [new tag] ciflow/trunk/154514 -> ciflow/trunk/154514 2025-06-01T21:29:05.7141042Z * [new tag] ciflow/trunk/154525 -> ciflow/trunk/154525 2025-06-01T21:29:05.7488328Z * [new tag] ciflow/trunk/154538 -> ciflow/trunk/154538 2025-06-01T21:29:05.7488807Z * [new tag] ciflow/trunk/154555 -> ciflow/trunk/154555 2025-06-01T21:29:05.7489312Z * [new tag] ciflow/trunk/154568 -> ciflow/trunk/154568 2025-06-01T21:29:05.7489721Z * [new tag] ciflow/trunk/154585 -> ciflow/trunk/154585 2025-06-01T21:29:05.7490182Z * [new tag] ciflow/trunk/154589 -> ciflow/trunk/154589 2025-06-01T21:29:05.7490606Z * [new tag] ciflow/trunk/154594 -> ciflow/trunk/154594 2025-06-01T21:29:05.7491008Z * [new tag] ciflow/trunk/154610 -> ciflow/trunk/154610 2025-06-01T21:29:05.7491402Z * [new tag] ciflow/trunk/154630 -> ciflow/trunk/154630 2025-06-01T21:29:05.7491815Z * [new tag] ciflow/trunk/154631 -> ciflow/trunk/154631 2025-06-01T21:29:05.7492397Z * [new tag] ciflow/trunk/154636 -> ciflow/trunk/154636 2025-06-01T21:29:05.7492802Z * [new tag] ciflow/trunk/154640 -> ciflow/trunk/154640 2025-06-01T21:29:05.7493213Z * [new tag] ciflow/trunk/154665 -> ciflow/trunk/154665 2025-06-01T21:29:05.7493615Z * [new tag] ciflow/trunk/154667 -> ciflow/trunk/154667 2025-06-01T21:29:05.7494023Z * [new tag] ciflow/trunk/154673 -> ciflow/trunk/154673 2025-06-01T21:29:05.7494433Z * [new tag] ciflow/trunk/154679 -> ciflow/trunk/154679 2025-06-01T21:29:05.7494826Z * [new tag] ciflow/trunk/154688 -> ciflow/trunk/154688 2025-06-01T21:29:05.7495232Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-06-01T21:29:05.7495678Z * [new tag] ciflow/trunk/154698 -> ciflow/trunk/154698 2025-06-01T21:29:05.7496129Z * [new tag] ciflow/trunk/154704 -> ciflow/trunk/154704 2025-06-01T21:29:05.7496528Z * [new tag] ciflow/trunk/154729 -> ciflow/trunk/154729 2025-06-01T21:29:05.7496937Z * [new tag] ciflow/trunk/154749 -> ciflow/trunk/154749 2025-06-01T21:29:05.7497340Z * [new tag] ciflow/trunk/154776 -> ciflow/trunk/154776 2025-06-01T21:29:05.7497733Z * [new tag] ciflow/trunk/154780 -> ciflow/trunk/154780 2025-06-01T21:29:05.7498140Z * [new tag] ciflow/trunk/154781 -> ciflow/trunk/154781 2025-06-01T21:29:05.7498536Z * [new tag] ciflow/trunk/154783 -> ciflow/trunk/154783 2025-06-01T21:29:05.7498940Z * [new tag] ciflow/trunk/154814 -> ciflow/trunk/154814 2025-06-01T21:29:05.7499347Z * [new tag] ciflow/trunk/154817 -> ciflow/trunk/154817 2025-06-01T21:29:05.7499747Z * [new tag] ciflow/trunk/154825 -> ciflow/trunk/154825 2025-06-01T21:29:05.7500150Z * [new tag] ciflow/trunk/70978 -> ciflow/trunk/70978 2025-06-01T21:29:05.7500554Z * [new tag] ciflow/trunk/70979 -> ciflow/trunk/70979 2025-06-01T21:29:05.7500981Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-06-01T21:29:05.7501449Z * [new tag] ciflow/win-arm64/154783 -> ciflow/win-arm64/154783 2025-06-01T21:29:05.7501872Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-06-01T21:29:05.7502459Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-06-01T21:29:05.7502851Z * [new tag] ciflow/xpu/140372 -> ciflow/xpu/140372 2025-06-01T21:29:05.7503261Z * [new tag] ciflow/xpu/147583 -> ciflow/xpu/147583 2025-06-01T21:29:05.7503664Z * [new tag] ciflow/xpu/149114 -> ciflow/xpu/149114 2025-06-01T21:29:05.7504056Z * [new tag] ciflow/xpu/150095 -> ciflow/xpu/150095 2025-06-01T21:29:05.7504449Z * [new tag] ciflow/xpu/150673 -> ciflow/xpu/150673 2025-06-01T21:29:05.7504831Z * [new tag] ciflow/xpu/151420 -> ciflow/xpu/151420 2025-06-01T21:29:05.7505232Z * [new tag] ciflow/xpu/151439 -> ciflow/xpu/151439 2025-06-01T21:29:05.7505613Z * [new tag] ciflow/xpu/151581 -> ciflow/xpu/151581 2025-06-01T21:29:05.7506013Z * [new tag] ciflow/xpu/151596 -> ciflow/xpu/151596 2025-06-01T21:29:05.7506401Z * [new tag] ciflow/xpu/151777 -> ciflow/xpu/151777 2025-06-01T21:29:05.7506787Z * [new tag] ciflow/xpu/152001 -> ciflow/xpu/152001 2025-06-01T21:29:05.7507182Z * [new tag] ciflow/xpu/152091 -> ciflow/xpu/152091 2025-06-01T21:29:05.7508393Z * [new tag] ciflow/xpu/152879 -> ciflow/xpu/152879 2025-06-01T21:29:05.7508810Z * [new tag] ciflow/xpu/153096 -> ciflow/xpu/153096 2025-06-01T21:29:05.7509211Z * [new tag] ciflow/xpu/153213 -> ciflow/xpu/153213 2025-06-01T21:29:05.7509599Z * [new tag] ciflow/xpu/153228 -> ciflow/xpu/153228 2025-06-01T21:29:05.7510001Z * [new tag] ciflow/xpu/153322 -> ciflow/xpu/153322 2025-06-01T21:29:05.7510393Z * [new tag] ciflow/xpu/153680 -> ciflow/xpu/153680 2025-06-01T21:29:05.7906364Z * [new tag] ciflow/xpu/153739 -> ciflow/xpu/153739 2025-06-01T21:29:05.7906813Z * [new tag] ciflow/xpu/153841 -> ciflow/xpu/153841 2025-06-01T21:29:05.7907304Z * [new tag] ciflow/xpu/154194 -> ciflow/xpu/154194 2025-06-01T21:29:05.7907734Z * [new tag] ciflow/xpu/154339 -> ciflow/xpu/154339 2025-06-01T21:29:05.7908158Z * [new tag] ciflow/xpu/154346 -> ciflow/xpu/154346 2025-06-01T21:29:05.7908609Z * [new tag] ciflow/xpu/154406 -> ciflow/xpu/154406 2025-06-01T21:29:05.7909048Z * [new tag] ciflow/xpu/154514 -> ciflow/xpu/154514 2025-06-01T21:29:05.7909441Z * [new tag] ciflow/xpu/154586 -> ciflow/xpu/154586 2025-06-01T21:29:05.7909843Z * [new tag] ciflow/xpu/154744 -> ciflow/xpu/154744 2025-06-01T21:29:05.7910241Z * [new tag] cslpull75 -> cslpull75 2025-06-01T21:29:05.7910612Z * [new tag] cslpull76 -> cslpull76 2025-06-01T21:29:05.7910966Z * [new tag] cslpull77 -> cslpull77 2025-06-01T21:29:05.7911338Z * [new tag] cslpull78 -> cslpull78 2025-06-01T21:29:05.7911698Z * [new tag] cslpull79 -> cslpull79 2025-06-01T21:29:05.7912049Z * [new tag] cslpull80 -> cslpull80 2025-06-01T21:29:05.7912405Z * [new tag] cslpull81 -> cslpull81 2025-06-01T21:29:05.7912752Z * [new tag] cslpull82 -> cslpull82 2025-06-01T21:29:05.7913112Z * [new tag] cslpull83 -> cslpull83 2025-06-01T21:29:05.7913464Z * [new tag] cslpull84 -> cslpull84 2025-06-01T21:29:05.7914015Z * [new tag] cslpull85 -> cslpull85 2025-06-01T21:29:05.7914433Z * [new tag] cslpull86 -> cslpull86 2025-06-01T21:29:05.7914787Z * [new tag] cslpull87 -> cslpull87 2025-06-01T21:29:05.7915195Z * [new tag] cslpull88 -> cslpull88 2025-06-01T21:29:05.7915547Z * [new tag] cslpull89 -> cslpull89 2025-06-01T21:29:05.7915911Z * [new tag] cslpull90 -> cslpull90 2025-06-01T21:29:05.7916266Z * [new tag] cslpull91 -> cslpull91 2025-06-01T21:29:05.7916619Z * [new tag] cslpull92 -> cslpull92 2025-06-01T21:29:05.7916982Z * [new tag] flight_5 -> flight_5 2025-06-01T21:29:05.7917336Z * [new tag] flight_5.1 -> flight_5.1 2025-06-01T21:29:05.7917700Z * [new tag] flight_5.2 -> flight_5.2 2025-06-01T21:29:05.7918055Z * [new tag] flight_5.3 -> flight_5.3 2025-06-01T21:29:05.7918412Z * [new tag] forpull1 -> forpull1 2025-06-01T21:29:05.7918800Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-06-01T21:29:05.7919207Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-06-01T21:29:05.7919741Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-06-01T21:29:05.7920148Z * [new tag] nightly-binary -> nightly-binary 2025-06-01T21:29:05.7920615Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-06-01T21:29:05.7921065Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-06-01T21:29:05.7921444Z * [new tag] v0.1.1 -> v0.1.1 2025-06-01T21:29:05.7921795Z * [new tag] v0.1.10 -> v0.1.10 2025-06-01T21:29:05.7922133Z * [new tag] v0.1.11 -> v0.1.11 2025-06-01T21:29:05.7922472Z * [new tag] v0.1.12 -> v0.1.12 2025-06-01T21:29:05.7922806Z * [new tag] v0.1.2 -> v0.1.2 2025-06-01T21:29:05.7923143Z * [new tag] v0.1.3 -> v0.1.3 2025-06-01T21:29:05.7923483Z * [new tag] v0.1.4 -> v0.1.4 2025-06-01T21:29:05.7923806Z * [new tag] v0.1.5 -> v0.1.5 2025-06-01T21:29:05.7924139Z * [new tag] v0.1.6 -> v0.1.6 2025-06-01T21:29:05.7924465Z * [new tag] v0.1.7 -> v0.1.7 2025-06-01T21:29:05.7924798Z * [new tag] v0.1.8 -> v0.1.8 2025-06-01T21:29:05.7925124Z * [new tag] v0.1.9 -> v0.1.9 2025-06-01T21:29:05.7925468Z * [new tag] v0.2.0 -> v0.2.0 2025-06-01T21:29:05.7925798Z * [new tag] v0.3.0 -> v0.3.0 2025-06-01T21:29:05.7926123Z * [new tag] v0.3.1 -> v0.3.1 2025-06-01T21:29:05.7926455Z * [new tag] v0.4.0 -> v0.4.0 2025-06-01T21:29:05.7926841Z * [new tag] v0.4.1 -> v0.4.1 2025-06-01T21:29:05.7927224Z * [new tag] v1.0.0 -> v1.0.0 2025-06-01T21:29:05.7927566Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-06-01T21:29:05.7927912Z * [new tag] v1.0.1 -> v1.0.1 2025-06-01T21:29:05.8344570Z * [new tag] v1.0rc0 -> v1.0rc0 2025-06-01T21:29:05.8344991Z * [new tag] v1.0rc1 -> v1.0rc1 2025-06-01T21:29:05.8345563Z * [new tag] v1.1.0 -> v1.1.0 2025-06-01T21:29:05.8345929Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-06-01T21:29:05.8346279Z * [new tag] v1.10.0 -> v1.10.0 2025-06-01T21:29:05.8346636Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-06-01T21:29:05.8347044Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-06-01T21:29:05.8347465Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-06-01T21:29:05.8347860Z * [new tag] v1.10.1 -> v1.10.1 2025-06-01T21:29:05.8348210Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-06-01T21:29:05.8348562Z * [new tag] v1.10.2 -> v1.10.2 2025-06-01T21:29:05.8348909Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-06-01T21:29:05.8349268Z * [new tag] v1.11.0 -> v1.11.0 2025-06-01T21:29:05.8349611Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-06-01T21:29:05.8349971Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-06-01T21:29:05.8350317Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-06-01T21:29:05.8350671Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-06-01T21:29:05.8351152Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-06-01T21:29:05.8351504Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-06-01T21:29:05.8351863Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-06-01T21:29:05.8352211Z * [new tag] v1.12.0 -> v1.12.0 2025-06-01T21:29:05.8352560Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-06-01T21:29:05.8352905Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-06-01T21:29:05.8353320Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-06-01T21:29:05.8353668Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-06-01T21:29:05.8354064Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-06-01T21:29:05.8354417Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-06-01T21:29:05.8354764Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-06-01T21:29:05.8355118Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-06-01T21:29:05.8355465Z * [new tag] v1.12.1 -> v1.12.1 2025-06-01T21:29:05.8355799Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-06-01T21:29:05.8356150Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-06-01T21:29:05.8356493Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-06-01T21:29:05.8356851Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-06-01T21:29:05.8357194Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-06-01T21:29:05.8357541Z * [new tag] v1.13.0 -> v1.13.0 2025-06-01T21:29:05.8357888Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-06-01T21:29:05.8358235Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-06-01T21:29:05.8358594Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-06-01T21:29:05.8358943Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-06-01T21:29:05.8359344Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-06-01T21:29:05.8359690Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-06-01T21:29:05.8360102Z * [new tag] v1.13.1 -> v1.13.1 2025-06-01T21:29:05.8360575Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-06-01T21:29:05.8360925Z * [new tag] v1.2.0 -> v1.2.0 2025-06-01T21:29:05.8361282Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-06-01T21:29:05.8361626Z * [new tag] v1.3.0 -> v1.3.0 2025-06-01T21:29:05.8361985Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-06-01T21:29:05.8362331Z * [new tag] v1.3.1 -> v1.3.1 2025-06-01T21:29:05.8362658Z * [new tag] v1.4.0 -> v1.4.0 2025-06-01T21:29:05.8363000Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-06-01T21:29:05.8363335Z * [new tag] v1.4.1 -> v1.4.1 2025-06-01T21:29:05.8363679Z * [new tag] v1.5.0 -> v1.5.0 2025-06-01T21:29:05.8364024Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-06-01T21:29:05.8364382Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-06-01T21:29:05.8364737Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-06-01T21:29:05.8365089Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-06-01T21:29:05.8365491Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-06-01T21:29:05.8767449Z * [new tag] v1.5.1 -> v1.5.1 2025-06-01T21:29:05.8767838Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-06-01T21:29:05.8768198Z * [new tag] v1.6.0 -> v1.6.0 2025-06-01T21:29:05.8768543Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-06-01T21:29:05.8768905Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-06-01T21:29:05.8769257Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-06-01T21:29:05.8769626Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-06-01T21:29:05.8769973Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-06-01T21:29:05.8770336Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-06-01T21:29:05.8770690Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-06-01T21:29:05.8771034Z * [new tag] v1.7.0 -> v1.7.0 2025-06-01T21:29:05.8771381Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-06-01T21:29:05.8771748Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-06-01T21:29:05.8772122Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-06-01T21:29:05.8772480Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-06-01T21:29:05.8772825Z * [new tag] v1.7.1 -> v1.7.1 2025-06-01T21:29:05.8773175Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-06-01T21:29:05.8773521Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-06-01T21:29:05.8773877Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-06-01T21:29:05.8774227Z * [new tag] v1.8.0 -> v1.8.0 2025-06-01T21:29:05.8774571Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-06-01T21:29:05.8774923Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-06-01T21:29:05.8775267Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-06-01T21:29:05.8775625Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-06-01T21:29:05.8775967Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-06-01T21:29:05.8776312Z * [new tag] v1.8.1 -> v1.8.1 2025-06-01T21:29:05.8776798Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-06-01T21:29:05.8777141Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-06-01T21:29:05.8777493Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-06-01T21:29:05.8777832Z * [new tag] v1.8.2 -> v1.8.2 2025-06-01T21:29:05.8778188Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-06-01T21:29:05.8778529Z * [new tag] v1.9.0 -> v1.9.0 2025-06-01T21:29:05.8778876Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-06-01T21:29:05.8779229Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-06-01T21:29:05.8779576Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-06-01T21:29:05.8779931Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-06-01T21:29:05.8780273Z * [new tag] v1.9.1 -> v1.9.1 2025-06-01T21:29:05.8780624Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-06-01T21:29:05.8780967Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-06-01T21:29:05.8781313Z * [new tag] v2.0.0 -> v2.0.0 2025-06-01T21:29:05.8781661Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-06-01T21:29:05.8782115Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-06-01T21:29:05.8782480Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-06-01T21:29:05.8782831Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-06-01T21:29:05.8783192Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-06-01T21:29:05.8783551Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-06-01T21:29:05.8783896Z * [new tag] v2.0.1 -> v2.0.1 2025-06-01T21:29:05.8784250Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-06-01T21:29:05.8784598Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-06-01T21:29:05.8784959Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-06-01T21:29:05.8785303Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-06-01T21:29:05.8785650Z * [new tag] v2.1.0 -> v2.1.0 2025-06-01T21:29:05.8785994Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-06-01T21:29:05.8786341Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-06-01T21:29:05.8786692Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-06-01T21:29:05.8787039Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-06-01T21:29:05.8787483Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-06-01T21:29:05.8787839Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-06-01T21:29:05.9174156Z * [new tag] v2.1.1 -> v2.1.1 2025-06-01T21:29:05.9174537Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-06-01T21:29:05.9174888Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-06-01T21:29:05.9175258Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-06-01T21:29:05.9175613Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-06-01T21:29:05.9175966Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-06-01T21:29:05.9176314Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-06-01T21:29:05.9176655Z * [new tag] v2.1.2 -> v2.1.2 2025-06-01T21:29:05.9177007Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-06-01T21:29:05.9177525Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-06-01T21:29:05.9177886Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-06-01T21:29:05.9178235Z * [new tag] v2.2.0 -> v2.2.0 2025-06-01T21:29:05.9178574Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-06-01T21:29:05.9178939Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-06-01T21:29:05.9179287Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-06-01T21:29:05.9179634Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-06-01T21:29:05.9179976Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-06-01T21:29:05.9180323Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-06-01T21:29:05.9180676Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-06-01T21:29:05.9181043Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-06-01T21:29:05.9181395Z * [new tag] v2.2.1 -> v2.2.1 2025-06-01T21:29:05.9181730Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-06-01T21:29:05.9182086Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-06-01T21:29:05.9182571Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-06-01T21:29:05.9182909Z * [new tag] v2.2.2 -> v2.2.2 2025-06-01T21:29:05.9183260Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-06-01T21:29:05.9183606Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-06-01T21:29:05.9183973Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-06-01T21:29:05.9184316Z * [new tag] v2.3.0 -> v2.3.0 2025-06-01T21:29:05.9184674Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-06-01T21:29:05.9185038Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-06-01T21:29:05.9185388Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-06-01T21:29:05.9185744Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-06-01T21:29:05.9186092Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-06-01T21:29:05.9186457Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-06-01T21:29:05.9186810Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-06-01T21:29:05.9187158Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-06-01T21:29:05.9187616Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-06-01T21:29:05.9187967Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-06-01T21:29:05.9188328Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-06-01T21:29:05.9188686Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-06-01T21:29:05.9189045Z * [new tag] v2.3.1 -> v2.3.1 2025-06-01T21:29:05.9189401Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-06-01T21:29:05.9189749Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-06-01T21:29:05.9190108Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-06-01T21:29:05.9190447Z * [new tag] v2.4.0 -> v2.4.0 2025-06-01T21:29:05.9190801Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-06-01T21:29:05.9191145Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-06-01T21:29:05.9191506Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-06-01T21:29:05.9191860Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-06-01T21:29:05.9192333Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-06-01T21:29:05.9192694Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-06-01T21:29:05.9193045Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-06-01T21:29:05.9193414Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-06-01T21:29:05.9193780Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-06-01T21:29:05.9194132Z * [new tag] v2.4.1 -> v2.4.1 2025-06-01T21:29:05.9216479Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-06-01T21:29:05.9217007Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-06-01T21:29:06.2650322Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-06-01T21:29:06.2650748Z * [new tag] v2.5.0 -> v2.5.0 2025-06-01T21:29:06.2651138Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-06-01T21:29:06.2651503Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-06-01T21:29:06.2651854Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-06-01T21:29:06.2652210Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-06-01T21:29:06.2652766Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-06-01T21:29:06.2653128Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-06-01T21:29:06.2653478Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-06-01T21:29:06.2653824Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-06-01T21:29:06.2654182Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-06-01T21:29:06.2654527Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-06-01T21:29:06.2654885Z * [new tag] v2.5.1 -> v2.5.1 2025-06-01T21:29:06.2655232Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-06-01T21:29:06.2655569Z * [new tag] v2.6.0 -> v2.6.0 2025-06-01T21:29:06.2655915Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-06-01T21:29:06.2656261Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-06-01T21:29:06.2656615Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-06-01T21:29:06.2656962Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-06-01T21:29:06.2657318Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-06-01T21:29:06.2657668Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-06-01T21:29:06.2658012Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-06-01T21:29:06.2658370Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-06-01T21:29:06.2658716Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-06-01T21:29:06.2659064Z * [new tag] v2.7.0 -> v2.7.0 2025-06-01T21:29:06.2659406Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-06-01T21:29:06.2659764Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-06-01T21:29:06.2660127Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-06-01T21:29:06.2660469Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-06-01T21:29:06.2660819Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-06-01T21:29:06.2661161Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-06-01T21:29:06.2661519Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-06-01T21:29:06.2662008Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-06-01T21:29:06.2662372Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-06-01T21:29:06.2662803Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-06-01T21:29:06.2663240Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-06-01T21:29:06.2663649Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-06-01T21:29:06.2664009Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-06-01T21:29:06.2664364Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-06-01T21:29:06.2664716Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-06-01T21:29:06.2665071Z * [new tag] whc_flight_1 -> whc_flight_1 2025-06-01T21:29:06.2665446Z * [new tag] whc_flight_2 -> whc_flight_2 2025-06-01T21:29:06.2665815Z * [new tag] whc_flight_4 -> whc_flight_4 2025-06-01T21:29:06.2839706Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet f7c09f864a6c6467a7454f1431340d3338473fd1^{object} 2025-06-01T21:29:06.3046600Z f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:29:06.3083961Z ##[endgroup] 2025-06-01T21:29:06.3084357Z ##[group]Determining the checkout info 2025-06-01T21:29:06.3087069Z ##[endgroup] 2025-06-01T21:29:06.3097688Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-06-01T21:29:06.3401226Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-06-01T21:29:06.3616134Z ##[group]Checking out the ref 2025-06-01T21:29:06.3626636Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:29:08.4525245Z Updating files: 7% (1266/17658) 2025-06-01T21:29:08.5347980Z Updating files: 7% (1274/17658) 2025-06-01T21:29:08.6026257Z Updating files: 8% (1413/17658) 2025-06-01T21:29:08.6587086Z Updating files: 9% (1590/17658) 2025-06-01T21:29:08.7370649Z Updating files: 10% (1766/17658) 2025-06-01T21:29:08.8037294Z Updating files: 11% (1943/17658) 2025-06-01T21:29:08.8729044Z Updating files: 12% (2119/17658) 2025-06-01T21:29:08.9378760Z Updating files: 13% (2296/17658) 2025-06-01T21:29:08.9980856Z Updating files: 14% (2473/17658) 2025-06-01T21:29:09.1061741Z Updating files: 15% (2649/17658) 2025-06-01T21:29:09.1622145Z Updating files: 16% (2826/17658) 2025-06-01T21:29:09.4606670Z Updating files: 17% (3002/17658) 2025-06-01T21:29:09.4780169Z Updating files: 17% (3134/17658) 2025-06-01T21:29:09.6122577Z Updating files: 18% (3179/17658) 2025-06-01T21:29:09.7103657Z Updating files: 19% (3356/17658) 2025-06-01T21:29:09.8592317Z Updating files: 20% (3532/17658) 2025-06-01T21:29:10.3825529Z Updating files: 21% (3709/17658) 2025-06-01T21:29:10.4343441Z Updating files: 22% (3885/17658) 2025-06-01T21:29:10.4546357Z Updating files: 22% (4028/17658) 2025-06-01T21:29:10.5438769Z Updating files: 23% (4062/17658) 2025-06-01T21:29:10.7818618Z Updating files: 24% (4238/17658) 2025-06-01T21:29:10.8491430Z Updating files: 25% (4415/17658) 2025-06-01T21:29:11.0006351Z Updating files: 26% (4592/17658) 2025-06-01T21:29:11.0718719Z Updating files: 27% (4768/17658) 2025-06-01T21:29:11.1409271Z Updating files: 28% (4945/17658) 2025-06-01T21:29:11.2883262Z Updating files: 29% (5121/17658) 2025-06-01T21:29:11.3766244Z Updating files: 30% (5298/17658) 2025-06-01T21:29:11.4389673Z Updating files: 31% (5474/17658) 2025-06-01T21:29:11.4567999Z Updating files: 31% (5579/17658) 2025-06-01T21:29:11.5701505Z Updating files: 32% (5651/17658) 2025-06-01T21:29:11.7496450Z Updating files: 33% (5828/17658) 2025-06-01T21:29:11.8744298Z Updating files: 34% (6004/17658) 2025-06-01T21:29:11.9162203Z Updating files: 35% (6181/17658) 2025-06-01T21:29:11.9528713Z Updating files: 36% (6357/17658) 2025-06-01T21:29:12.0714404Z Updating files: 37% (6534/17658) 2025-06-01T21:29:12.1060265Z Updating files: 38% (6711/17658) 2025-06-01T21:29:12.1390802Z Updating files: 39% (6887/17658) 2025-06-01T21:29:12.2424962Z Updating files: 40% (7064/17658) 2025-06-01T21:29:12.2772849Z Updating files: 41% (7240/17658) 2025-06-01T21:29:12.3093092Z Updating files: 42% (7417/17658) 2025-06-01T21:29:12.3577849Z Updating files: 43% (7593/17658) 2025-06-01T21:29:12.4048445Z Updating files: 44% (7770/17658) 2025-06-01T21:29:12.4347561Z Updating files: 45% (7947/17658) 2025-06-01T21:29:12.4436474Z Updating files: 45% (8082/17658) 2025-06-01T21:29:12.5808721Z Updating files: 46% (8123/17658) 2025-06-01T21:29:12.6177368Z Updating files: 47% (8300/17658) 2025-06-01T21:29:12.6552364Z Updating files: 48% (8476/17658) 2025-06-01T21:29:12.7778488Z Updating files: 49% (8653/17658) 2025-06-01T21:29:12.8179271Z Updating files: 50% (8829/17658) 2025-06-01T21:29:12.8559162Z Updating files: 51% (9006/17658) 2025-06-01T21:29:12.9546603Z Updating files: 52% (9183/17658) 2025-06-01T21:29:13.0641869Z Updating files: 53% (9359/17658) 2025-06-01T21:29:13.1052989Z Updating files: 54% (9536/17658) 2025-06-01T21:29:13.3408446Z Updating files: 55% (9712/17658) 2025-06-01T21:29:13.3836714Z Updating files: 56% (9889/17658) 2025-06-01T21:29:13.4235066Z Updating files: 57% (10066/17658) 2025-06-01T21:29:13.4546810Z Updating files: 58% (10242/17658) 2025-06-01T21:29:13.4695518Z Updating files: 58% (10360/17658) 2025-06-01T21:29:13.5183656Z Updating files: 59% (10419/17658) 2025-06-01T21:29:13.5687270Z Updating files: 60% (10595/17658) 2025-06-01T21:29:13.6151768Z Updating files: 61% (10772/17658) 2025-06-01T21:29:13.6658251Z Updating files: 62% (10948/17658) 2025-06-01T21:29:13.7141864Z Updating files: 63% (11125/17658) 2025-06-01T21:29:13.8090582Z Updating files: 64% (11302/17658) 2025-06-01T21:29:13.8842907Z Updating files: 65% (11478/17658) 2025-06-01T21:29:13.9937479Z Updating files: 66% (11655/17658) 2025-06-01T21:29:14.0445636Z Updating files: 67% (11831/17658) 2025-06-01T21:29:14.1356155Z Updating files: 68% (12008/17658) 2025-06-01T21:29:14.1881677Z Updating files: 69% (12185/17658) 2025-06-01T21:29:14.2304027Z Updating files: 70% (12361/17658) 2025-06-01T21:29:14.2976560Z Updating files: 71% (12538/17658) 2025-06-01T21:29:14.4549612Z Updating files: 72% (12714/17658) 2025-06-01T21:29:14.4711809Z Updating files: 72% (12859/17658) 2025-06-01T21:29:14.5719206Z Updating files: 73% (12891/17658) 2025-06-01T21:29:14.7055002Z Updating files: 74% (13067/17658) 2025-06-01T21:29:14.7834422Z Updating files: 75% (13244/17658) 2025-06-01T21:29:15.1668990Z Updating files: 76% (13421/17658) 2025-06-01T21:29:15.2521468Z Updating files: 77% (13597/17658) 2025-06-01T21:29:15.3493647Z Updating files: 78% (13774/17658) 2025-06-01T21:29:15.4514883Z Updating files: 79% (13950/17658) 2025-06-01T21:29:15.4561212Z Updating files: 80% (14127/17658) 2025-06-01T21:29:15.5624388Z Updating files: 80% (14132/17658) 2025-06-01T21:29:15.6645107Z Updating files: 81% (14303/17658) 2025-06-01T21:29:15.8861837Z Updating files: 82% (14480/17658) 2025-06-01T21:29:16.0010078Z Updating files: 83% (14657/17658) 2025-06-01T21:29:16.1344323Z Updating files: 84% (14833/17658) 2025-06-01T21:29:16.2024387Z Updating files: 85% (15010/17658) 2025-06-01T21:29:16.2714660Z Updating files: 86% (15186/17658) 2025-06-01T21:29:16.3428271Z Updating files: 87% (15363/17658) 2025-06-01T21:29:16.4154898Z Updating files: 88% (15540/17658) 2025-06-01T21:29:16.4681058Z Updating files: 89% (15716/17658) 2025-06-01T21:29:16.4946700Z Updating files: 89% (15838/17658) 2025-06-01T21:29:16.6227258Z Updating files: 90% (15893/17658) 2025-06-01T21:29:16.7055463Z Updating files: 91% (16069/17658) 2025-06-01T21:29:16.7865338Z Updating files: 92% (16246/17658) 2025-06-01T21:29:16.8763850Z Updating files: 93% (16422/17658) 2025-06-01T21:29:16.9650250Z Updating files: 94% (16599/17658) 2025-06-01T21:29:17.0562703Z Updating files: 95% (16776/17658) 2025-06-01T21:29:17.2356683Z Updating files: 96% (16952/17658) 2025-06-01T21:29:17.4460139Z Updating files: 97% (17129/17658) 2025-06-01T21:29:17.4680786Z Updating files: 98% (17305/17658) 2025-06-01T21:29:17.5324523Z Updating files: 98% (17347/17658) 2025-06-01T21:29:17.6015413Z Updating files: 99% (17482/17658) 2025-06-01T21:29:17.6015747Z Updating files: 100% (17658/17658) 2025-06-01T21:29:17.6016022Z Updating files: 100% (17658/17658), done. 2025-06-01T21:29:17.6450893Z Note: switching to 'f7c09f864a6c6467a7454f1431340d3338473fd1'. 2025-06-01T21:29:17.6451228Z 2025-06-01T21:29:17.6451436Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-01T21:29:17.6451963Z changes and commit them, and you can discard any commits you make in this 2025-06-01T21:29:17.6452456Z state without impacting any branches by switching back to a branch. 2025-06-01T21:29:17.6452766Z 2025-06-01T21:29:17.6452951Z If you want to create a new branch to retain commits you create, you may 2025-06-01T21:29:17.6453422Z do so (now or later) by using -c with the switch command. Example: 2025-06-01T21:29:17.6453704Z 2025-06-01T21:29:17.6453803Z git switch -c 2025-06-01T21:29:17.6453982Z 2025-06-01T21:29:17.6454080Z Or undo this operation with: 2025-06-01T21:29:17.6454241Z 2025-06-01T21:29:17.6454318Z git switch - 2025-06-01T21:29:17.6454431Z 2025-06-01T21:29:17.6454855Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-01T21:29:17.6455185Z 2025-06-01T21:29:17.6455361Z HEAD is now at f7c09f864a6 [Docs] Reformat sparse example (#154785) 2025-06-01T21:29:17.6617210Z ##[endgroup] 2025-06-01T21:29:17.6617669Z ##[group]Setting up auth for fetching submodules 2025-06-01T21:29:17.6632987Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-06-01T21:29:17.6900612Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-06-01T21:29:17.7144542Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-01T21:29:17.7398747Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-01T21:29:17.7643786Z ##[endgroup] 2025-06-01T21:29:17.7644205Z ##[group]Fetching submodules 2025-06-01T21:29:17.7654660Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-06-01T21:29:18.1335212Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-06-01T21:29:18.5473926Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-06-01T21:29:18.5474899Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-06-01T21:29:18.5475983Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-06-01T21:29:18.5476936Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-06-01T21:29:18.5477759Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-06-01T21:29:18.5478895Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-06-01T21:29:18.5480044Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-06-01T21:29:18.5480931Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-06-01T21:29:18.5481947Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-06-01T21:29:18.5483159Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-06-01T21:29:18.5484088Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-06-01T21:29:18.5485044Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-06-01T21:29:18.5485979Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-06-01T21:29:18.5486811Z Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' 2025-06-01T21:29:18.5487627Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-06-01T21:29:18.5488558Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-06-01T21:29:18.5489592Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-06-01T21:29:18.5490437Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-06-01T21:29:18.5491447Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:29:18.5492339Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-06-01T21:29:18.5493184Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-06-01T21:29:18.5494036Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-06-01T21:29:18.5494815Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-06-01T21:29:18.5495628Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-06-01T21:29:18.5496501Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-06-01T21:29:18.5497413Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-06-01T21:29:18.5498291Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-06-01T21:29:18.5499093Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-06-01T21:29:18.5500072Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-06-01T21:29:18.5501127Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-06-01T21:29:18.5502175Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-06-01T21:29:18.5503159Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-06-01T21:29:18.5504211Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-06-01T21:29:18.5547925Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-06-01T21:29:18.5549049Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-06-01T21:29:18.5550049Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-06-01T21:29:18.5551212Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-06-01T21:29:18.7331177Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-06-01T21:29:20.1811933Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-06-01T21:29:20.2394939Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-06-01T21:29:20.2732756Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-06-01T21:29:28.0219843Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-06-01T21:29:28.0220819Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-06-01T21:29:28.0221719Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-06-01T21:29:28.0222273Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-06-01T21:29:28.0222908Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-06-01T21:29:28.0223784Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-06-01T21:29:28.0224845Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-06-01T21:29:28.0225439Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-06-01T21:29:28.0226176Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-06-01T21:29:28.0226885Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-06-01T21:29:28.0227798Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-06-01T21:29:28.0228669Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-06-01T21:29:28.0229572Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-06-01T21:29:28.9811623Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-06-01T21:29:47.2026460Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-06-01T21:29:47.2027614Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-06-01T21:29:47.2028577Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-06-01T21:29:47.2029327Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-06-01T21:29:47.2030024Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-06-01T21:29:47.2030668Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-06-01T21:29:47.2031300Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-06-01T21:29:47.2031896Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-06-01T21:29:47.2032535Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/eigen'... 2025-06-01T21:29:47.2033203Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-06-01T21:29:47.2033903Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-06-01T21:29:47.2034571Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-06-01T21:29:47.2035149Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-06-01T21:29:47.2035789Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-06-01T21:29:47.2036384Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-06-01T21:29:47.2036959Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-06-01T21:29:47.2037601Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-06-01T21:29:47.2038263Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-06-01T21:29:47.2039151Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-06-01T21:29:47.3122529Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-06-01T21:29:47.4046603Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-01T21:29:47.4835867Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-01T21:29:47.6597840Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-06-01T21:29:48.2555932Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-06-01T21:29:48.4757577Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-06-01T21:29:56.3384033Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-06-01T21:29:56.4844811Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-06-01T21:29:59.1624103Z Submodule path 'third_party/composable_kernel': checked out '8086bbe3a78d931eb96fe12fdc014082e18d18d3' 2025-06-01T21:29:59.3119625Z Submodule path 'third_party/cpp-httplib': checked out '3b6597bba913d51161383657829b7e644e59c006' 2025-06-01T21:29:59.8645815Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-06-01T21:30:00.4532666Z Submodule path 'third_party/cudnn_frontend': checked out '666996fe3960f27170d1527e5579ba24c8d3380a' 2025-06-01T21:30:04.7672712Z Submodule path 'third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-01T21:30:06.3343753Z Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' 2025-06-01T21:30:07.6321668Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-06-01T21:30:07.6517102Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-06-01T21:30:07.6518283Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:30:07.6519403Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:30:07.6520963Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-06-01T21:30:07.6521959Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-06-01T21:30:07.6523087Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:30:07.6524149Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-06-01T21:30:07.6936538Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-06-01T21:30:17.4742942Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-06-01T21:30:17.4743707Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-06-01T21:30:17.4744559Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-06-01T21:30:17.4745362Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-06-01T21:30:17.4746060Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-06-01T21:30:17.4746720Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-06-01T21:30:17.6774957Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-06-01T21:30:20.2583745Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-06-01T21:30:20.8410248Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-06-01T21:30:25.2164743Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-06-01T21:30:25.5590276Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-06-01T21:30:25.7357672Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-06-01T21:30:26.5391587Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-06-01T21:30:27.1587767Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-06-01T21:30:27.1700925Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:30:27.1702059Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:30:31.0382654Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-06-01T21:30:31.0383706Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-06-01T21:30:33.4293447Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-06-01T21:30:38.9917161Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-06-01T21:30:40.1795019Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-06-01T21:30:40.3257487Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-06-01T21:30:40.7258707Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-06-01T21:30:40.9942435Z Submodule path 'third_party/gloo': checked out 'fe67c4bea940a117ff539d23f4110efc19404edb' 2025-06-01T21:30:41.2760807Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-06-01T21:30:41.3659917Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-06-01T21:30:41.3755636Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-06-01T21:30:52.3791047Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-06-01T21:30:55.6029693Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-06-01T21:30:55.8053315Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-06-01T21:30:56.1656181Z Submodule path 'third_party/kineto': checked out '20f652846f651fcae287f667d34bcf164c99f383' 2025-06-01T21:30:56.1795273Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:30:56.1796556Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:30:56.1797779Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:30:58.5221919Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-06-01T21:30:58.5224178Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-06-01T21:30:58.5225632Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-06-01T21:30:58.8157964Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-06-01T21:30:58.8379612Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:30:58.8380802Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:30:58.8381954Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:30:58.8383128Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:30:58.8384412Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:30:58.8385670Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:30:58.8387568Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:30:58.8388771Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:30:58.8869548Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-06-01T21:31:07.5339873Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-06-01T21:31:07.5341060Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-06-01T21:31:07.5342157Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-06-01T21:31:07.5343319Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-06-01T21:31:07.5344433Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-06-01T21:31:07.5345530Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-06-01T21:31:07.5346575Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-06-01T21:31:08.3423301Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-06-01T21:31:08.4644743Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-06-01T21:31:09.0140269Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-06-01T21:31:09.1153806Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-06-01T21:31:09.1248224Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:31:09.6713952Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-06-01T21:31:09.7231591Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-06-01T21:31:09.8425440Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-06-01T21:31:10.0521472Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-06-01T21:31:10.6655637Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-06-01T21:31:10.7794802Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-06-01T21:31:10.9475389Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-06-01T21:31:11.1956610Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-06-01T21:31:11.4874106Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-06-01T21:31:11.7889722Z Submodule path 'third_party/mimalloc': checked out '94036de6fe20bfd8a73d4a6d142fcf532ea604d9' 2025-06-01T21:31:12.5087075Z Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' 2025-06-01T21:31:17.1093509Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-06-01T21:31:17.1208009Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-06-01T21:31:18.2820039Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-06-01T21:31:18.4687679Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-01T21:31:19.1746942Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-06-01T21:31:19.1972000Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:31:19.1973256Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:31:19.1974364Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:31:19.1975444Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:31:19.1976820Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:31:19.1978350Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:31:19.1979666Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:31:19.1980798Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:31:19.2425416Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-06-01T21:31:29.8234009Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-06-01T21:31:29.8234946Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-06-01T21:31:29.8236019Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-06-01T21:31:29.8236901Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-06-01T21:31:29.8237784Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-06-01T21:31:29.8238718Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-06-01T21:31:29.8239580Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-06-01T21:31:29.9631089Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-06-01T21:31:30.2100373Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-06-01T21:31:30.2967244Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-06-01T21:31:30.8783456Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-06-01T21:31:30.9682912Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-06-01T21:31:31.0802889Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-06-01T21:31:31.2158411Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-06-01T21:31:31.2273329Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:31:31.2274772Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:31:33.5367185Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-06-01T21:31:33.5368308Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-06-01T21:31:34.2183842Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-06-01T21:31:34.4497345Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-01T21:31:41.3127363Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-06-01T21:31:41.3934825Z Submodule path 'third_party/pocketfft': checked out '9d3ab05a7fffbc71a492bc6a17be034e83e8f0fe' 2025-06-01T21:31:42.6236732Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-06-01T21:31:42.6348460Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:31:42.6349646Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-06-01T21:31:44.1565391Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-06-01T21:31:44.1566186Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-06-01T21:31:44.2364018Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-06-01T21:31:44.4777267Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-06-01T21:31:44.5445107Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-06-01T21:31:44.6259851Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-01T21:31:44.9306484Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-01T21:31:45.0608550Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-06-01T21:31:45.2523688Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-06-01T21:31:45.4205813Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-06-01T21:31:45.4352135Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:31:45.4353443Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:31:45.4354598Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:31:45.4355764Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:31:48.0615779Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-06-01T21:31:48.0616601Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-06-01T21:31:48.0617370Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-06-01T21:31:48.0618121Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-06-01T21:31:48.3748982Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-06-01T21:31:48.4723143Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-06-01T21:31:48.7348942Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-06-01T21:31:48.8779134Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-06-01T21:31:48.8866149Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:31:49.4572143Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-06-01T21:31:49.6189571Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-06-01T21:31:49.6401003Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-06-01T21:31:49.9531072Z Entering 'android/libs/fbjni' 2025-06-01T21:31:49.9868535Z Entering 'third_party/FP16' 2025-06-01T21:31:50.0198657Z Entering 'third_party/FXdiv' 2025-06-01T21:31:50.0521052Z Entering 'third_party/NNPACK' 2025-06-01T21:31:50.0852244Z Entering 'third_party/NVTX' 2025-06-01T21:31:50.1181053Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:31:50.1508985Z Entering 'third_party/XNNPACK' 2025-06-01T21:31:50.1864281Z Entering 'third_party/benchmark' 2025-06-01T21:31:50.2190056Z Entering 'third_party/composable_kernel' 2025-06-01T21:31:50.2525623Z Entering 'third_party/cpp-httplib' 2025-06-01T21:31:50.2854431Z Entering 'third_party/cpuinfo' 2025-06-01T21:31:50.3186480Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:31:50.3511802Z Entering 'third_party/cutlass' 2025-06-01T21:31:50.3848601Z Entering 'third_party/eigen' 2025-06-01T21:31:50.4195146Z Entering 'third_party/fbgemm' 2025-06-01T21:31:50.4518551Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:31:50.4862803Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:31:50.5208043Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:31:50.5534255Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:31:50.5874840Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:31:50.6209939Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:31:50.6547643Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:31:50.6901041Z Entering 'third_party/flash-attention' 2025-06-01T21:31:50.7271731Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:31:50.7608791Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:31:50.7975073Z Entering 'third_party/flatbuffers' 2025-06-01T21:31:50.8312510Z Entering 'third_party/fmt' 2025-06-01T21:31:50.8635426Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:31:50.8998070Z Entering 'third_party/gloo' 2025-06-01T21:31:50.9334969Z Entering 'third_party/googletest' 2025-06-01T21:31:50.9664113Z Entering 'third_party/ideep' 2025-06-01T21:31:50.9979757Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:31:51.0335576Z Entering 'third_party/ittapi' 2025-06-01T21:31:51.0661432Z Entering 'third_party/kineto' 2025-06-01T21:31:51.0985526Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:31:51.1309272Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:31:51.7582007Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:31:51.7957591Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:31:51.8305809Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:31:51.8649776Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:31:51.9017089Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:31:51.9363278Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:31:51.9712510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:31:52.0071595Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:31:52.0452080Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:31:52.0806382Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:31:52.1180593Z Entering 'third_party/kleidiai' 2025-06-01T21:31:52.1538995Z Entering 'third_party/mimalloc' 2025-06-01T21:31:52.1904673Z Entering 'third_party/nlohmann' 2025-06-01T21:31:52.2257231Z Entering 'third_party/onnx' 2025-06-01T21:31:52.2648897Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:31:52.3030863Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:31:52.3376134Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:31:52.3737767Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:31:52.4100140Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:31:52.4480612Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:31:52.4837560Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:31:52.5192051Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:31:52.5558365Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:31:52.5903007Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:31:52.6266304Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:31:52.6656449Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:31:52.7049527Z Entering 'third_party/pocketfft' 2025-06-01T21:31:52.7410162Z Entering 'third_party/protobuf' 2025-06-01T21:31:52.7747912Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:31:52.8110266Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:31:52.8486343Z Entering 'third_party/psimd' 2025-06-01T21:31:52.8845774Z Entering 'third_party/pthreadpool' 2025-06-01T21:31:52.9207216Z Entering 'third_party/pybind11' 2025-06-01T21:31:52.9562131Z Entering 'third_party/python-peachpy' 2025-06-01T21:31:52.9918087Z Entering 'third_party/sleef' 2025-06-01T21:31:53.0271027Z Entering 'third_party/tensorpipe' 2025-06-01T21:31:53.0617351Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:31:53.0979584Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:31:53.1337268Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:31:53.1696408Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:31:53.2043625Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:31:53.2557392Z ##[endgroup] 2025-06-01T21:31:53.2557825Z ##[group]Persisting credentials for submodules 2025-06-01T21:31:53.2570954Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-06-01T21:31:53.6127725Z Entering 'android/libs/fbjni' 2025-06-01T21:31:53.6746045Z Entering 'third_party/FP16' 2025-06-01T21:31:53.7315958Z Entering 'third_party/FXdiv' 2025-06-01T21:31:53.7885419Z Entering 'third_party/NNPACK' 2025-06-01T21:31:53.8474756Z Entering 'third_party/NVTX' 2025-06-01T21:31:53.9022381Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:31:53.9562825Z Entering 'third_party/XNNPACK' 2025-06-01T21:31:54.0131193Z Entering 'third_party/benchmark' 2025-06-01T21:31:54.0678801Z Entering 'third_party/composable_kernel' 2025-06-01T21:31:54.1248441Z Entering 'third_party/cpp-httplib' 2025-06-01T21:31:54.1816963Z Entering 'third_party/cpuinfo' 2025-06-01T21:31:54.2373048Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:31:54.2937689Z Entering 'third_party/cutlass' 2025-06-01T21:31:54.3509749Z Entering 'third_party/eigen' 2025-06-01T21:31:54.4076233Z Entering 'third_party/fbgemm' 2025-06-01T21:31:54.4620331Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:31:54.5190190Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:31:54.5765017Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:31:54.6330307Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:31:54.6935857Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:31:54.7514831Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:31:54.8085586Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:31:54.8689796Z Entering 'third_party/flash-attention' 2025-06-01T21:31:54.9236597Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:31:54.9805960Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:31:55.0435820Z Entering 'third_party/flatbuffers' 2025-06-01T21:31:55.1011529Z Entering 'third_party/fmt' 2025-06-01T21:31:55.1567554Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:31:55.2122569Z Entering 'third_party/gloo' 2025-06-01T21:31:55.2676151Z Entering 'third_party/googletest' 2025-06-01T21:31:55.3249599Z Entering 'third_party/ideep' 2025-06-01T21:31:55.3794173Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:31:55.4379488Z Entering 'third_party/ittapi' 2025-06-01T21:31:55.4953606Z Entering 'third_party/kineto' 2025-06-01T21:31:55.5520863Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:31:55.6083669Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:31:55.6691955Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:31:55.7276287Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:31:55.7841685Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:31:55.8410125Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:31:55.9017264Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:31:55.9590694Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:31:56.0161848Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:31:56.0744393Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:31:56.1370108Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:31:56.1946468Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:31:56.2529406Z Entering 'third_party/kleidiai' 2025-06-01T21:31:56.3096902Z Entering 'third_party/mimalloc' 2025-06-01T21:31:56.3640891Z Entering 'third_party/nlohmann' 2025-06-01T21:31:56.4203519Z Entering 'third_party/onnx' 2025-06-01T21:31:56.4769728Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:31:56.5363910Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:31:56.5916817Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:31:56.6477565Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:31:56.7050320Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:31:56.7639116Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:31:56.8239123Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:31:56.8804690Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:31:56.9368164Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:31:56.9941763Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:31:57.0534108Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:31:57.1128047Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:31:57.1771059Z Entering 'third_party/pocketfft' 2025-06-01T21:31:57.2334936Z Entering 'third_party/protobuf' 2025-06-01T21:31:57.2882102Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:31:57.3443328Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:31:57.4022502Z Entering 'third_party/psimd' 2025-06-01T21:31:57.4574196Z Entering 'third_party/pthreadpool' 2025-06-01T21:31:57.5124636Z Entering 'third_party/pybind11' 2025-06-01T21:31:57.5674477Z Entering 'third_party/python-peachpy' 2025-06-01T21:31:57.6216230Z Entering 'third_party/sleef' 2025-06-01T21:31:57.6769720Z Entering 'third_party/tensorpipe' 2025-06-01T21:31:57.7305931Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:31:57.7860933Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:31:57.8424078Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:31:57.8999723Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:31:57.9584389Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:31:58.0317244Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-06-01T21:31:58.3918859Z Entering 'android/libs/fbjni' 2025-06-01T21:31:58.4450063Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-06-01T21:31:58.4578300Z Entering 'third_party/FP16' 2025-06-01T21:31:58.5107715Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-06-01T21:31:58.5239860Z Entering 'third_party/FXdiv' 2025-06-01T21:31:58.5774493Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-06-01T21:31:58.5902477Z Entering 'third_party/NNPACK' 2025-06-01T21:31:58.6466175Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-06-01T21:31:58.6600044Z Entering 'third_party/NVTX' 2025-06-01T21:31:58.7124698Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-06-01T21:31:58.7253033Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:31:58.7795732Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-06-01T21:31:58.7923296Z Entering 'third_party/XNNPACK' 2025-06-01T21:31:58.8469428Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-06-01T21:31:58.8639635Z Entering 'third_party/benchmark' 2025-06-01T21:31:58.9170097Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:31:58.9297980Z Entering 'third_party/composable_kernel' 2025-06-01T21:31:58.9822268Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-06-01T21:31:58.9958412Z Entering 'third_party/cpp-httplib' 2025-06-01T21:31:59.0499438Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-06-01T21:31:59.0632328Z Entering 'third_party/cpuinfo' 2025-06-01T21:31:59.1163310Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-06-01T21:31:59.1295807Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:31:59.1831533Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-06-01T21:31:59.1959022Z Entering 'third_party/cutlass' 2025-06-01T21:31:59.2480977Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-06-01T21:31:59.2619769Z Entering 'third_party/eigen' 2025-06-01T21:31:59.3152432Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/eigen/config remote.origin.url 2025-06-01T21:31:59.3283760Z Entering 'third_party/fbgemm' 2025-06-01T21:31:59.3808453Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-06-01T21:31:59.3924940Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:31:59.4470073Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-06-01T21:31:59.4596412Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:31:59.5125316Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-06-01T21:31:59.5264565Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:31:59.5804866Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-06-01T21:31:59.5932339Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:31:59.6473969Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-06-01T21:31:59.6614721Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:31:59.7147870Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-06-01T21:31:59.7293968Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:31:59.7840262Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-06-01T21:31:59.7973441Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:31:59.8510703Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-06-01T21:31:59.8692045Z Entering 'third_party/flash-attention' 2025-06-01T21:31:59.9233168Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-06-01T21:31:59.9362882Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:31:59.9908392Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-06-01T21:32:00.0046880Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:32:00.0604236Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-06-01T21:32:00.0760247Z Entering 'third_party/flatbuffers' 2025-06-01T21:32:00.1294582Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-06-01T21:32:00.1431146Z Entering 'third_party/fmt' 2025-06-01T21:32:00.1950218Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-06-01T21:32:00.2076481Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:32:00.2604419Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-06-01T21:32:00.2733761Z Entering 'third_party/gloo' 2025-06-01T21:32:00.3258321Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-06-01T21:32:00.3390126Z Entering 'third_party/googletest' 2025-06-01T21:32:00.3937934Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:32:00.4068918Z Entering 'third_party/ideep' 2025-06-01T21:32:00.4623451Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-06-01T21:32:00.4737735Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:32:00.5274635Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-06-01T21:32:00.5432910Z Entering 'third_party/ittapi' 2025-06-01T21:32:00.5965559Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-06-01T21:32:00.6094277Z Entering 'third_party/kineto' 2025-06-01T21:32:00.6670296Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-06-01T21:32:00.6787407Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:32:00.7322828Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-06-01T21:32:00.7454869Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:32:00.8004831Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-06-01T21:32:00.8136539Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:32:00.8684571Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-06-01T21:32:00.8815713Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:32:00.9360673Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-06-01T21:32:00.9518905Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:32:01.0054127Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-06-01T21:32:01.0165592Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:32:01.0713115Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-06-01T21:32:01.0862165Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:32:01.1403451Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-06-01T21:32:01.1530714Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:32:01.2078366Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:32:01.2208809Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:32:01.2766568Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-06-01T21:32:01.2903976Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:32:01.3448813Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-06-01T21:32:01.3595110Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:32:01.4132027Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-06-01T21:32:01.4266967Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:32:01.4820255Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-06-01T21:32:01.4972399Z Entering 'third_party/kleidiai' 2025-06-01T21:32:01.5505166Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-06-01T21:32:01.5634381Z Entering 'third_party/mimalloc' 2025-06-01T21:32:01.6164154Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-06-01T21:32:01.6293977Z Entering 'third_party/nlohmann' 2025-06-01T21:32:01.6831121Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-06-01T21:32:01.6963202Z Entering 'third_party/onnx' 2025-06-01T21:32:01.7495167Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-06-01T21:32:01.7628561Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:32:01.8178557Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:32:01.8327069Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:32:01.8862179Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-06-01T21:32:01.8987941Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:32:01.9526183Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:32:01.9654956Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:32:02.0211156Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:32:02.0347397Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:32:02.0922268Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-06-01T21:32:02.1086870Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:32:02.1677360Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-06-01T21:32:02.1814626Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:32:02.2415799Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-06-01T21:32:02.2553011Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:32:02.3086880Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-06-01T21:32:02.3213733Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:32:02.3758654Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-06-01T21:32:02.3874254Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:32:02.4426554Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-06-01T21:32:02.4562756Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:32:02.5103157Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-06-01T21:32:02.5252154Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:32:02.5782823Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-06-01T21:32:02.5951818Z Entering 'third_party/pocketfft' 2025-06-01T21:32:02.6536615Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-06-01T21:32:02.6666645Z Entering 'third_party/protobuf' 2025-06-01T21:32:02.8760874Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-06-01T21:32:02.8910980Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:32:02.9447255Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-06-01T21:32:02.9579571Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:32:03.0113326Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:32:03.0262010Z Entering 'third_party/psimd' 2025-06-01T21:32:03.0797824Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-06-01T21:32:03.0929012Z Entering 'third_party/pthreadpool' 2025-06-01T21:32:03.1527311Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-06-01T21:32:03.1653895Z Entering 'third_party/pybind11' 2025-06-01T21:32:03.2245521Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:32:03.2374063Z Entering 'third_party/python-peachpy' 2025-06-01T21:32:03.2903494Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-06-01T21:32:03.3031953Z Entering 'third_party/sleef' 2025-06-01T21:32:03.3556968Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-06-01T21:32:03.3684881Z Entering 'third_party/tensorpipe' 2025-06-01T21:32:03.4212835Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-06-01T21:32:03.4324605Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:32:03.4859429Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-06-01T21:32:03.4987147Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:32:03.5536673Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-06-01T21:32:03.5667966Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:32:03.6209165Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-06-01T21:32:03.6342301Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:32:03.6882648Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-06-01T21:32:03.6997785Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:32:03.7543071Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-06-01T21:32:03.8134411Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-06-01T21:32:04.1667687Z Entering 'android/libs/fbjni' 2025-06-01T21:32:04.2052559Z Entering 'third_party/FP16' 2025-06-01T21:32:04.2448401Z Entering 'third_party/FXdiv' 2025-06-01T21:32:04.2808028Z Entering 'third_party/NNPACK' 2025-06-01T21:32:04.3177018Z Entering 'third_party/NVTX' 2025-06-01T21:32:04.3539790Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:32:04.3893115Z Entering 'third_party/XNNPACK' 2025-06-01T21:32:04.4283415Z Entering 'third_party/benchmark' 2025-06-01T21:32:04.4654619Z Entering 'third_party/composable_kernel' 2025-06-01T21:32:04.5015235Z Entering 'third_party/cpp-httplib' 2025-06-01T21:32:04.5398565Z Entering 'third_party/cpuinfo' 2025-06-01T21:32:04.5757582Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:32:04.6126422Z Entering 'third_party/cutlass' 2025-06-01T21:32:04.6488292Z Entering 'third_party/eigen' 2025-06-01T21:32:04.6877002Z Entering 'third_party/fbgemm' 2025-06-01T21:32:04.7262833Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:32:04.7621764Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:32:04.7987305Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:32:04.8355136Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:32:04.8721078Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:32:04.9080261Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:32:04.9434649Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:32:04.9812667Z Entering 'third_party/flash-attention' 2025-06-01T21:32:05.0162604Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:32:05.0552671Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:32:05.0975220Z Entering 'third_party/flatbuffers' 2025-06-01T21:32:05.1339149Z Entering 'third_party/fmt' 2025-06-01T21:32:05.1704790Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:32:05.2065915Z Entering 'third_party/gloo' 2025-06-01T21:32:05.2428959Z Entering 'third_party/googletest' 2025-06-01T21:32:05.2836773Z Entering 'third_party/ideep' 2025-06-01T21:32:05.3210296Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:32:05.3581535Z Entering 'third_party/ittapi' 2025-06-01T21:32:05.3941539Z Entering 'third_party/kineto' 2025-06-01T21:32:05.4303099Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:32:05.4651860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:32:05.5029216Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:32:05.5399220Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:32:05.5774237Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:32:05.6136223Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:32:05.6530343Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:32:05.6900991Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:32:05.7276842Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:32:05.7644735Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:32:05.8019209Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:32:05.8389169Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:32:05.8770200Z Entering 'third_party/kleidiai' 2025-06-01T21:32:05.9127751Z Entering 'third_party/mimalloc' 2025-06-01T21:32:05.9488404Z Entering 'third_party/nlohmann' 2025-06-01T21:32:05.9854242Z Entering 'third_party/onnx' 2025-06-01T21:32:06.0240763Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:32:06.0615715Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:32:06.0968958Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:32:06.1321640Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:32:06.1682577Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:32:06.2049420Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:32:06.2410493Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:32:06.2771661Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:32:06.3125527Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:32:06.3477471Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:32:06.3850668Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:32:06.4234803Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:32:06.4632164Z Entering 'third_party/pocketfft' 2025-06-01T21:32:06.4988330Z Entering 'third_party/protobuf' 2025-06-01T21:32:06.5321389Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:32:06.5671355Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:32:06.6041906Z Entering 'third_party/psimd' 2025-06-01T21:32:06.6385916Z Entering 'third_party/pthreadpool' 2025-06-01T21:32:06.6730558Z Entering 'third_party/pybind11' 2025-06-01T21:32:06.7088117Z Entering 'third_party/python-peachpy' 2025-06-01T21:32:06.7433055Z Entering 'third_party/sleef' 2025-06-01T21:32:06.7790868Z Entering 'third_party/tensorpipe' 2025-06-01T21:32:06.8123320Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:32:06.8470666Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:32:06.8837207Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:32:06.9184468Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:32:06.9517537Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:32:06.9998231Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:'" 2025-06-01T21:32:07.4203806Z Entering 'android/libs/fbjni' 2025-06-01T21:32:07.4569747Z Entering 'third_party/FP16' 2025-06-01T21:32:07.4915123Z Entering 'third_party/FXdiv' 2025-06-01T21:32:07.5269899Z Entering 'third_party/NNPACK' 2025-06-01T21:32:07.5652097Z Entering 'third_party/NVTX' 2025-06-01T21:32:07.5999223Z Entering 'third_party/VulkanMemoryAllocator' 2025-06-01T21:32:07.8459388Z Entering 'third_party/XNNPACK' 2025-06-01T21:32:07.8834057Z Entering 'third_party/benchmark' 2025-06-01T21:32:07.9187983Z Entering 'third_party/composable_kernel' 2025-06-01T21:32:07.9559067Z Entering 'third_party/cpp-httplib' 2025-06-01T21:32:07.9910872Z Entering 'third_party/cpuinfo' 2025-06-01T21:32:08.0273868Z Entering 'third_party/cudnn_frontend' 2025-06-01T21:32:08.0627701Z Entering 'third_party/cutlass' 2025-06-01T21:32:08.1001018Z Entering 'third_party/eigen' 2025-06-01T21:32:08.1366999Z Entering 'third_party/fbgemm' 2025-06-01T21:32:08.1715790Z Entering 'third_party/fbgemm/external/asmjit' 2025-06-01T21:32:08.2087748Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-06-01T21:32:08.2477859Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-06-01T21:32:08.2844316Z Entering 'third_party/fbgemm/external/cutlass' 2025-06-01T21:32:08.3222399Z Entering 'third_party/fbgemm/external/googletest' 2025-06-01T21:32:08.3587557Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-06-01T21:32:08.3958930Z Entering 'third_party/fbgemm/external/json' 2025-06-01T21:32:08.4340648Z Entering 'third_party/flash-attention' 2025-06-01T21:32:08.4685626Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-06-01T21:32:08.5077705Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-06-01T21:32:08.5472711Z Entering 'third_party/flatbuffers' 2025-06-01T21:32:08.5832480Z Entering 'third_party/fmt' 2025-06-01T21:32:08.6192575Z Entering 'third_party/gemmlowp/gemmlowp' 2025-06-01T21:32:08.6552504Z Entering 'third_party/gloo' 2025-06-01T21:32:08.6913413Z Entering 'third_party/googletest' 2025-06-01T21:32:08.7268547Z Entering 'third_party/ideep' 2025-06-01T21:32:08.7616322Z Entering 'third_party/ideep/mkl-dnn' 2025-06-01T21:32:08.8005016Z Entering 'third_party/ittapi' 2025-06-01T21:32:08.8360557Z Entering 'third_party/kineto' 2025-06-01T21:32:08.8707381Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-06-01T21:32:08.9061231Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-06-01T21:32:08.9859844Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-06-01T21:32:09.0237050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-06-01T21:32:09.0624829Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-06-01T21:32:09.0981960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-06-01T21:32:09.1369822Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-06-01T21:32:09.1766764Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-06-01T21:32:09.2139765Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-06-01T21:32:09.2523818Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-06-01T21:32:09.2918533Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-06-01T21:32:09.3298749Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-06-01T21:32:09.3689665Z Entering 'third_party/kleidiai' 2025-06-01T21:32:09.4084867Z Entering 'third_party/mimalloc' 2025-06-01T21:32:09.4446561Z Entering 'third_party/nlohmann' 2025-06-01T21:32:09.4806665Z Entering 'third_party/onnx' 2025-06-01T21:32:09.5171931Z Entering 'third_party/onnx/third_party/pybind11' 2025-06-01T21:32:09.5548487Z Entering 'third_party/opentelemetry-cpp' 2025-06-01T21:32:09.5878751Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-06-01T21:32:09.6236311Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-06-01T21:32:09.6596549Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-06-01T21:32:09.6926124Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-06-01T21:32:09.7275183Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-06-01T21:32:09.7659211Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-06-01T21:32:09.8003354Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-06-01T21:32:09.8323065Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-06-01T21:32:09.8708071Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-06-01T21:32:09.9068609Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-06-01T21:32:09.9442768Z Entering 'third_party/pocketfft' 2025-06-01T21:32:09.9792705Z Entering 'third_party/protobuf' 2025-06-01T21:32:10.0181904Z Entering 'third_party/protobuf/third_party/benchmark' 2025-06-01T21:32:10.0577528Z Entering 'third_party/protobuf/third_party/googletest' 2025-06-01T21:32:10.0968187Z Entering 'third_party/psimd' 2025-06-01T21:32:10.1401023Z Entering 'third_party/pthreadpool' 2025-06-01T21:32:10.1819824Z Entering 'third_party/pybind11' 2025-06-01T21:32:10.2178711Z Entering 'third_party/python-peachpy' 2025-06-01T21:32:10.2560876Z Entering 'third_party/sleef' 2025-06-01T21:32:10.2922305Z Entering 'third_party/tensorpipe' 2025-06-01T21:32:10.3268028Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-06-01T21:32:10.3691829Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-06-01T21:32:10.4055196Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-06-01T21:32:10.4476789Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-06-01T21:32:10.4830243Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-06-01T21:32:10.5325745Z ##[endgroup] 2025-06-01T21:32:10.5637984Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-06-01T21:32:10.5853420Z f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:32:10.6156127Z Prepare all required actions 2025-06-01T21:32:10.6223834Z ##[group]Run ./.github/actions/setup-win 2025-06-01T21:32:10.6224284Z with: 2025-06-01T21:32:10.6224599Z cuda-version: cpu 2025-06-01T21:32:10.6224926Z env: 2025-06-01T21:32:10.6225179Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:10.6225513Z ##[endgroup] 2025-06-01T21:32:10.6301741Z ##[group]Run set -euo pipefail 2025-06-01T21:32:10.6302038Z set -euo pipefail 2025-06-01T21:32:10.6302310Z function get_ec2_metadata() { 2025-06-01T21:32:10.6302654Z  # Pulled from instance metadata endpoint for EC2 2025-06-01T21:32:10.6303236Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-01T21:32:10.6303750Z  category=$1 2025-06-01T21:32:10.6304609Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-06-01T21:32:10.6305451Z } 2025-06-01T21:32:10.6305677Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-01T21:32:10.6306047Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-01T21:32:10.6306475Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-01T21:32:10.6306837Z echo "system info $(uname -a)" 2025-06-01T21:32:10.6326049Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:10.6326472Z env: 2025-06-01T21:32:10.6326649Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:10.6326877Z ##[endgroup] 2025-06-01T21:32:10.6875552Z ami-id: ami-047591c381c19028d 2025-06-01T21:32:10.7352675Z instance-id: i-0f21781113bd7224a 2025-06-01T21:32:10.7827295Z instance-type: c5d.4xlarge 2025-06-01T21:32:10.8026045Z system info MSYS_NT-10.0-17763 EC2AMAZ-DD9BHOF 3.5.4-395fda67.x86_64 2024-11-25 09:49 UTC x86_64 Msys 2025-06-01T21:32:10.8144185Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-06-01T21:32:10.8145141Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-06-01T21:32:10.8161396Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:32:10.8161859Z env: 2025-06-01T21:32:10.8162227Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:10.8162453Z ##[endgroup] 2025-06-01T21:32:11.1850058Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:32:11.1900640Z Finished 2025-06-01T21:32:11.2212219Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-06-01T21:32:11.2212724Z # Windows conda is baked into the AMI at this location 2025-06-01T21:32:11.2213157Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-06-01T21:32:11.2213481Z  2025-06-01T21:32:11.2213690Z { 2025-06-01T21:32:11.2213966Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-06-01T21:32:11.2214372Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-06-01T21:32:11.2214719Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-06-01T21:32:11.2215031Z } >> "${GITHUB_ENV}" 2025-06-01T21:32:11.2234436Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:11.2234902Z env: 2025-06-01T21:32:11.2235166Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:11.2235424Z ##[endgroup] 2025-06-01T21:32:11.2528478Z ##[group]Run set +e 2025-06-01T21:32:11.2528748Z set +e 2025-06-01T21:32:11.2528956Z set -x 2025-06-01T21:32:11.2529144Z  2025-06-01T21:32:11.2529380Z PYTHON3=$(${CONDA_RUN} which python3) 2025-06-01T21:32:11.2529684Z EXIT_CODE=$? 2025-06-01T21:32:11.2529886Z  2025-06-01T21:32:11.2531497Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-06-01T21:32:11.2531923Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-06-01T21:32:11.2532307Z  2025-06-01T21:32:11.2532519Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-06-01T21:32:11.2532864Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-06-01T21:32:11.2533157Z else 2025-06-01T21:32:11.2533610Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-06-01T21:32:11.2534338Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-06-01T21:32:11.2535001Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-06-01T21:32:11.2535571Z  # needed. In both cases, Python binary is just called python 2025-06-01T21:32:11.2535977Z  PYTHON=$(${CONDA_RUN} which python) 2025-06-01T21:32:11.2536273Z  EXIT_CODE=$? 2025-06-01T21:32:11.2536548Z  2025-06-01T21:32:11.2536760Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-06-01T21:32:11.2537256Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-06-01T21:32:11.2537670Z  2025-06-01T21:32:11.2537955Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-06-01T21:32:11.2538460Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-06-01T21:32:11.2538932Z  # here pointing to Python 2025-06-01T21:32:11.2539231Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-06-01T21:32:11.2539490Z  2025-06-01T21:32:11.2539695Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-06-01T21:32:11.2540013Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-06-01T21:32:11.2540312Z  else 2025-06-01T21:32:11.2540541Z  echo "Found no Python using ${CONDA_RUN}" 2025-06-01T21:32:11.2540836Z  fi 2025-06-01T21:32:11.2541005Z fi 2025-06-01T21:32:11.2561724Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:11.2562143Z env: 2025-06-01T21:32:11.2562397Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:11.2562804Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:11.2563362Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:11.2563983Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:11.2564324Z ##[endgroup] 2025-06-01T21:32:11.2808891Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-06-01T21:32:17.3108938Z which: no python3 in (/c/Jenkins/Miniconda3:/c/Jenkins/Miniconda3/Library/mingw-w64/bin:/c/Jenkins/Miniconda3/Library/usr/bin:/c/Jenkins/Miniconda3/Library/bin:/c/Jenkins/Miniconda3/Scripts:/c/Jenkins/Miniconda3/bin:/c/Jenkins/Miniconda3/condabin:/c/Windows/system32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Windows/System32/OpenSSH:/c/Program Files/Amazon/cfn-bootstrap:/c/ProgramData/chocolatey/bin:/c/Program Files/Amazon/AWSCLIV2:/cmd:/mingw64/bin:/usr/bin:/c/Program Files (x86)/Windows Kits/10/Windows Performance Toolkit:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-06-01T21:32:17.3136334Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-06-01T21:32:17.3962246Z + PYTHON3= 2025-06-01T21:32:17.3962483Z + EXIT_CODE=1 2025-06-01T21:32:17.3962764Z + [[ 1 == \0 ]] 2025-06-01T21:32:17.4024880Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-06-01T21:32:19.1104994Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-06-01T21:32:19.1105333Z + EXIT_CODE=0 2025-06-01T21:32:19.1105504Z + [[ 0 == \0 ]] 2025-06-01T21:32:19.1105935Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-06-01T21:32:19.1107442Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-06-01T21:32:19.1226628Z ++ echo /c/Jenkins/Miniconda3/python 2025-06-01T21:32:19.1284454Z ++ sed s/python/python3/ 2025-06-01T21:32:19.1355252Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-06-01T21:32:19.1355698Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-06-01T21:32:19.1544140Z ++ dirname /c/Jenkins/Miniconda3/python 2025-06-01T21:32:19.1617701Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-06-01T21:32:19.1618030Z + echo /c/Jenkins/Miniconda3 2025-06-01T21:32:19.1758090Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-06-01T21:32:19.1758699Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-06-01T21:32:19.1759140Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-06-01T21:32:19.1781368Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:19.1781823Z env: 2025-06-01T21:32:19.1782001Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:19.1782381Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:19.1782894Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:19.1783360Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:19.1783707Z ##[endgroup] 2025-06-01T21:32:19.2790422Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-06-01T21:32:19.2791389Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-06-01T21:32:19.2792165Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-06-01T21:32:19.2792619Z # that it doesn't interfere 2025-06-01T21:32:19.2793080Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-06-01T21:32:19.2808761Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:32:19.2809215Z env: 2025-06-01T21:32:19.2809399Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:19.2809771Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:19.2810292Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:19.2811419Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:19.2811816Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:19.2812098Z ##[endgroup] 2025-06-01T21:32:19.6400188Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:32:19.6467221Z Finished 2025-06-01T21:32:20.4162116Z ##[group]Run choco install handle -y 2025-06-01T21:32:20.4162457Z choco install handle -y 2025-06-01T21:32:20.4162760Z handle C:\actions-runner\_work\ 2025-06-01T21:32:20.4179191Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:32:20.4179646Z env: 2025-06-01T21:32:20.4179834Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:20.4180211Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:20.4180721Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:20.4181290Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:20.4181700Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:20.4181989Z ##[endgroup] 2025-06-01T21:32:20.7866989Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:32:20.7935319Z Finished 2025-06-01T21:32:22.6048347Z Chocolatey v2.4.2 2025-06-01T21:32:22.7655452Z Installing the following packages: 2025-06-01T21:32:22.7662045Z handle 2025-06-01T21:32:22.7667512Z By installing, you accept licenses for the packages. 2025-06-01T21:32:23.7866687Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-06-01T21:32:23.9044931Z 2025-06-01T21:32:23.9045640Z Progress: Downloading Handle 5.0... 15% 2025-06-01T21:32:23.9046156Z Progress: Downloading Handle 5.0... 45% 2025-06-01T21:32:23.9047795Z Progress: Downloading Handle 5.0... 75% 2025-06-01T21:32:23.9048133Z Progress: Downloading Handle 5.0... 100% 2025-06-01T21:32:24.0960262Z 2025-06-01T21:32:24.0960892Z handle v5.0.0 [Approved] 2025-06-01T21:32:24.1160177Z handle package files install completed. Performing other installation steps. 2025-06-01T21:32:25.6256000Z Downloading Handle 2025-06-01T21:32:25.6256374Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-06-01T21:32:25.7072994Z 2025-06-01T21:32:25.7090029Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-06-01T21:32:25.7216831Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-06-01T21:32:25.7231733Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-06-01T21:32:25.7252021Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-06-01T21:32:25.7256047Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-06-01T21:32:25.7263193Z Download of Handle.zip (729.82 KB) completed. 2025-06-01T21:32:28.7933352Z Hashes match. 2025-06-01T21:32:28.8208174Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-06-01T21:32:29.1384848Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-06-01T21:32:29.1435517Z HKEY_CURRENT_USER\Software\Sysinternals 2025-06-01T21:32:29.1595360Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-06-01T21:32:29.6029592Z ShimGen has successfully created a shim for handle.exe 2025-06-01T21:32:29.7901555Z ShimGen has successfully created a shim for handle64.exe 2025-06-01T21:32:29.9667194Z ShimGen has successfully created a shim for handle64a.exe 2025-06-01T21:32:29.9938803Z The install of handle was successful. 2025-06-01T21:32:29.9942029Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-06-01T21:32:30.0044533Z 2025-06-01T21:32:30.0044899Z Chocolatey installed 1/1 packages. 2025-06-01T21:32:30.0045344Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-06-01T21:32:30.0055556Z 2025-06-01T21:32:30.0055824Z Enjoy using Chocolatey? Explore more amazing features to take your 2025-06-01T21:32:30.0056508Z experience to the next level at 2025-06-01T21:32:30.0056804Z https://chocolatey.org/compare 2025-06-01T21:32:30.1051694Z 2025-06-01T21:32:30.1052146Z Nthandle v5.0 - Handle viewer 2025-06-01T21:32:30.1052484Z Copyright (C) 1997-2022 Mark Russinovich 2025-06-01T21:32:30.1052786Z Sysinternals - www.sysinternals.com 2025-06-01T21:32:30.1052977Z 2025-06-01T21:32:30.2159475Z powershell.exe pid: 4956 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:32:30.2160125Z handle.exe pid: 5892 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:32:30.2160679Z handle.exe pid: 3076 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:32:30.2161232Z handle64.exe pid: 3880 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:32:30.2505305Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-06-01T21:32:30.2505739Z with: 2025-06-01T21:32:30.2505932Z shell: bash 2025-06-01T21:32:30.2506125Z timeout_minutes: 5 2025-06-01T21:32:30.2506326Z max_attempts: 5 2025-06-01T21:32:30.2506527Z retry_wait_seconds: 30 2025-06-01T21:32:30.2506833Z command: set -eu python3 -m pip install 'xdoctest>=1.1.0' 2025-06-01T21:32:30.2507177Z polling_interval_seconds: 1 2025-06-01T21:32:30.2507422Z warning_on_retry: true 2025-06-01T21:32:30.2507642Z continue_on_error: false 2025-06-01T21:32:30.2507860Z env: 2025-06-01T21:32:30.2508026Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:30.2508461Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:30.2509024Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:30.2509500Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:30.2509927Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:30.2510211Z ##[endgroup] 2025-06-01T21:32:33.1953387Z Collecting xdoctest>=1.1.0 2025-06-01T21:32:33.3871872Z Downloading xdoctest-1.2.0-py3-none-any.whl.metadata (37 kB) 2025-06-01T21:32:33.7800992Z Downloading xdoctest-1.2.0-py3-none-any.whl (151 kB) 2025-06-01T21:32:33.8563921Z ---------------------------------------- 151.2/151.2 kB 1.8 MB/s eta 0:00:00 2025-06-01T21:32:35.3531756Z Installing collected packages: xdoctest 2025-06-01T21:32:35.3533418Z Attempting uninstall: xdoctest 2025-06-01T21:32:35.3557595Z Found existing installation: xdoctest 1.0.2 2025-06-01T21:32:35.3681528Z Uninstalling xdoctest-1.0.2: 2025-06-01T21:32:35.3723090Z Successfully uninstalled xdoctest-1.0.2 2025-06-01T21:32:35.4807069Z WARNING: The script xdoctest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T21:32:35.4808164Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:32:35.5325362Z Successfully installed xdoctest-1.2.0 2025-06-01T21:32:36.4267491Z Command completed after 1 attempt(s). 2025-06-01T21:32:36.4443579Z Prepare all required actions 2025-06-01T21:32:36.4495690Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-06-01T21:32:36.4496016Z with: 2025-06-01T21:32:36.4496728Z github-token: *** 2025-06-01T21:32:36.4496931Z env: 2025-06-01T21:32:36.4497101Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:36.4497471Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:36.4497988Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:36.4498513Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:36.4498956Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:36.4499237Z ##[endgroup] 2025-06-01T21:32:36.4583853Z ##[group]Run set -eux 2025-06-01T21:32:36.4584243Z set -eux 2025-06-01T21:32:36.4584647Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-06-01T21:32:36.4617071Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:36.4617512Z env: 2025-06-01T21:32:36.4617705Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:36.4618080Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:36.4618607Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:36.4619075Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:36.4619476Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:36.4620047Z GITHUB_TOKEN: *** 2025-06-01T21:32:36.4620249Z ##[endgroup] 2025-06-01T21:32:36.4819534Z + python3 .github/scripts/get_workflow_job_id.py 15379340894 i-0f21781113bd7224a 2025-06-01T21:32:37.0916458Z setting job-id=43268628846 2025-06-01T21:32:37.0916970Z setting job-name=win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:32:37.1175874Z ##[group]Run # Windows conda doesn't have python3 binary, only python, but it's python3 2025-06-01T21:32:37.1176562Z # Windows conda doesn't have python3 binary, only python, but it's python3 2025-06-01T21:32:37.1177185Z ${CONDA_RUN} python -m pip install psutil==5.9.1 dataclasses_json==0.6.7 nvidia-ml-py==11.525.84 2025-06-01T21:32:37.1178148Z ${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-06-01T21:32:37.1178973Z echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}" 2025-06-01T21:32:37.1198396Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:37.1198892Z env: 2025-06-01T21:32:37.1199114Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:37.1199525Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:37.1200152Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:37.1200677Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:37.1201118Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:37.1201440Z JOB_ID: 43268628846 2025-06-01T21:32:37.1201844Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:32:37.1202349Z WORKFLOW_NAME: trunk 2025-06-01T21:32:37.1202573Z WORKFLOW_RUN_ID: 15379340894 2025-06-01T21:32:37.1202860Z MONITOR_LOG_INTERVAL: 5 2025-06-01T21:32:37.1203128Z MONITOR_DATA_COLLECT_INTERVAL: 1 2025-06-01T21:32:37.1203383Z ##[endgroup] 2025-06-01T21:32:39.3108249Z Requirement already satisfied: psutil==5.9.1 in c:\jenkins\miniconda3\lib\site-packages (5.9.1) 2025-06-01T21:32:39.5675134Z Collecting dataclasses_json==0.6.7 2025-06-01T21:32:39.7525364Z Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-06-01T21:32:39.8118628Z Collecting nvidia-ml-py==11.525.84 2025-06-01T21:32:39.8174286Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl.metadata (8.6 kB) 2025-06-01T21:32:39.9349989Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7) 2025-06-01T21:32:39.9402044Z Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-06-01T21:32:39.9704112Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7) 2025-06-01T21:32:39.9752851Z Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-06-01T21:32:39.9974965Z 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-06-01T21:32:40.0216461Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) 2025-06-01T21:32:40.0263312Z Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-06-01T21:32:40.0363756Z 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-06-01T21:32:40.0449679Z Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-06-01T21:32:40.0670397Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl (34 kB) 2025-06-01T21:32:40.0922761Z Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-06-01T21:32:40.1076490Z ---------------------------------------- 50.9/50.9 kB 2.5 MB/s eta 0:00:00 2025-06-01T21:32:40.1122520Z Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-06-01T21:32:40.1253610Z Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-06-01T21:32:40.9072516Z Installing collected packages: nvidia-ml-py, mypy-extensions, marshmallow, typing-inspect, dataclasses_json 2025-06-01T21:32:41.1857008Z Successfully installed dataclasses_json-0.6.7 marshmallow-3.26.1 mypy-extensions-1.1.0 nvidia-ml-py-11.525.84 typing-inspect-0.9.0 2025-06-01T21:32:41.4048450Z ##[group]Run seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 2025-06-01T21:32:41.4048939Z with: 2025-06-01T21:32:41.4049148Z name: win-vs2022-cpu-py3 2025-06-01T21:32:41.4049391Z path: C:\15379340894\build-results 2025-06-01T21:32:41.4049644Z s3-bucket: gha-artifacts 2025-06-01T21:32:41.4049872Z region: us-east-1 2025-06-01T21:32:41.4050059Z env: 2025-06-01T21:32:41.4050237Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:41.4050600Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:41.4051119Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:41.4051589Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:41.4051973Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:41.4052256Z ##[endgroup] 2025-06-01T21:32:41.9510209Z (node:1268) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-06-01T21:32:41.9510693Z 2025-06-01T21:32:41.9510861Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-06-01T21:32:41.9511429Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-06-01T21:32:41.9512066Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-06-01T21:32:42.0799215Z Found 4 objects with prefix pytorch/pytorch/15379340894/win-vs2022-cpu-py3/ 2025-06-01T21:32:42.0806378Z Starting download (1/4): C:\15379340894\build-results\.additional_ci_files\test-class-times.json 2025-06-01T21:32:42.2148035Z Finished download (1/4): C:\15379340894\build-results\.additional_ci_files\test-class-times.json 2025-06-01T21:32:42.2149083Z Starting download (2/4): C:\15379340894\build-results\.additional_ci_files\test-times.json 2025-06-01T21:32:42.2949346Z Finished download (2/4): C:\15379340894\build-results\.additional_ci_files\test-times.json 2025-06-01T21:32:42.2951421Z Starting download (3/4): C:\15379340894\build-results\.ninja_log 2025-06-01T21:32:42.3950159Z Finished download (3/4): C:\15379340894\build-results\.ninja_log 2025-06-01T21:32:42.3951775Z Starting download (4/4): C:\15379340894\build-results\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:32:44.5139867Z Finished download (4/4): C:\15379340894\build-results\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:32:44.5140551Z Artifact download has finished successfully 2025-06-01T21:32:44.5430484Z ##[group]Run tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-06-01T21:32:44.5430928Z tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-06-01T21:32:44.5446542Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T21:32:44.5446989Z env: 2025-06-01T21:32:44.5447193Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:44.5447561Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:44.5448085Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:44.5448559Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:44.5448957Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:44.5449408Z ##[endgroup] 2025-06-01T21:32:44.9286648Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T21:32:44.9329959Z Finished 2025-06-01T21:32:44.9440954Z Folder PATH listing 2025-06-01T21:32:44.9441304Z Volume serial number is EA7F-0099 2025-06-01T21:32:44.9441577Z C:\15379340894\BUILD-RESULTS 2025-06-01T21:32:44.9448736Z � .ninja_log 2025-06-01T21:32:44.9449112Z � torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl 2025-06-01T21:32:44.9449445Z � 2025-06-01T21:32:44.9449670Z ����.additional_ci_files 2025-06-01T21:32:44.9449898Z test-class-times.json 2025-06-01T21:32:44.9450136Z test-times.json 2025-06-01T21:32:44.9450324Z 2025-06-01T21:32:44.9736661Z Prepare all required actions 2025-06-01T21:32:44.9737151Z Getting action download info 2025-06-01T21:32:45.0994750Z Download action repository 'seemethere/download-artifact-s3@v4' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-06-01T21:32:45.2735159Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-06-01T21:32:45.5860904Z ##[group]Run ./.github/actions/download-td-artifacts 2025-06-01T21:32:45.5861229Z with: 2025-06-01T21:32:45.5861407Z env: 2025-06-01T21:32:45.5861593Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:45.5861958Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:45.5862479Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:45.5862939Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:45.5863327Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:45.5863641Z ##[endgroup] 2025-06-01T21:32:45.5957557Z ##[group]Run seemethere/download-artifact-s3@v4 2025-06-01T21:32:45.5957867Z with: 2025-06-01T21:32:45.5958094Z name: td_results 2025-06-01T21:32:45.5958300Z s3-bucket: gha-artifacts 2025-06-01T21:32:45.5958546Z region: us-east-1 2025-06-01T21:32:45.5958737Z env: 2025-06-01T21:32:45.5958904Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:45.5959269Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:45.5959772Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:45.5960239Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:45.5960622Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:45.5960910Z ##[endgroup] 2025-06-01T21:32:46.1199375Z (node:1796) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-06-01T21:32:46.1199848Z 2025-06-01T21:32:46.1200051Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-06-01T21:32:46.1200553Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-06-01T21:32:46.1201048Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-06-01T21:32:46.2461678Z Found 1 objects with prefix pytorch/pytorch/15379340894/td_results/ 2025-06-01T21:32:46.2463945Z Starting download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-06-01T21:32:46.3091966Z Finished download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-06-01T21:32:46.3101671Z Artifact download has finished successfully 2025-06-01T21:32:46.3345966Z ##[group]Run mkdir -p .additional_ci_files 2025-06-01T21:32:46.3346310Z mkdir -p .additional_ci_files 2025-06-01T21:32:46.3346705Z mv td_results.json .additional_ci_files/td_results.json || true 2025-06-01T21:32:46.3365983Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:46.3366437Z env: 2025-06-01T21:32:46.3366621Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:46.3366994Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:46.3367507Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:46.3368162Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:46.3368565Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:46.3368854Z ##[endgroup] 2025-06-01T21:32:46.4060602Z Prepare all required actions 2025-06-01T21:32:46.4061044Z Getting action download info 2025-06-01T21:32:46.5013211Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-01T21:32:46.6314281Z ##[group]Run ./.github/actions/filter-test-configs 2025-06-01T21:32:46.6314596Z with: 2025-06-01T21:32:46.6315012Z github-token: *** 2025-06-01T21:32:46.6316072Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]} 2025-06-01T21:32:46.6317474Z job-name: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:32:46.6317966Z env: 2025-06-01T21:32:46.6318166Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:46.6318600Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:46.6319118Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:46.6319597Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:46.6320006Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:46.6320295Z ##[endgroup] 2025-06-01T21:32:46.6431478Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T21:32:46.6431750Z with: 2025-06-01T21:32:46.6431934Z shell: bash 2025-06-01T21:32:46.6432114Z timeout_minutes: 10 2025-06-01T21:32:46.6432320Z max_attempts: 5 2025-06-01T21:32:46.6432511Z retry_wait_seconds: 30 2025-06-01T21:32:46.6433246Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-06-01T21:32:46.6434132Z polling_interval_seconds: 1 2025-06-01T21:32:46.6434388Z warning_on_retry: true 2025-06-01T21:32:46.6434630Z continue_on_error: false 2025-06-01T21:32:46.6434842Z env: 2025-06-01T21:32:46.6435019Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:46.6435382Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:46.6435899Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:46.6436361Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:46.6436755Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:46.6437273Z GITHUB_TOKEN: *** 2025-06-01T21:32:46.6437473Z ##[endgroup] 2025-06-01T21:32:46.7642041Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-06-01T21:32:47.5604842Z Collecting requests==2.27.1 2025-06-01T21:32:47.7489289Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-06-01T21:32:47.8348112Z Collecting pyyaml==6.0.1 2025-06-01T21:32:47.8407494Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-06-01T21:32:47.8597733Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-06-01T21:32:47.8604554Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.1.31) 2025-06-01T21:32:47.8617289Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-06-01T21:32:47.8631932Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-06-01T21:32:47.8929849Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-06-01T21:32:47.9734865Z ---------------------------------------- 63.1/63.1 kB 1.1 MB/s eta 0:00:00 2025-06-01T21:32:47.9802439Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-06-01T21:32:48.0195111Z ---------------------------------------- 152.8/152.8 kB 4.6 MB/s eta 0:00:00 2025-06-01T21:32:48.8988879Z Installing collected packages: requests, pyyaml 2025-06-01T21:32:48.8989430Z Attempting uninstall: requests 2025-06-01T21:32:48.8999343Z Found existing installation: requests 2.32.3 2025-06-01T21:32:48.9086340Z Uninstalling requests-2.32.3: 2025-06-01T21:32:48.9115353Z Successfully uninstalled requests-2.32.3 2025-06-01T21:32:48.9768072Z Attempting uninstall: pyyaml 2025-06-01T21:32:48.9775818Z Found existing installation: PyYAML 6.0.2 2025-06-01T21:32:48.9856029Z Uninstalling PyYAML-6.0.2: 2025-06-01T21:32:48.9884022Z Successfully uninstalled PyYAML-6.0.2 2025-06-01T21:32:49.0949475Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-06-01T21:32:49.7543471Z Command completed after 1 attempt(s). 2025-06-01T21:32:49.7696644Z ##[group]Run set -x 2025-06-01T21:32:49.7696874Z set -x 2025-06-01T21:32:49.7697050Z  2025-06-01T21:32:49.7697516Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-06-01T21:32:49.7698008Z # in runner workspace 2025-06-01T21:32:49.7698360Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-06-01T21:32:49.7717676Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:49.7718105Z env: 2025-06-01T21:32:49.7718282Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:49.7718659Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:49.7719161Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:49.7719626Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:49.7720018Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:49.7720308Z ##[endgroup] 2025-06-01T21:32:49.7908024Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-06-01T21:32:49.8493956Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-06-01T21:32:49.8494403Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-06-01T21:32:49.8494763Z echo "Job name: ${JOB_NAME}" 2025-06-01T21:32:49.8495062Z  2025-06-01T21:32:49.8495471Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-06-01T21:32:49.8495961Z # in runner workspace 2025-06-01T21:32:49.8496411Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-06-01T21:32:49.8496962Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-06-01T21:32:49.8497298Z  --job-name "${JOB_NAME}" \ 2025-06-01T21:32:49.8498528Z  --test-matrix "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]}" \ 2025-06-01T21:32:49.8499709Z  --selected-test-configs "" \ 2025-06-01T21:32:49.8500004Z  --pr-number "${PR_NUMBER}" \ 2025-06-01T21:32:49.8500377Z  --tag "${TAG}" \ 2025-06-01T21:32:49.8500635Z  --event-name "${EVENT_NAME}" \ 2025-06-01T21:32:49.8500934Z  --schedule "${SCHEDULE}" \ 2025-06-01T21:32:49.8501209Z  --branch "${HEAD_BRANCH}" 2025-06-01T21:32:49.8520755Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:49.8521209Z env: 2025-06-01T21:32:49.8521404Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:49.8521795Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:49.8522384Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:49.8523117Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:49.8523527Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:49.8524094Z GITHUB_TOKEN: *** 2025-06-01T21:32:49.8525087Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:32:49.8525523Z PR_NUMBER: 2025-06-01T21:32:49.8525726Z TAG: 2025-06-01T21:32:49.8525904Z EVENT_NAME: push 2025-06-01T21:32:49.8526115Z SCHEDULE: 2025-06-01T21:32:49.8526299Z HEAD_BRANCH: 2025-06-01T21:32:49.8526500Z ##[endgroup] 2025-06-01T21:32:49.8708243Z Workflow: trunk 2025-06-01T21:32:49.8708702Z Job name: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:32:50.1839555Z ##[group]Run echo "Filtered matrix:" 2025-06-01T21:32:50.1839935Z echo "Filtered matrix:" 2025-06-01T21:32:50.1841072Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "windows.4xlarge.nonephemeral"}]}" 2025-06-01T21:32:50.1842271Z  2025-06-01T21:32:50.1842438Z echo 2025-06-01T21:32:50.1842678Z echo "Is the current job unstable? False" 2025-06-01T21:32:50.1842970Z  2025-06-01T21:32:50.1843147Z echo 2025-06-01T21:32:50.1843372Z echo "Is keep-going label set? False" 2025-06-01T21:32:50.1843653Z  2025-06-01T21:32:50.1843822Z echo 2025-06-01T21:32:50.1844008Z echo "Renabled issues? " 2025-06-01T21:32:50.1863472Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:50.1863967Z env: 2025-06-01T21:32:50.1864164Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:50.1864579Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:50.1865115Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:50.1865579Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:50.1865993Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:50.1866280Z ##[endgroup] 2025-06-01T21:32:50.2052860Z Filtered matrix: 2025-06-01T21:32:50.2053901Z {include: [{config: default, shard: 1, num_shards: 3, runner: windows.4xlarge.nonephemeral}, {config: default, shard: 2, num_shards: 3, runner: windows.4xlarge.nonephemeral}, {config: default, shard: 3, num_shards: 3, runner: windows.4xlarge.nonephemeral}]} 2025-06-01T21:32:50.2055277Z 2025-06-01T21:32:50.2055414Z Is the current job unstable? False 2025-06-01T21:32:50.2055605Z 2025-06-01T21:32:50.2055710Z Is keep-going label set? False 2025-06-01T21:32:50.2055884Z 2025-06-01T21:32:50.2055964Z Renabled issues? 2025-06-01T21:32:50.2181710Z ##[group]Run echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-06-01T21:32:50.2182245Z echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-06-01T21:32:50.2201225Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:50.2201646Z env: 2025-06-01T21:32:50.2201841Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:50.2202217Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:50.2202718Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:50.2203186Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:50.2203574Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:50.2203869Z JOB_TIMEOUT: 240 2025-06-01T21:32:50.2204050Z ##[endgroup] 2025-06-01T21:32:50.2519947Z ##[group]Run pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-06-01T21:32:50.2520454Z pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-06-01T21:32:50.2520827Z # shellcheck disable=SC2046,SC2102 2025-06-01T21:32:50.2521471Z python3 -mpip install $(echo *.whl)[opt-einsum,optree] optree==0.13.0 2025-06-01T21:32:50.2521969Z popd 2025-06-01T21:32:50.2522147Z  2025-06-01T21:32:50.2522377Z .ci/pytorch/win-test.sh 2025-06-01T21:32:50.2543908Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T21:32:50.2544431Z env: 2025-06-01T21:32:50.2544623Z GIT_DEFAULT_BRANCH: main 2025-06-01T21:32:50.2545038Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:32:50.2545639Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:32:50.2546142Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:32:50.2546653Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:32:50.2546981Z USE_CUDA: 0 2025-06-01T21:32:50.2547172Z INSTALL_WINDOWS_SDK: 1 2025-06-01T21:32:50.2547435Z PYTHON_VERSION: 3.9 2025-06-01T21:32:50.2547712Z CONTINUE_THROUGH_ERROR: False 2025-06-01T21:32:50.2547952Z VERBOSE_TEST_LOGS: False 2025-06-01T21:32:50.2548226Z TEST_SHOWLOCALS: False 2025-06-01T21:32:50.2548480Z NO_TEST_TIMEOUT: False 2025-06-01T21:32:50.2548689Z NO_TD: False 2025-06-01T21:32:50.2548913Z VC_PRODUCT: BuildTools 2025-06-01T21:32:50.2549124Z VC_VERSION: 2025-06-01T21:32:50.2549343Z VS_VERSION: 16.8.6 2025-06-01T21:32:50.2549542Z VC_YEAR: 2019 2025-06-01T21:32:50.2549782Z AWS_DEFAULT_REGION: us-east-1 2025-06-01T21:32:50.2550055Z PR_NUMBER: 2025-06-01T21:32:50.2550262Z GITHUB_REPOSITORY: pytorch/pytorch 2025-06-01T21:32:50.2550562Z GITHUB_WORKFLOW: trunk 2025-06-01T21:32:50.2550813Z GITHUB_JOB: test 2025-06-01T21:32:50.2551005Z GITHUB_RUN_ID: 15379340894 2025-06-01T21:32:50.2551290Z GITHUB_RUN_NUMBER: 129555 2025-06-01T21:32:50.2551555Z GITHUB_RUN_ATTEMPT: 1 2025-06-01T21:32:50.2551764Z JOB_ID: 43268628846 2025-06-01T21:32:50.2552190Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:32:50.2552710Z SHA1: f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:32:50.2553046Z CUDA_VERSION: cpu 2025-06-01T21:32:50.2553345Z PYTORCH_FINAL_PACKAGE_DIR: /c/15379340894/build-results/ 2025-06-01T21:32:50.2553737Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-06-01T21:32:50.2554170Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-01T21:32:50.2554614Z SHARD_NUMBER: 3 2025-06-01T21:32:50.2554850Z NUM_TEST_SHARDS: 3 2025-06-01T21:32:50.2555061Z TEST_CONFIG: default 2025-06-01T21:32:50.2555316Z REENABLED_ISSUES: 2025-06-01T21:32:50.2555579Z TORCH_CUDA_ARCH_LIST: 8.6 2025-06-01T21:32:50.2555859Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK: 0 2025-06-01T21:32:50.2556155Z PYTORCH_TEST_RERUN_DISABLED_TESTS: 0 2025-06-01T21:32:50.2556419Z ##[endgroup] 2025-06-01T21:32:50.2739695Z /c/15379340894/build-results /c/actions-runner/_work/pytorch/pytorch 2025-06-01T21:32:50.8152953Z Processing c:\15379340894\build-results\torch-2.8.0a0+gitf7c09f8-cp39-cp39-win_amd64.whl (from torch==2.8.0a0+gitf7c09f8) 2025-06-01T21:32:51.9749988Z Collecting optree==0.13.0 2025-06-01T21:32:52.1605274Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl.metadata (48 kB) 2025-06-01T21:32:52.2417120Z -------------------------------------- 48.7/48.7 kB 493.4 kB/s eta 0:00:00 2025-06-01T21:32:52.2785565Z Requirement already satisfied: typing-extensions>=4.5.0 in c:\jenkins\miniconda3\lib\site-packages (from optree==0.13.0) (4.12.2) 2025-06-01T21:32:52.3199478Z Collecting filelock (from torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) 2025-06-01T21:32:52.3248537Z Downloading filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) 2025-06-01T21:32:52.3601457Z Collecting sympy>=1.13.3 (from torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) 2025-06-01T21:32:52.3650808Z Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) 2025-06-01T21:32:52.3716987Z Requirement already satisfied: networkx in c:\jenkins\miniconda3\lib\site-packages (from torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) (2.8.8) 2025-06-01T21:32:52.3964439Z Collecting jinja2 (from torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) 2025-06-01T21:32:52.4014054Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-06-01T21:32:52.4439956Z Collecting fsspec (from torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) 2025-06-01T21:32:52.4487591Z Downloading fsspec-2025.5.1-py3-none-any.whl.metadata (11 kB) 2025-06-01T21:32:52.4622146Z Requirement already satisfied: opt-einsum>=3.3 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) (3.4.0) 2025-06-01T21:32:52.4680923Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\jenkins\miniconda3\lib\site-packages (from sympy>=1.13.3->torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) (1.2.1) 2025-06-01T21:32:52.6734672Z Collecting MarkupSafe>=2.0 (from jinja2->torch==2.8.0a0+gitf7c09f8->torch==2.8.0a0+gitf7c09f8) 2025-06-01T21:32:52.6793125Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl.metadata (4.1 kB) 2025-06-01T21:32:52.7199266Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl (270 kB) 2025-06-01T21:32:52.7609403Z ---------------------------------------- 270.1/270.1 kB 5.5 MB/s eta 0:00:00 2025-06-01T21:32:52.7659027Z Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) 2025-06-01T21:32:52.8185536Z ---------------------------------------- 6.3/6.3 MB 133.8 MB/s eta 0:00:00 2025-06-01T21:32:52.8234589Z Downloading filelock-3.18.0-py3-none-any.whl (16 kB) 2025-06-01T21:32:52.8348270Z Downloading fsspec-2025.5.1-py3-none-any.whl (199 kB) 2025-06-01T21:32:52.8442645Z ---------------------------------------- 199.1/199.1 kB ? eta 0:00:00 2025-06-01T21:32:52.8490892Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-06-01T21:32:52.8584682Z ---------------------------------------- 134.9/134.9 kB ? eta 0:00:00 2025-06-01T21:32:52.8647443Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl (15 kB) 2025-06-01T21:32:53.8852308Z Installing collected packages: sympy, optree, MarkupSafe, fsspec, filelock, jinja2, torch 2025-06-01T21:32:53.8853573Z Attempting uninstall: sympy 2025-06-01T21:32:53.8868537Z Found existing installation: sympy 1.11.1 2025-06-01T21:32:54.2843503Z Uninstalling sympy-1.11.1: 2025-06-01T21:32:54.6587370Z Successfully uninstalled sympy-1.11.1 2025-06-01T21:33:02.2376382Z WARNING: The script isympy.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T21:33:02.2377183Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:33:22.6940678Z WARNING: The scripts torchfrtrace.exe and torchrun.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T21:33:22.6941609Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:33:22.8428326Z Successfully installed MarkupSafe-3.0.2 filelock-3.18.0 fsspec-2025.5.1 jinja2-3.1.6 optree-0.13.0 sympy-1.14.0 torch-2.8.0a0+gitf7c09f8 2025-06-01T21:33:22.9774805Z /c/actions-runner/_work/pytorch/pytorch 2025-06-01T21:33:23.0092099Z +++ dirname .ci/pytorch/win-test.sh 2025-06-01T21:33:23.0163179Z ++ cd .ci/pytorch 2025-06-01T21:33:23.0168451Z ++ pwd 2025-06-01T21:33:23.0174217Z + SCRIPT_PARENT_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch 2025-06-01T21:33:23.0174789Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-06-01T21:33:23.0250460Z +++ dirname /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-06-01T21:33:23.0315451Z ++ source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common_utils.sh 2025-06-01T21:33:23.0319203Z +++ declare -f -t trap_add 2025-06-01T21:33:23.0324498Z ++ set -ex -o pipefail 2025-06-01T21:33:23.0325108Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-06-01T21:33:23.0325445Z ++ BUILD_TEST_LIBTORCH=0 2025-06-01T21:33:23.0325798Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:33:23.0326536Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:33:23.0382652Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:33:23.0481395Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-06-01T21:33:23.0483353Z + export TMP_DIR_WIN 2025-06-01T21:33:23.0483902Z + export PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-06-01T21:33:23.0484540Z + PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-06-01T21:33:23.0540900Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch 2025-06-01T21:33:23.0636672Z + PROJECT_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch' 2025-06-01T21:33:23.0637203Z + export PROJECT_DIR_WIN 2025-06-01T21:33:23.0637570Z + export TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-06-01T21:33:23.0637979Z + TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-06-01T21:33:23.0747562Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/test 2025-06-01T21:33:23.0844378Z + TEST_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\test' 2025-06-01T21:33:23.0844767Z + export TEST_DIR_WIN 2025-06-01T21:33:23.0845076Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/15379340894/build-results/ 2025-06-01T21:33:23.0845496Z + PYTORCH_FINAL_PACKAGE_DIR=/c/15379340894/build-results/ 2025-06-01T21:33:23.0901043Z ++ cygpath -w /c/15379340894/build-results/ 2025-06-01T21:33:23.0994795Z + PYTORCH_FINAL_PACKAGE_DIR_WIN='C:\15379340894\build-results\' 2025-06-01T21:33:23.0995276Z + export PYTORCH_FINAL_PACKAGE_DIR_WIN 2025-06-01T21:33:23.0995564Z + export TORCH_SERIALIZATION_DEBUG=1 2025-06-01T21:33:23.0995843Z + TORCH_SERIALIZATION_DEBUG=1 2025-06-01T21:33:23.0996321Z + mkdir -p /c/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch 2025-06-01T21:33:23.1126626Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:33:23.1127326Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:33:23.1127826Z + [[ default = \f\o\r\c\e\_\o\n\_\c\p\u ]] 2025-06-01T21:33:23.1128121Z + [[ win-vs2022-cpu-py3 == *cuda* ]] 2025-06-01T21:33:23.1128720Z + 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-06-01T21:33:23.9018667Z Collecting pytest-rerunfailures==10.3 2025-06-01T21:33:24.0908149Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-06-01T21:33:24.1249389Z Requirement already satisfied: pytest-cpp==2.3.0 in c:\jenkins\miniconda3\lib\site-packages (2.3.0) 2025-06-01T21:33:24.1742332Z Collecting tensorboard==2.13.0 2025-06-01T21:33:24.1809281Z Downloading tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-06-01T21:33:24.5127442Z Collecting protobuf==5.29.4 2025-06-01T21:33:24.5188101Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl.metadata (592 bytes) 2025-06-01T21:33:24.5438809Z Collecting pytest-subtests==0.13.1 2025-06-01T21:33:24.5495364Z Downloading pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-06-01T21:33:24.5604383Z Requirement already satisfied: packaging>=17.1 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (23.2) 2025-06-01T21:33:24.5611693Z Requirement already satisfied: pytest>=5.3 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (7.1.3) 2025-06-01T21:33:24.5639023Z Requirement already satisfied: colorama in c:\jenkins\miniconda3\lib\site-packages (from pytest-cpp==2.3.0) (0.4.6) 2025-06-01T21:33:24.5939252Z Collecting absl-py>=0.4 (from tensorboard==2.13.0) 2025-06-01T21:33:24.5990230Z Downloading absl_py-2.3.0-py3-none-any.whl.metadata (2.4 kB) 2025-06-01T21:33:25.5666852Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0) 2025-06-01T21:33:25.5732663Z Downloading grpcio-1.71.0-cp39-cp39-win_amd64.whl.metadata (4.0 kB) 2025-06-01T21:33:25.7224951Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0) 2025-06-01T21:33:25.7294077Z Downloading google_auth-2.40.2-py2.py3-none-any.whl.metadata (6.2 kB) 2025-06-01T21:33:25.7599654Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0) 2025-06-01T21:33:25.7659286Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-06-01T21:33:25.8013454Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0) 2025-06-01T21:33:25.8062182Z Downloading markdown-3.8-py3-none-any.whl.metadata (5.1 kB) 2025-06-01T21:33:25.8124205Z Requirement already satisfied: numpy>=1.12.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (1.22.3) 2025-06-01T21:33:25.8272900Z Requirement already satisfied: requests<3,>=2.21.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (2.27.1) 2025-06-01T21:33:25.8282092Z Requirement already satisfied: setuptools>=41.0.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (75.8.0) 2025-06-01T21:33:25.8443753Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0) 2025-06-01T21:33:25.8501723Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-06-01T21:33:25.8956665Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0) 2025-06-01T21:33:25.9008137Z Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-06-01T21:33:25.9073550Z Requirement already satisfied: wheel>=0.26 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (0.43.0) 2025-06-01T21:33:25.9124584Z Requirement already satisfied: attrs>=19.2.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest-subtests==0.13.1) (25.1.0) 2025-06-01T21:33:26.1177585Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-06-01T21:33:26.1234719Z Downloading cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-06-01T21:33:26.1587370Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-06-01T21:33:26.1642192Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-06-01T21:33:26.1945909Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-06-01T21:33:26.1995065Z Downloading rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-06-01T21:33:26.2518459Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-06-01T21:33:26.2571183Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-06-01T21:33:26.2781922Z 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-06-01T21:33:26.2951029Z Requirement already satisfied: iniconfig in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.0.0) 2025-06-01T21:33:26.2957598Z 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-06-01T21:33:26.2964167Z 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-06-01T21:33:26.2972497Z 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-06-01T21:33:26.3101253Z 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-06-01T21:33:26.3107896Z 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.1.31) 2025-06-01T21:33:26.3121738Z 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-06-01T21:33:26.3133220Z 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-06-01T21:33:26.3446404Z 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-06-01T21:33:26.3820386Z 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-06-01T21:33:26.4348635Z 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-06-01T21:33:26.4396738Z Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-01T21:33:26.4728653Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-06-01T21:33:26.4775341Z Downloading oauthlib-3.2.2-py3-none-any.whl.metadata (7.5 kB) 2025-06-01T21:33:26.5625308Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-06-01T21:33:26.5762049Z Downloading tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-06-01T21:33:26.6400370Z ---------------------------------------- 5.6/5.6 MB 89.7 MB/s eta 0:00:00 2025-06-01T21:33:26.6478075Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl (434 kB) 2025-06-01T21:33:26.6596455Z ---------------------------------------- 434.6/434.6 kB ? eta 0:00:00 2025-06-01T21:33:26.6688509Z Downloading pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-06-01T21:33:26.6790731Z Downloading absl_py-2.3.0-py3-none-any.whl (135 kB) 2025-06-01T21:33:26.6887071Z ---------------------------------------- 135.7/135.7 kB ? eta 0:00:00 2025-06-01T21:33:26.6935287Z Downloading google_auth-2.40.2-py2.py3-none-any.whl (216 kB) 2025-06-01T21:33:26.7038285Z ---------------------------------------- 216.1/216.1 kB ? eta 0:00:00 2025-06-01T21:33:26.7086459Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-06-01T21:33:26.7226388Z Downloading grpcio-1.71.0-cp39-cp39-win_amd64.whl (4.3 MB) 2025-06-01T21:33:26.7609001Z ---------------------------------------- 4.3/4.3 MB 137.8 MB/s eta 0:00:00 2025-06-01T21:33:26.7657449Z Downloading markdown-3.8-py3-none-any.whl (106 kB) 2025-06-01T21:33:26.7742391Z ---------------------------------------- 106.2/106.2 kB ? eta 0:00:00 2025-06-01T21:33:26.7807219Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-06-01T21:33:26.7912547Z Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-06-01T21:33:26.8018861Z ---------------------------------------- 224.5/224.5 kB ? eta 0:00:00 2025-06-01T21:33:26.8065818Z Downloading cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-06-01T21:33:26.8172696Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-06-01T21:33:26.8266250Z ---------------------------------------- 181.3/181.3 kB ? eta 0:00:00 2025-06-01T21:33:26.8318203Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-06-01T21:33:26.8427940Z Downloading rsa-4.9.1-py3-none-any.whl (34 kB) 2025-06-01T21:33:26.8535624Z Downloading oauthlib-3.2.2-py3-none-any.whl (151 kB) 2025-06-01T21:33:26.8622116Z ---------------------------------------- 151.7/151.7 kB ? eta 0:00:00 2025-06-01T21:33:26.8667821Z Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-06-01T21:33:26.8750803Z ---------------------------------------- 83.1/83.1 kB ? eta 0:00:00 2025-06-01T21:33:27.7831029Z 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-06-01T21:33:28.0785142Z Attempting uninstall: protobuf 2025-06-01T21:33:28.0795221Z Found existing installation: protobuf 4.25.3 2025-06-01T21:33:28.0992097Z Uninstalling protobuf-4.25.3: 2025-06-01T21:33:28.6008983Z Successfully uninstalled protobuf-4.25.3 2025-06-01T21:33:29.3570201Z 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-06-01T21:33:29.3571641Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:33:29.4230161Z Attempting uninstall: pytest-rerunfailures 2025-06-01T21:33:29.4243482Z Found existing installation: pytest-rerunfailures 10.2 2025-06-01T21:33:29.4280178Z Uninstalling pytest-rerunfailures-10.2: 2025-06-01T21:33:29.9326066Z Successfully uninstalled pytest-rerunfailures-10.2 2025-06-01T21:33:30.6999074Z WARNING: The script markdown_py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T21:33:30.7000055Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:33:30.9008386Z WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T21:33:30.9009397Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:33:31.5867207Z WARNING: The script tensorboard.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T21:33:31.5868041Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:33:31.6507679Z Successfully installed absl-py-2.3.0 cachetools-5.5.2 google-auth-2.40.2 google-auth-oauthlib-1.0.0 grpcio-1.71.0 markdown-3.8 oauthlib-3.2.2 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-06-01T21:33:31.9640136Z + python -m pip install z3-solver==4.12.2.0 2025-06-01T21:33:32.7422328Z Collecting z3-solver==4.12.2.0 2025-06-01T21:33:32.9315189Z Downloading z3_solver-4.12.2.0-py2.py3-none-win_amd64.whl.metadata (697 bytes) 2025-06-01T21:33:32.9451344Z Downloading z3_solver-4.12.2.0-py2.py3-none-win_amd64.whl (57.9 MB) 2025-06-01T21:33:33.8297016Z ---------------------------------------- 57.9/57.9 MB 19.8 MB/s eta 0:00:00 2025-06-01T21:33:34.9819250Z Installing collected packages: z3-solver 2025-06-01T21:33:36.1197207Z Successfully installed z3-solver-4.12.2.0 2025-06-01T21:33:36.2221289Z + python -m pip install tlparse==0.3.30 2025-06-01T21:33:37.2070383Z Collecting tlparse==0.3.30 2025-06-01T21:33:37.4357065Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl.metadata (2.0 kB) 2025-06-01T21:33:37.4582010Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl (1.8 MB) 2025-06-01T21:33:37.6857784Z ---------------------------------------- 1.8/1.8 MB 8.4 MB/s eta 0:00:00 2025-06-01T21:33:38.8931202Z Installing collected packages: tlparse 2025-06-01T21:33:38.9855881Z Successfully installed tlparse-0.3.30 2025-06-01T21:33:39.1463202Z + python -m pip install parameterized==0.8.1 2025-06-01T21:33:39.8846098Z Collecting parameterized==0.8.1 2025-06-01T21:33:40.0760089Z Downloading parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-06-01T21:33:40.1574707Z Downloading parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-06-01T21:33:41.1789580Z Installing collected packages: parameterized 2025-06-01T21:33:41.2632741Z Successfully installed parameterized-0.8.1 2025-06-01T21:33:41.3592715Z + python -m pip install pulp==2.9.0 2025-06-01T21:33:42.1141834Z Collecting pulp==2.9.0 2025-06-01T21:33:42.3019300Z Downloading PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-06-01T21:33:42.3177284Z Downloading PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-06-01T21:33:42.5883704Z ---------------------------------------- 17.7/17.7 MB 93.8 MB/s eta 0:00:00 2025-06-01T21:33:43.6196297Z Installing collected packages: pulp 2025-06-01T21:33:44.0110839Z WARNING: The script pulptest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T21:33:44.0578941Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T21:33:44.0579793Z Successfully installed pulp-2.9.0 2025-06-01T21:33:44.1538705Z + run_tests 2025-06-01T21:33:44.1539255Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-06-01T21:33:44.1539908Z + [[ -x /c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe ]] 2025-06-01T21:33:44.1540527Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-06-01T21:33:44.1541085Z + [[ -x /c/Windows/System32/nvidia-smi.exe ]] 2025-06-01T21:33:44.1541562Z + /c/Windows/System32/nvidia-smi.exe 2025-06-01T21:33:44.2424474Z 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-06-01T21:33:44.2425496Z 2025-06-01T21:33:44.2460451Z + echo true 2025-06-01T21:33:44.2460659Z + break 2025-06-01T21:33:44.2460828Z true 2025-06-01T21:33:44.2461005Z + [[ 3 -eq 1 ]] 2025-06-01T21:33:44.2461432Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-06-01T21:33:44.2603260Z 2025-06-01T21:33:44.2604007Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-06-01T21:33:44.2613386Z 2025-06-01T21:33:44.2616044Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:33:44.2618687Z 2025-06-01T21:33:44.2619215Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-06-01T21:33:44.2619858Z 2025-06-01T21:33:44.2620424Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-06-01T21:33:44.2629791Z 2025-06-01T21:33:44.2630721Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-06-01T21:33:44.2634897Z 2025-06-01T21:33:44.2635405Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-06-01T21:33:44.2637803Z 2025-06-01T21:33:44.2638186Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-06-01T21:33:44.2639264Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-06-01T21:33:44.2640227Z if errorlevel 1 exit /b 2025-06-01T21:33:44.2640482Z if not errorlevel 0 exit /b 2025-06-01T21:33:44.2641263Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-06-01T21:33:44.2642082Z if errorlevel 1 exit /b 2025-06-01T21:33:44.2642526Z if not errorlevel 0 exit /b 2025-06-01T21:33:44.2642766Z ) 2025-06-01T21:33:44.2642865Z 2025-06-01T21:33:44.2643227Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-06-01T21:33:44.9869976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py 2025-06-01T21:33:44.9874692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\hub.py 2025-06-01T21:33:44.9878952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\library.py 2025-06-01T21:33:44.9883476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\overrides.py 2025-06-01T21:33:44.9887859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\py.typed 2025-06-01T21:33:44.9897340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quasirandom.py 2025-06-01T21:33:44.9901323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\random.py 2025-06-01T21:33:44.9904840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.py 2025-06-01T21:33:44.9908418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.pyi 2025-06-01T21:33:44.9912024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\serialization.py 2025-06-01T21:33:44.9916410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\storage.py 2025-06-01T21:33:44.9920495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\torch_version.py 2025-06-01T21:33:44.9925098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\types.py 2025-06-01T21:33:44.9928659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\version.py 2025-06-01T21:33:44.9932176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_appdirs.py 2025-06-01T21:33:44.9936041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C.cp39-win_amd64.pyd 2025-06-01T21:33:44.9939854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_classes.py 2025-06-01T21:33:44.9943268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_compile.py 2025-06-01T21:33:44.9946704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_ops.py 2025-06-01T21:33:44.9950365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_deploy.py 2025-06-01T21:33:44.9953979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_environment.py 2025-06-01T21:33:44.9958049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_guards.py 2025-06-01T21:33:44.9962114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_jit_internal.py 2025-06-01T21:33:44.9966073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_linalg_utils.py 2025-06-01T21:33:44.9969609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lobpcg.py 2025-06-01T21:33:44.9977832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lowrank.py 2025-06-01T21:33:44.9981491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_meta_registrations.py 2025-06-01T21:33:44.9988252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_namedtensor_internals.py 2025-06-01T21:33:44.9993136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_ops.py 2025-06-01T21:33:44.9998266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_python_dispatcher.py 2025-06-01T21:33:45.0003488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_size_docs.py 2025-06-01T21:33:45.0008398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_sources.py 2025-06-01T21:33:45.0011937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_storage_docs.py 2025-06-01T21:33:45.0016874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_streambase.py 2025-06-01T21:33:45.0021941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor.py 2025-06-01T21:33:45.0027285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_docs.py 2025-06-01T21:33:45.0037523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_str.py 2025-06-01T21:33:45.0041609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_thread_safe_fork.py 2025-06-01T21:33:45.0045911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_torch_docs.py 2025-06-01T21:33:45.0054904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils.py 2025-06-01T21:33:45.0059177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils_internal.py 2025-06-01T21:33:45.0064086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.py 2025-06-01T21:33:45.0069112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.pyi 2025-06-01T21:33:45.0115582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vmap_internals.py 2025-06-01T21:33:45.0121228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_weights_only_unpickler.py 2025-06-01T21:33:45.0126484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__config__.py 2025-06-01T21:33:45.0132036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__future__.py 2025-06-01T21:33:45.0141412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__init__.py 2025-06-01T21:33:45.0149911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\_utils.py 2025-06-01T21:33:45.0153512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__init__.py 2025-06-01T21:33:45.0162868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:45.0166751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0174503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\autocast_mode.py 2025-06-01T21:33:45.0178150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\grad_scaler.py 2025-06-01T21:33:45.0182142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__init__.py 2025-06-01T21:33:45.0194390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-06-01T21:33:45.0198073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-06-01T21:33:45.0201678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0215281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__init__.py 2025-06-01T21:33:45.0223333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__init__.py 2025-06-01T21:33:45.0232403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__init__.py 2025-06-01T21:33:45.0239360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\fused.py 2025-06-01T21:33:45.0242849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__init__.py 2025-06-01T21:33:45.0250651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-06-01T21:33:45.0254267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0262801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__init__.py 2025-06-01T21:33:45.0269816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\conv_fused.py 2025-06-01T21:33:45.0274089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_fused.py 2025-06-01T21:33:45.0277550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_relu.py 2025-06-01T21:33:45.0281104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__init__.py 2025-06-01T21:33:45.0292900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-06-01T21:33:45.0296664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-06-01T21:33:45.0300539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-06-01T21:33:45.0308355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0316240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0325252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__init__.py 2025-06-01T21:33:45.0332860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py 2025-06-01T21:33:45.0340070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-06-01T21:33:45.0344354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-06-01T21:33:45.0350929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-06-01T21:33:45.0354649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0362459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0370751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py 2025-06-01T21:33:45.0374311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_add.py 2025-06-01T21:33:45.0378089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py 2025-06-01T21:33:45.0381616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py 2025-06-01T21:33:45.0385037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__init__.py 2025-06-01T21:33:45.0401598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-06-01T21:33:45.0406592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_add.cpython-39.pyc 2025-06-01T21:33:45.0411956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-06-01T21:33:45.0420605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-06-01T21:33:45.0425532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0436515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0450391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0462089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__init__.py 2025-06-01T21:33:45.0472345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__init__.py 2025-06-01T21:33:45.0481887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\linear.py 2025-06-01T21:33:45.0485526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__init__.py 2025-06-01T21:33:45.0495353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:45.0500496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0510978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0520430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\conv.py 2025-06-01T21:33:45.0525308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\embedding_ops.py 2025-06-01T21:33:45.0547183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\linear.py 2025-06-01T21:33:45.0551581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__init__.py 2025-06-01T21:33:45.0566288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:45.0571457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-06-01T21:33:45.0593287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:45.0602638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0610855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0619921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__init__.py 2025-06-01T21:33:45.0627121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\activation.py 2025-06-01T21:33:45.0630752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\rnn.py 2025-06-01T21:33:45.0634322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__init__.py 2025-06-01T21:33:45.0641392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-06-01T21:33:45.0645521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:45.0649045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0663202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0677752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\functional.py 2025-06-01T21:33:45.0681596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__init__.py 2025-06-01T21:33:45.0688955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__init__.py 2025-06-01T21:33:45.0695792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\conv.py 2025-06-01T21:33:45.0699425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\linear.py 2025-06-01T21:33:45.0702726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\rnn.py 2025-06-01T21:33:45.0706652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__init__.py 2025-06-01T21:33:45.0713900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:45.0717555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:45.0721094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:45.0729205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0738620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0747150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\activation.py 2025-06-01T21:33:45.0750876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\batchnorm.py 2025-06-01T21:33:45.0754280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\conv.py 2025-06-01T21:33:45.0757858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\dropout.py 2025-06-01T21:33:45.0761460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\embedding_ops.py 2025-06-01T21:33:45.0768779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\functional_modules.py 2025-06-01T21:33:45.0772342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\linear.py 2025-06-01T21:33:45.0775720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\normalization.py 2025-06-01T21:33:45.0779274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\rnn.py 2025-06-01T21:33:45.0782866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\utils.py 2025-06-01T21:33:45.0786422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__init__.py 2025-06-01T21:33:45.0793663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-06-01T21:33:45.0797330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-06-01T21:33:45.0800793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:45.0809221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-06-01T21:33:45.0812739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-06-01T21:33:45.0816382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-06-01T21:33:45.0820294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:45.0823948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-06-01T21:33:45.0827495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:45.0831375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.0836484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.0970238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__init__.py 2025-06-01T21:33:45.0979132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\conv.py 2025-06-01T21:33:45.0982616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\linear.py 2025-06-01T21:33:45.0986147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\rnn.py 2025-06-01T21:33:45.0989762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\sparse.py 2025-06-01T21:33:45.0993130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\utils.py 2025-06-01T21:33:45.0996477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__init__.py 2025-06-01T21:33:45.1008259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:45.1011942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:45.1015783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:45.1023954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\sparse.cpython-39.pyc 2025-06-01T21:33:45.1027609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.1031139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1039175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1048022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-06-01T21:33:45.1052048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1061562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__init__.py 2025-06-01T21:33:45.1068844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\linear.py 2025-06-01T21:33:45.1072290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\utils.py 2025-06-01T21:33:45.1075684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__init__.py 2025-06-01T21:33:45.1082722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\linear.py 2025-06-01T21:33:45.1085730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__init__.py 2025-06-01T21:33:45.1092787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:45.1096398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1108430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:45.1111710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.1115390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1182684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1194475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1207022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite.py 2025-06-01T21:33:45.1210902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite_fx.py 2025-06-01T21:33:45.1216301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__init__.py 2025-06-01T21:33:45.1222636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_matcher.py 2025-06-01T21:33:45.1226478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_passes.py 2025-06-01T21:33:45.1230159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\mappings.py 2025-06-01T21:33:45.1233687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\ns_types.py 2025-06-01T21:33:45.1238724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\n_shadows_utils.py 2025-06-01T21:33:45.1246718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\pattern_utils.py 2025-06-01T21:33:45.1250231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\qconfig_multi_mapping.py 2025-06-01T21:33:45.1254646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\utils.py 2025-06-01T21:33:45.1258151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\weight_utils.py 2025-06-01T21:33:45.1261748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__init__.py 2025-06-01T21:33:45.1270082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_matcher.cpython-39.pyc 2025-06-01T21:33:45.1273724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_passes.cpython-39.pyc 2025-06-01T21:33:45.1277265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\mappings.cpython-39.pyc 2025-06-01T21:33:45.1285176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\ns_types.cpython-39.pyc 2025-06-01T21:33:45.1288879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\n_shadows_utils.cpython-39.pyc 2025-06-01T21:33:45.1292501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-06-01T21:33:45.1296308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\qconfig_multi_mapping.cpython-39.pyc 2025-06-01T21:33:45.1299913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.1303597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\weight_utils.cpython-39.pyc 2025-06-01T21:33:45.1307127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1319576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite.cpython-39.pyc 2025-06-01T21:33:45.1324720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-06-01T21:33:45.1328735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1341794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_mappings.py 2025-06-01T21:33:45.1345189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__init__.py 2025-06-01T21:33:45.1352157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\base_scheduler.py 2025-06-01T21:33:45.1355627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\cubic_scheduler.py 2025-06-01T21:33:45.1359213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\lambda_scheduler.py 2025-06-01T21:33:45.1367484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__init__.py 2025-06-01T21:33:45.1373997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\base_scheduler.cpython-39.pyc 2025-06-01T21:33:45.1377611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\cubic_scheduler.cpython-39.pyc 2025-06-01T21:33:45.1381395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\lambda_scheduler.cpython-39.pyc 2025-06-01T21:33:45.1389424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1401396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\base_sparsifier.py 2025-06-01T21:33:45.1405214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py 2025-06-01T21:33:45.1409058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\utils.py 2025-06-01T21:33:45.1416556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py 2025-06-01T21:33:45.1420761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__init__.py 2025-06-01T21:33:45.1430777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\base_sparsifier.cpython-39.pyc 2025-06-01T21:33:45.1435806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\nearly_diagonal_sparsifier.cpython-39.pyc 2025-06-01T21:33:45.1439462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.1449437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\weight_norm_sparsifier.cpython-39.pyc 2025-06-01T21:33:45.1454575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1465780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__init__.py 2025-06-01T21:33:45.1473571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py 2025-06-01T21:33:45.1478558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py 2025-06-01T21:33:45.1491912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\activation_sparsifier.cpython-39.pyc 2025-06-01T21:33:45.1497191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1507443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py 2025-06-01T21:33:45.1512122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__init__.py 2025-06-01T21:33:45.1520688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\base_data_scheduler.cpython-39.pyc 2025-06-01T21:33:45.1525555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1539488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py 2025-06-01T21:33:45.1544454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py 2025-06-01T21:33:45.1549324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py 2025-06-01T21:33:45.1557440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__init__.py 2025-06-01T21:33:45.1565233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py 2025-06-01T21:33:45.1571997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py 2025-06-01T21:33:45.1576303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py 2025-06-01T21:33:45.1579848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py 2025-06-01T21:33:45.1613804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\data_sparsity.cpython-39.pyc 2025-06-01T21:33:45.1619519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\_data_sparstity_utils.cpython-39.pyc 2025-06-01T21:33:45.1624859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1639980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1650149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\base_data_sparsifier.cpython-39.pyc 2025-06-01T21:33:45.1653821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\data_norm_sparsifier.cpython-39.pyc 2025-06-01T21:33:45.1657348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\quantization_utils.cpython-39.pyc 2025-06-01T21:33:45.1667421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1675190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py 2025-06-01T21:33:45.1678700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py 2025-06-01T21:33:45.1682480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py 2025-06-01T21:33:45.1690892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\match_utils.py 2025-06-01T21:33:45.1694545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\parametrization.py 2025-06-01T21:33:45.1698076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\prune_functions.py 2025-06-01T21:33:45.1701757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\saliency_pruner.py 2025-06-01T21:33:45.1705211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__init__.py 2025-06-01T21:33:45.1712583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\base_structured_sparsifier.cpython-39.pyc 2025-06-01T21:33:45.1716354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\FPGM_pruner.cpython-39.pyc 2025-06-01T21:33:45.1719974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\lstm_saliency_pruner.cpython-39.pyc 2025-06-01T21:33:45.1728112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\match_utils.cpython-39.pyc 2025-06-01T21:33:45.1731886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\parametrization.cpython-39.pyc 2025-06-01T21:33:45.1735782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\prune_functions.cpython-39.pyc 2025-06-01T21:33:45.1740844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\saliency_pruner.cpython-39.pyc 2025-06-01T21:33:45.1744598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1754222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1763316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\_mappings.cpython-39.pyc 2025-06-01T21:33:45.1766839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1776014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fake_quantize.py 2025-06-01T21:33:45.1780036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuser_method_mappings.py 2025-06-01T21:33:45.1783847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuse_modules.py 2025-06-01T21:33:45.1792490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\observer.py 2025-06-01T21:33:45.1796537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig.py 2025-06-01T21:33:45.1800048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig_mapping.py 2025-06-01T21:33:45.1803734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantization_mappings.py 2025-06-01T21:33:45.1807290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize.py 2025-06-01T21:33:45.1811131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_fx.py 2025-06-01T21:33:45.1814749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_jit.py 2025-06-01T21:33:45.1818551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_pt2e.py 2025-06-01T21:33:45.1822068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quant_type.py 2025-06-01T21:33:45.1825591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\stubs.py 2025-06-01T21:33:45.1829002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\utils.py 2025-06-01T21:33:45.1832664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_correct_bias.py 2025-06-01T21:33:45.1836348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_equalize.py 2025-06-01T21:33:45.1839876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_learnable_fake_quantize.py 2025-06-01T21:33:45.1843275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__init__.py 2025-06-01T21:33:45.1850681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\backend_config.py 2025-06-01T21:33:45.1854389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\executorch.py 2025-06-01T21:33:45.1858131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\fbgemm.py 2025-06-01T21:33:45.1861560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\native.py 2025-06-01T21:33:45.1869757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\observation_type.py 2025-06-01T21:33:45.1872620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\onednn.py 2025-06-01T21:33:45.1876168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\qnnpack.py 2025-06-01T21:33:45.1880054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\tensorrt.py 2025-06-01T21:33:45.1883580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\utils.py 2025-06-01T21:33:45.1886927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\x86.py 2025-06-01T21:33:45.1890795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_common_operator_config_utils.py 2025-06-01T21:33:45.1894425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_qnnpack_pt2e.py 2025-06-01T21:33:45.1897863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__init__.py 2025-06-01T21:33:45.1905753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\backend_config.cpython-39.pyc 2025-06-01T21:33:45.1909429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\executorch.cpython-39.pyc 2025-06-01T21:33:45.1913134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\fbgemm.cpython-39.pyc 2025-06-01T21:33:45.1921303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\native.cpython-39.pyc 2025-06-01T21:33:45.1925217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\observation_type.cpython-39.pyc 2025-06-01T21:33:45.1944894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\onednn.cpython-39.pyc 2025-06-01T21:33:45.1948909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\qnnpack.cpython-39.pyc 2025-06-01T21:33:45.1952568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\tensorrt.cpython-39.pyc 2025-06-01T21:33:45.1956232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.1959791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\x86.cpython-39.pyc 2025-06-01T21:33:45.1965075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_common_operator_config_utils.cpython-39.pyc 2025-06-01T21:33:45.1970282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_qnnpack_pt2e.cpython-39.pyc 2025-06-01T21:33:45.1974254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.1985289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\convert.py 2025-06-01T21:33:45.1990352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\custom_config.py 2025-06-01T21:33:45.1995141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse.py 2025-06-01T21:33:45.2000186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse_handler.py 2025-06-01T21:33:45.2003625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\graph_module.py 2025-06-01T21:33:45.2014083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_fbgemm.py 2025-06-01T21:33:45.2019054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_qnnpack.py 2025-06-01T21:33:45.2024658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lstm_utils.py 2025-06-01T21:33:45.2029485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\match_utils.py 2025-06-01T21:33:45.2033135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\pattern_utils.py 2025-06-01T21:33:45.2038046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\prepare.py 2025-06-01T21:33:45.2043379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\qconfig_mapping_utils.py 2025-06-01T21:33:45.2048345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\quantize_handler.py 2025-06-01T21:33:45.2053222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\tracer.py 2025-06-01T21:33:45.2056870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\utils.py 2025-06-01T21:33:45.2061854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_decomposed.py 2025-06-01T21:33:45.2066847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_equalize.py 2025-06-01T21:33:45.2071875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_lower_to_native_backend.py 2025-06-01T21:33:45.2076988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__init__.py 2025-06-01T21:33:45.2086149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\detector.py 2025-06-01T21:33:45.2116339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report.py 2025-06-01T21:33:45.2121442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_observer.py 2025-06-01T21:33:45.2130254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_visualizer.py 2025-06-01T21:33:45.2134634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__init__.py 2025-06-01T21:33:45.2140739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\detector.cpython-39.pyc 2025-06-01T21:33:45.2144855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report.cpython-39.pyc 2025-06-01T21:33:45.2148814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_observer.cpython-39.pyc 2025-06-01T21:33:45.2158530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_visualizer.cpython-39.pyc 2025-06-01T21:33:45.2162503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2172620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-06-01T21:33:45.2176390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\custom_config.cpython-39.pyc 2025-06-01T21:33:45.2180041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-06-01T21:33:45.2187572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse_handler.cpython-39.pyc 2025-06-01T21:33:45.2191108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-06-01T21:33:45.2196059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_fbgemm.cpython-39.pyc 2025-06-01T21:33:45.2199965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_qnnpack.cpython-39.pyc 2025-06-01T21:33:45.2203568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lstm_utils.cpython-39.pyc 2025-06-01T21:33:45.2207118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-06-01T21:33:45.2211130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-06-01T21:33:45.2215062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-06-01T21:33:45.2218916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\qconfig_mapping_utils.cpython-39.pyc 2025-06-01T21:33:45.2222702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\quantize_handler.cpython-39.pyc 2025-06-01T21:33:45.2226415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\tracer.cpython-39.pyc 2025-06-01T21:33:45.2230005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.2233812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_decomposed.cpython-39.pyc 2025-06-01T21:33:45.2237572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-06-01T21:33:45.2245586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_lower_to_native_backend.cpython-39.pyc 2025-06-01T21:33:45.2249385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2258461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\duplicate_dq_pass.py 2025-06-01T21:33:45.2262093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\export_utils.py 2025-06-01T21:33:45.2265422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\graph_utils.py 2025-06-01T21:33:45.2268788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\lowering.py 2025-06-01T21:33:45.2276966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\port_metadata_pass.py 2025-06-01T21:33:45.2280590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\prepare.py 2025-06-01T21:33:45.2284991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\qat_utils.py 2025-06-01T21:33:45.2288532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\utils.py 2025-06-01T21:33:45.2292056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_affine_quantization.py 2025-06-01T21:33:45.2295978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_numeric_debugger.py 2025-06-01T21:33:45.2300002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__init__.py 2025-06-01T21:33:45.2306474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\rewrite.py 2025-06-01T21:33:45.2310346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__init__.py 2025-06-01T21:33:45.2318050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\rewrite.cpython-39.pyc 2025-06-01T21:33:45.2321716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2329592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\duplicate_dq_pass.cpython-39.pyc 2025-06-01T21:33:45.2333337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\export_utils.cpython-39.pyc 2025-06-01T21:33:45.2336890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\graph_utils.cpython-39.pyc 2025-06-01T21:33:45.2345088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\lowering.cpython-39.pyc 2025-06-01T21:33:45.2348689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\port_metadata_pass.cpython-39.pyc 2025-06-01T21:33:45.2352234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\prepare.cpython-39.pyc 2025-06-01T21:33:45.2355850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\qat_utils.cpython-39.pyc 2025-06-01T21:33:45.2359547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.2363240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_affine_quantization.cpython-39.pyc 2025-06-01T21:33:45.2366982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_numeric_debugger.cpython-39.pyc 2025-06-01T21:33:45.2370539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2378709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\composable_quantizer.py 2025-06-01T21:33:45.2382460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\embedding_quantizer.py 2025-06-01T21:33:45.2386109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\quantizer.py 2025-06-01T21:33:45.2393882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\utils.py 2025-06-01T21:33:45.2397404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\x86_inductor_quantizer.py 2025-06-01T21:33:45.2401510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer.py 2025-06-01T21:33:45.2405119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py 2025-06-01T21:33:45.2408850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py 2025-06-01T21:33:45.2412341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__init__.py 2025-06-01T21:33:45.2421220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\composable_quantizer.cpython-39.pyc 2025-06-01T21:33:45.2430035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\embedding_quantizer.cpython-39.pyc 2025-06-01T21:33:45.2431119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\quantizer.cpython-39.pyc 2025-06-01T21:33:45.2439575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.2443362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\x86_inductor_quantizer.cpython-39.pyc 2025-06-01T21:33:45.2447250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer.cpython-39.pyc 2025-06-01T21:33:45.2450817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer_utils.cpython-39.pyc 2025-06-01T21:33:45.2456170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xpu_inductor_quantizer.cpython-39.pyc 2025-06-01T21:33:45.2459933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2472861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-06-01T21:33:45.2476534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-06-01T21:33:45.2480106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-06-01T21:33:45.2487809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\observer.cpython-39.pyc 2025-06-01T21:33:45.2491528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig.cpython-39.pyc 2025-06-01T21:33:45.2495134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig_mapping.cpython-39.pyc 2025-06-01T21:33:45.2498740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-06-01T21:33:45.2502320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize.cpython-39.pyc 2025-06-01T21:33:45.2505939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-06-01T21:33:45.2509691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-06-01T21:33:45.2513645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_pt2e.cpython-39.pyc 2025-06-01T21:33:45.2517193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quant_type.cpython-39.pyc 2025-06-01T21:33:45.2520857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\stubs.cpython-39.pyc 2025-06-01T21:33:45.2525235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.2529120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_correct_bias.cpython-39.pyc 2025-06-01T21:33:45.2532679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_equalize.cpython-39.pyc 2025-06-01T21:33:45.2536377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_learnable_fake_quantize.cpython-39.pyc 2025-06-01T21:33:45.2543990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2558612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2570406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\anomaly_mode.py 2025-06-01T21:33:45.2575161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\forward_ad.py 2025-06-01T21:33:45.2580083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\function.py 2025-06-01T21:33:45.2584742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\functional.py 2025-06-01T21:33:45.2597735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\gradcheck.py 2025-06-01T21:33:45.2639946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\grad_mode.py 2025-06-01T21:33:45.2645303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\graph.py 2025-06-01T21:33:45.2650370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler.py 2025-06-01T21:33:45.2656108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_legacy.py 2025-06-01T21:33:45.2661684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_util.py 2025-06-01T21:33:45.2665487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\variable.py 2025-06-01T21:33:45.2668969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__init__.py 2025-06-01T21:33:45.2677940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\tensor.py 2025-06-01T21:33:45.2681637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\utils.py 2025-06-01T21:33:45.2685001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__init__.py 2025-06-01T21:33:45.2693900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\tensor.cpython-39.pyc 2025-06-01T21:33:45.2697483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.2701150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2714611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\anomaly_mode.cpython-39.pyc 2025-06-01T21:33:45.2717986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\forward_ad.cpython-39.pyc 2025-06-01T21:33:45.2721640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\function.cpython-39.pyc 2025-06-01T21:33:45.2730854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\functional.cpython-39.pyc 2025-06-01T21:33:45.2734472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\gradcheck.cpython-39.pyc 2025-06-01T21:33:45.2738523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\grad_mode.cpython-39.pyc 2025-06-01T21:33:45.2742300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\graph.cpython-39.pyc 2025-06-01T21:33:45.2747366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler.cpython-39.pyc 2025-06-01T21:33:45.2751534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_legacy.cpython-39.pyc 2025-06-01T21:33:45.2755246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_util.cpython-39.pyc 2025-06-01T21:33:45.2759141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\variable.cpython-39.pyc 2025-06-01T21:33:45.2762878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2771763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__init__.py 2025-06-01T21:33:45.2780230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__init__.py 2025-06-01T21:33:45.2787407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2795217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__init__.py 2025-06-01T21:33:45.2802219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2809647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\rnn.py 2025-06-01T21:33:45.2813208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__init__.py 2025-06-01T21:33:45.2820508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:45.2825112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2832706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__init__.py 2025-06-01T21:33:45.2839605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2851105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__init__.py 2025-06-01T21:33:45.2858449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2865686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__init__.py 2025-06-01T21:33:45.2872994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2882210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__init__.py 2025-06-01T21:33:45.2889028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2896348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__init__.py 2025-06-01T21:33:45.2903723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2910907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__init__.py 2025-06-01T21:33:45.2917758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2925280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__init__.py 2025-06-01T21:33:45.2932152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2939612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__init__.py 2025-06-01T21:33:45.2946566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2954105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__init__.py 2025-06-01T21:33:45.2961255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2968537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__init__.py 2025-06-01T21:33:45.2975471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.2984515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\run_cpu.py 2025-06-01T21:33:45.2988289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__init__.py 2025-06-01T21:33:45.2994351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\run_cpu.cpython-39.pyc 2025-06-01T21:33:45.2997910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3005371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__init__.py 2025-06-01T21:33:45.3012495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3020337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\preprocess.py 2025-06-01T21:33:45.3023670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__init__.py 2025-06-01T21:33:45.3030094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\preprocess.cpython-39.pyc 2025-06-01T21:33:45.3033456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3040832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\prepare.py 2025-06-01T21:33:45.3044294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\serializer.py 2025-06-01T21:33:45.3048338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__init__.py 2025-06-01T21:33:45.3055475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\prepare.cpython-39.pyc 2025-06-01T21:33:45.3058924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\serializer.cpython-39.pyc 2025-06-01T21:33:45.3062698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3075356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3085192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\asmjit.dll 2025-06-01T21:33:45.3099618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\fbgemm.dll 2025-06-01T21:33:45.3178865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\FileStoreTest.exe 2025-06-01T21:33:45.3184978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\protoc.exe 2025-06-01T21:33:45.3205203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\TCPStoreTest.exe 2025-06-01T21:33:45.3215728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_api.exe 2025-06-01T21:33:45.3274773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_edge_op_registration.exe 2025-06-01T21:33:45.3280474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_jit.exe 2025-06-01T21:33:45.3327156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_lazy.exe 2025-06-01T21:33:45.3342646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_nativert.exe 2025-06-01T21:33:45.3349579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_tensorexpr.exe 2025-06-01T21:33:45.3381692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\tutorial_tensorexpr.exe 2025-06-01T21:33:45.3391045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\config.py 2025-06-01T21:33:45.3394448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\_cache.py 2025-06-01T21:33:45.3397823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__init__.py 2025-06-01T21:33:45.3404940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\config.cpython-39.pyc 2025-06-01T21:33:45.3410221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\_cache.cpython-39.pyc 2025-06-01T21:33:45.3415074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3428822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\_tensorboard_vis.py 2025-06-01T21:33:45.3433491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__init__.py 2025-06-01T21:33:45.3441178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\_tensorboard_vis.cpython-39.pyc 2025-06-01T21:33:45.3446195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3457024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__init__.py 2025-06-01T21:33:45.3466727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\autocast_mode.py 2025-06-01T21:33:45.3470407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\grad_scaler.py 2025-06-01T21:33:45.3475105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__init__.py 2025-06-01T21:33:45.3487973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-06-01T21:33:45.3492871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-06-01T21:33:45.3497778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3511689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3522768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\comm.py 2025-06-01T21:33:45.3527581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\error.py 2025-06-01T21:33:45.3531541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\gds.py 2025-06-01T21:33:45.3534977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\graphs.py 2025-06-01T21:33:45.3539935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\jiterator.py 2025-06-01T21:33:45.3544604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\memory.py 2025-06-01T21:33:45.3552751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nccl.py 2025-06-01T21:33:45.3557499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nvtx.py 2025-06-01T21:33:45.3562560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\profiler.py 2025-06-01T21:33:45.3567258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\random.py 2025-06-01T21:33:45.3570602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\sparse.py 2025-06-01T21:33:45.3575196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\streams.py 2025-06-01T21:33:45.3580055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\tunable.py 2025-06-01T21:33:45.3584196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_gpu_trace.py 2025-06-01T21:33:45.3588243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_memory_viz.py 2025-06-01T21:33:45.3593268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_sanitizer.py 2025-06-01T21:33:45.3617703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_utils.py 2025-06-01T21:33:45.3622846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__init__.py 2025-06-01T21:33:45.3632296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\autocast_mode.py 2025-06-01T21:33:45.3637500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\common.py 2025-06-01T21:33:45.3642646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\grad_scaler.py 2025-06-01T21:33:45.3646122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__init__.py 2025-06-01T21:33:45.3660650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-06-01T21:33:45.3664007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\common.cpython-39.pyc 2025-06-01T21:33:45.3668236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-06-01T21:33:45.3676607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3685399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\comm.cpython-39.pyc 2025-06-01T21:33:45.3688873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\error.cpython-39.pyc 2025-06-01T21:33:45.3692466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\gds.cpython-39.pyc 2025-06-01T21:33:45.3702825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\graphs.cpython-39.pyc 2025-06-01T21:33:45.3706680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\jiterator.cpython-39.pyc 2025-06-01T21:33:45.3710199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\memory.cpython-39.pyc 2025-06-01T21:33:45.3714047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nccl.cpython-39.pyc 2025-06-01T21:33:45.3717593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nvtx.cpython-39.pyc 2025-06-01T21:33:45.3721073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\profiler.cpython-39.pyc 2025-06-01T21:33:45.3724641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\random.cpython-39.pyc 2025-06-01T21:33:45.3728102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\sparse.cpython-39.pyc 2025-06-01T21:33:45.3731598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\streams.cpython-39.pyc 2025-06-01T21:33:45.3735150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\tunable.cpython-39.pyc 2025-06-01T21:33:45.3739137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_gpu_trace.cpython-39.pyc 2025-06-01T21:33:45.3742803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_memory_viz.cpython-39.pyc 2025-06-01T21:33:45.3746351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_sanitizer.cpython-39.pyc 2025-06-01T21:33:45.3750050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:45.3759921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3770657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\argparse_util.py 2025-06-01T21:33:45.3774272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\c10d_logger.py 2025-06-01T21:33:45.3777994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\collective_utils.py 2025-06-01T21:33:45.3785929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\constants.py 2025-06-01T21:33:45.3789488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\device_mesh.py 2025-06-01T21:33:45.3793242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\distributed_c10d.py 2025-06-01T21:33:45.3798889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launch.py 2025-06-01T21:33:45.3802212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\logging_handlers.py 2025-06-01T21:33:45.3805812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\remote_device.py 2025-06-01T21:33:45.3809897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rendezvous.py 2025-06-01T21:33:45.3813500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\run.py 2025-06-01T21:33:45.3817136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\utils.py 2025-06-01T21:33:45.3820712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_checkpointable.py 2025-06-01T21:33:45.3824272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable_state.py 2025-06-01T21:33:45.3827841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives.py 2025-06-01T21:33:45.3831620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives_impl.py 2025-06-01T21:33:45.3835162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_serialization.py 2025-06-01T21:33:45.3838821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_state_dict_utils.py 2025-06-01T21:33:45.3843066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__init__.py 2025-06-01T21:33:45.3850501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\join.py 2025-06-01T21:33:45.3854053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__init__.py 2025-06-01T21:33:45.3861338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py 2025-06-01T21:33:45.3864999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py 2025-06-01T21:33:45.3868662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py 2025-06-01T21:33:45.3878208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py 2025-06-01T21:33:45.3882978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py 2025-06-01T21:33:45.3888026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py 2025-06-01T21:33:45.3892873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py 2025-06-01T21:33:45.3896687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py 2025-06-01T21:33:45.3901694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__init__.py 2025-06-01T21:33:45.3911861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\ddp_zero_hook.cpython-39.pyc 2025-06-01T21:33:45.3917089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\debugging_hooks.cpython-39.pyc 2025-06-01T21:33:45.3920786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-06-01T21:33:45.3931130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\mixed_precision_hooks.cpython-39.pyc 2025-06-01T21:33:45.3936186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\optimizer_overlap_hooks.cpython-39.pyc 2025-06-01T21:33:45.3941210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\post_localSGD_hook.cpython-39.pyc 2025-06-01T21:33:45.3946752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\powerSGD_hook.cpython-39.pyc 2025-06-01T21:33:45.3952013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\quantization_hooks.cpython-39.pyc 2025-06-01T21:33:45.3956028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.3972081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\averagers.py 2025-06-01T21:33:45.3977095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py 2025-06-01T21:33:45.3981993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\utils.py 2025-06-01T21:33:45.3990571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__init__.py 2025-06-01T21:33:45.3999734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\averagers.cpython-39.pyc 2025-06-01T21:33:45.4003526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\hierarchical_model_averager.cpython-39.pyc 2025-06-01T21:33:45.4008486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.4017607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4027143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py 2025-06-01T21:33:45.4031902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__init__.py 2025-06-01T21:33:45.4040816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\checkpoint_wrapper.cpython-39.pyc 2025-06-01T21:33:45.4044644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4055224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\default_hooks.py 2025-06-01T21:33:45.4060072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__init__.py 2025-06-01T21:33:45.4069695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-06-01T21:33:45.4073464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4084032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py 2025-06-01T21:33:45.4088886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__init__.py 2025-06-01T21:33:45.4097646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\optimizer_overlap.cpython-39.pyc 2025-06-01T21:33:45.4102734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4121212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\quantization.py 2025-06-01T21:33:45.4126453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__init__.py 2025-06-01T21:33:45.4134431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\quantization.cpython-39.pyc 2025-06-01T21:33:45.4139904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4149498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\join.cpython-39.pyc 2025-06-01T21:33:45.4154687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4167793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__init__.py 2025-06-01T21:33:45.4176439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4184710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\api.py 2025-06-01T21:33:45.4188111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\default_planner.py 2025-06-01T21:33:45.4192366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\filesystem.py 2025-06-01T21:33:45.4195997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\format_utils.py 2025-06-01T21:33:45.4204786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logger.py 2025-06-01T21:33:45.4208283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logging_handlers.py 2025-06-01T21:33:45.4211747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\metadata.py 2025-06-01T21:33:45.4215067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\optimizer.py 2025-06-01T21:33:45.4218574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner.py 2025-06-01T21:33:45.4222303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner_helpers.py 2025-06-01T21:33:45.4225811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\resharding.py 2025-06-01T21:33:45.4229327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\staging.py 2025-06-01T21:33:45.4232605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\stateful.py 2025-06-01T21:33:45.4236940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict.py 2025-06-01T21:33:45.4240945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_loader.py 2025-06-01T21:33:45.4244669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_saver.py 2025-06-01T21:33:45.4248300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\storage.py 2025-06-01T21:33:45.4251627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\utils.py 2025-06-01T21:33:45.4255277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_executor.py 2025-06-01T21:33:45.4260467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_process_executor.py 2025-06-01T21:33:45.4264129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_thread_executor.py 2025-06-01T21:33:45.4267757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_checkpointer.py 2025-06-01T21:33:45.4271340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_save_plans.py 2025-06-01T21:33:45.4279591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_tensors.py 2025-06-01T21:33:45.4283086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_extension.py 2025-06-01T21:33:45.4286598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_fsspec_filesystem.py 2025-06-01T21:33:45.4290307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_planner.py 2025-06-01T21:33:45.4293938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_storage.py 2025-06-01T21:33:45.4297396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_nested_dict.py 2025-06-01T21:33:45.4301144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_sharded_tensor_utils.py 2025-06-01T21:33:45.4304631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_storage_utils.py 2025-06-01T21:33:45.4308206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_traverse.py 2025-06-01T21:33:45.4316058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_version.py 2025-06-01T21:33:45.4319418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__init__.py 2025-06-01T21:33:45.4328060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.4331768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\default_planner.cpython-39.pyc 2025-06-01T21:33:45.4335478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\filesystem.cpython-39.pyc 2025-06-01T21:33:45.4343946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\format_utils.cpython-39.pyc 2025-06-01T21:33:45.4347541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logger.cpython-39.pyc 2025-06-01T21:33:45.4351145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logging_handlers.cpython-39.pyc 2025-06-01T21:33:45.4354821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\metadata.cpython-39.pyc 2025-06-01T21:33:45.4359989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\optimizer.cpython-39.pyc 2025-06-01T21:33:45.4363677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner.cpython-39.pyc 2025-06-01T21:33:45.4367397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner_helpers.cpython-39.pyc 2025-06-01T21:33:45.4370996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\resharding.cpython-39.pyc 2025-06-01T21:33:45.4374563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\staging.cpython-39.pyc 2025-06-01T21:33:45.4378791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\stateful.cpython-39.pyc 2025-06-01T21:33:45.4382504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict.cpython-39.pyc 2025-06-01T21:33:45.4386689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_loader.cpython-39.pyc 2025-06-01T21:33:45.4390413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_saver.cpython-39.pyc 2025-06-01T21:33:45.4394246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\storage.cpython-39.pyc 2025-06-01T21:33:45.4402683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.4406376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_executor.cpython-39.pyc 2025-06-01T21:33:45.4410161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_process_executor.cpython-39.pyc 2025-06-01T21:33:45.4413892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_thread_executor.cpython-39.pyc 2025-06-01T21:33:45.4417731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_checkpointer.cpython-39.pyc 2025-06-01T21:33:45.4421690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_save_plans.cpython-39.pyc 2025-06-01T21:33:45.4425453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_tensors.cpython-39.pyc 2025-06-01T21:33:45.4429152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_extension.cpython-39.pyc 2025-06-01T21:33:45.4436931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_fsspec_filesystem.cpython-39.pyc 2025-06-01T21:33:45.4440791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_planner.cpython-39.pyc 2025-06-01T21:33:45.4444426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_storage.cpython-39.pyc 2025-06-01T21:33:45.4448251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_nested_dict.cpython-39.pyc 2025-06-01T21:33:45.4452087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_sharded_tensor_utils.cpython-39.pyc 2025-06-01T21:33:45.4455752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_storage_utils.cpython-39.pyc 2025-06-01T21:33:45.4461105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_traverse.cpython-39.pyc 2025-06-01T21:33:45.4464587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_version.cpython-39.pyc 2025-06-01T21:33:45.4474299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4484277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\control_plane.py 2025-06-01T21:33:45.4488148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__init__.py 2025-06-01T21:33:45.4495451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__init__.py 2025-06-01T21:33:45.4501484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\api.py 2025-06-01T21:33:45.4505321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\health_check_server.py 2025-06-01T21:33:45.4508822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\local_elastic_agent.py 2025-06-01T21:33:45.4512191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__init__.py 2025-06-01T21:33:45.4523922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.4527757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\health_check_server.cpython-39.pyc 2025-06-01T21:33:45.4531300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\local_elastic_agent.cpython-39.pyc 2025-06-01T21:33:45.4539987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4548090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4555762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\api.py 2025-06-01T21:33:45.4560166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\handlers.py 2025-06-01T21:33:45.4562952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__init__.py 2025-06-01T21:33:45.4569873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.4573458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\handlers.cpython-39.pyc 2025-06-01T21:33:45.4595214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4606253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\api.py 2025-06-01T21:33:45.4609912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__init__.py 2025-06-01T21:33:45.4616960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.4620699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4633403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\api.py 2025-06-01T21:33:45.4637238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py 2025-06-01T21:33:45.4640935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\tail_log.py 2025-06-01T21:33:45.4644285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__init__.py 2025-06-01T21:33:45.4656231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\error_handler.py 2025-06-01T21:33:45.4659901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\handlers.py 2025-06-01T21:33:45.4663434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__init__.py 2025-06-01T21:33:45.4708526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\error_handler.cpython-39.pyc 2025-06-01T21:33:45.4712167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\handlers.cpython-39.pyc 2025-06-01T21:33:45.4715819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4730219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py 2025-06-01T21:33:45.4735826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py 2025-06-01T21:33:45.4739456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py 2025-06-01T21:33:45.4751836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\handlers.cpython-39.pyc 2025-06-01T21:33:45.4755602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\subprocess_handler.cpython-39.pyc 2025-06-01T21:33:45.4760527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4772515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.4776323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\redirects.cpython-39.pyc 2025-06-01T21:33:45.4788758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\tail_log.cpython-39.pyc 2025-06-01T21:33:45.4789687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4796398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\api.py 2025-06-01T21:33:45.4799979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py 2025-06-01T21:33:45.4803383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py 2025-06-01T21:33:45.4811244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous.py 2025-06-01T21:33:45.4814988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py 2025-06-01T21:33:45.4818481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_server.py 2025-06-01T21:33:45.4822312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_store.py 2025-06-01T21:33:45.4826109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\registry.py 2025-06-01T21:33:45.4829803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py 2025-06-01T21:33:45.4833172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\utils.py 2025-06-01T21:33:45.4836857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\_etcd_stub.py 2025-06-01T21:33:45.4840677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__init__.py 2025-06-01T21:33:45.4850283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.4854010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\c10d_rendezvous_backend.cpython-39.pyc 2025-06-01T21:33:45.4857693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\dynamic_rendezvous.cpython-39.pyc 2025-06-01T21:33:45.4866340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous.cpython-39.pyc 2025-06-01T21:33:45.4870215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous_backend.cpython-39.pyc 2025-06-01T21:33:45.4873693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_server.cpython-39.pyc 2025-06-01T21:33:45.4877234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_store.cpython-39.pyc 2025-06-01T21:33:45.4881307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\registry.cpython-39.pyc 2025-06-01T21:33:45.4884878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\static_tcp_rendezvous.cpython-39.pyc 2025-06-01T21:33:45.4888349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.4891848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\_etcd_stub.cpython-39.pyc 2025-06-01T21:33:45.4895491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4903546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\api.py 2025-06-01T21:33:45.4906923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\debug_info_logging.py 2025-06-01T21:33:45.4910626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\file_based_local_timer.py 2025-06-01T21:33:45.4913916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\local_timer.py 2025-06-01T21:33:45.4921131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__init__.py 2025-06-01T21:33:45.4928104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.4931748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\debug_info_logging.cpython-39.pyc 2025-06-01T21:33:45.4936443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\file_based_local_timer.cpython-39.pyc 2025-06-01T21:33:45.4944804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\local_timer.cpython-39.pyc 2025-06-01T21:33:45.4949764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.4960153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\api.py 2025-06-01T21:33:45.4965494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\distributed.py 2025-06-01T21:33:45.4970902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\logging.py 2025-06-01T21:33:45.4974541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\log_level.py 2025-06-01T21:33:45.4979354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\store.py 2025-06-01T21:33:45.4987067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__init__.py 2025-06-01T21:33:45.4996637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\cycling_iterator.py 2025-06-01T21:33:45.5002076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py 2025-06-01T21:33:45.5007408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__init__.py 2025-06-01T21:33:45.5021043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\cycling_iterator.cpython-39.pyc 2025-06-01T21:33:45.5025990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\elastic_distributed_sampler.cpython-39.pyc 2025-06-01T21:33:45.5033017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5048177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.5053337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\distributed.cpython-39.pyc 2025-06-01T21:33:45.5058077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\logging.cpython-39.pyc 2025-06-01T21:33:45.5089967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\log_level.cpython-39.pyc 2025-06-01T21:33:45.5095223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\store.cpython-39.pyc 2025-06-01T21:33:45.5100799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5110148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\control_plane.cpython-39.pyc 2025-06-01T21:33:45.5113638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5124176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\api.py 2025-06-01T21:33:45.5129914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\fully_sharded_data_parallel.py 2025-06-01T21:33:45.5134284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\sharded_grad_scaler.py 2025-06-01T21:33:45.5137854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\wrap.py 2025-06-01T21:33:45.5141269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_common_utils.py 2025-06-01T21:33:45.5150579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_debug_utils.py 2025-06-01T21:33:45.5154740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_dynamo_utils.py 2025-06-01T21:33:45.5158964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_exec_order_utils.py 2025-06-01T21:33:45.5163016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_flat_param.py 2025-06-01T21:33:45.5167166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fsdp_extensions.py 2025-06-01T21:33:45.5172885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_init_utils.py 2025-06-01T21:33:45.5176811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_limiter_utils.py 2025-06-01T21:33:45.5180666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_optim_utils.py 2025-06-01T21:33:45.5184574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_runtime_utils.py 2025-06-01T21:33:45.5189526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_shard_utils.py 2025-06-01T21:33:45.5193152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_state_dict_utils.py 2025-06-01T21:33:45.5197728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_trace_utils.py 2025-06-01T21:33:45.5201477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_traversal_utils.py 2025-06-01T21:33:45.5204860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_unshard_param_utils.py 2025-06-01T21:33:45.5208804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_wrap_utils.py 2025-06-01T21:33:45.5218082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__init__.py 2025-06-01T21:33:45.5227614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_api.py 2025-06-01T21:33:45.5230895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py 2025-06-01T21:33:45.5234385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_common.py 2025-06-01T21:33:45.5243382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_init.py 2025-06-01T21:33:45.5248839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param.py 2025-06-01T21:33:45.5253666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py 2025-06-01T21:33:45.5257620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_state.py 2025-06-01T21:33:45.5263137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fully_shard.py 2025-06-01T21:33:45.5267092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__init__.py 2025-06-01T21:33:45.5274345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_api.cpython-39.pyc 2025-06-01T21:33:45.5278017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_collectives.cpython-39.pyc 2025-06-01T21:33:45.5282841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_common.cpython-39.pyc 2025-06-01T21:33:45.5290997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_init.cpython-39.pyc 2025-06-01T21:33:45.5294663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param.cpython-39.pyc 2025-06-01T21:33:45.5298511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param_group.cpython-39.pyc 2025-06-01T21:33:45.5302206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_state.cpython-39.pyc 2025-06-01T21:33:45.5305840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fully_shard.cpython-39.pyc 2025-06-01T21:33:45.5309356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5318269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.5322075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\fully_sharded_data_parallel.cpython-39.pyc 2025-06-01T21:33:45.5326355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\sharded_grad_scaler.cpython-39.pyc 2025-06-01T21:33:45.5341288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\wrap.cpython-39.pyc 2025-06-01T21:33:45.5344982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_common_utils.cpython-39.pyc 2025-06-01T21:33:45.5349850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_debug_utils.cpython-39.pyc 2025-06-01T21:33:45.5354546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_dynamo_utils.cpython-39.pyc 2025-06-01T21:33:45.5359418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_exec_order_utils.cpython-39.pyc 2025-06-01T21:33:45.5365621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_flat_param.cpython-39.pyc 2025-06-01T21:33:45.5371020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_fsdp_extensions.cpython-39.pyc 2025-06-01T21:33:45.5375808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_init_utils.cpython-39.pyc 2025-06-01T21:33:45.5381802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_limiter_utils.cpython-39.pyc 2025-06-01T21:33:45.5385707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_optim_utils.cpython-39.pyc 2025-06-01T21:33:45.5390946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_runtime_utils.cpython-39.pyc 2025-06-01T21:33:45.5395931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_shard_utils.cpython-39.pyc 2025-06-01T21:33:45.5401155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_state_dict_utils.cpython-39.pyc 2025-06-01T21:33:45.5408809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_trace_utils.cpython-39.pyc 2025-06-01T21:33:45.5413701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_traversal_utils.cpython-39.pyc 2025-06-01T21:33:45.5419436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_unshard_param_utils.cpython-39.pyc 2025-06-01T21:33:45.5423774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_wrap_utils.cpython-39.pyc 2025-06-01T21:33:45.5427507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5438619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\api.py 2025-06-01T21:33:45.5443572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__init__.py 2025-06-01T21:33:45.5452525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.5456110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5468649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\functional.py 2025-06-01T21:33:45.5474102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__init__.py 2025-06-01T21:33:45.5483396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\remote_module.py 2025-06-01T21:33:45.5488521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__init__.py 2025-06-01T21:33:45.5496085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\remote_module.cpython-39.pyc 2025-06-01T21:33:45.5501097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5509799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\instantiator.py 2025-06-01T21:33:45.5514461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__init__.py 2025-06-01T21:33:45.5521890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\remote_module_template.py 2025-06-01T21:33:45.5526935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__init__.py 2025-06-01T21:33:45.5535749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\remote_module_template.cpython-39.pyc 2025-06-01T21:33:45.5539565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5555140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\instantiator.cpython-39.pyc 2025-06-01T21:33:45.5559993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5574078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\functional.cpython-39.pyc 2025-06-01T21:33:45.5578982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5590056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\apply_optimizer_in_backward.py 2025-06-01T21:33:45.5594802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adadelta.py 2025-06-01T21:33:45.5598420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adagrad.py 2025-06-01T21:33:45.5609143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adam.py 2025-06-01T21:33:45.5617283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamax.py 2025-06-01T21:33:45.5622655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamw.py 2025-06-01T21:33:45.5627781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rmsprop.py 2025-06-01T21:33:45.5631597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rprop.py 2025-06-01T21:33:45.5636978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_sgd.py 2025-06-01T21:33:45.5642104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\named_optimizer.py 2025-06-01T21:33:45.5645546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\optimizer.py 2025-06-01T21:33:45.5649575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\post_localSGD_optimizer.py 2025-06-01T21:33:45.5654446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\utils.py 2025-06-01T21:33:45.5658067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.py 2025-06-01T21:33:45.5662089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.pyi 2025-06-01T21:33:45.5668489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\_deprecation_warning.py 2025-06-01T21:33:45.5673372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__init__.py 2025-06-01T21:33:45.5682177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\apply_optimizer_in_backward.cpython-39.pyc 2025-06-01T21:33:45.5686137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adadelta.cpython-39.pyc 2025-06-01T21:33:45.5689917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adagrad.cpython-39.pyc 2025-06-01T21:33:45.5700018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adam.cpython-39.pyc 2025-06-01T21:33:45.5703564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamax.cpython-39.pyc 2025-06-01T21:33:45.5707791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamw.cpython-39.pyc 2025-06-01T21:33:45.5711735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rmsprop.cpython-39.pyc 2025-06-01T21:33:45.5715734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rprop.cpython-39.pyc 2025-06-01T21:33:45.5719481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_sgd.cpython-39.pyc 2025-06-01T21:33:45.5723267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\named_optimizer.cpython-39.pyc 2025-06-01T21:33:45.5726871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\optimizer.cpython-39.pyc 2025-06-01T21:33:45.5730712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\post_localSGD_optimizer.cpython-39.pyc 2025-06-01T21:33:45.5734188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.5737830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\zero_redundancy_optimizer.cpython-39.pyc 2025-06-01T21:33:45.5741909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\_deprecation_warning.cpython-39.pyc 2025-06-01T21:33:45.5745714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5760323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\microbatch.py 2025-06-01T21:33:45.5765701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\schedules.py 2025-06-01T21:33:45.5769893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\stage.py 2025-06-01T21:33:45.5773920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_backward.py 2025-06-01T21:33:45.5781485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_debug.py 2025-06-01T21:33:45.5784773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_IR.py 2025-06-01T21:33:45.5788395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_schedule_visualizer.py 2025-06-01T21:33:45.5792127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_unflatten.py 2025-06-01T21:33:45.5795552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_utils.py 2025-06-01T21:33:45.5799248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__init__.py 2025-06-01T21:33:45.5806662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\microbatch.cpython-39.pyc 2025-06-01T21:33:45.5809952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\schedules.cpython-39.pyc 2025-06-01T21:33:45.5813881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\stage.cpython-39.pyc 2025-06-01T21:33:45.5823026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_backward.cpython-39.pyc 2025-06-01T21:33:45.5826818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_debug.cpython-39.pyc 2025-06-01T21:33:45.5830219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_IR.cpython-39.pyc 2025-06-01T21:33:45.5834106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_schedule_visualizer.cpython-39.pyc 2025-06-01T21:33:45.5837665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_unflatten.cpython-39.pyc 2025-06-01T21:33:45.5842000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:45.5845561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5853231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\api.py 2025-06-01T21:33:45.5858589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\backend_registry.py 2025-06-01T21:33:45.5862022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\constants.py 2025-06-01T21:33:45.5865337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\functions.py 2025-06-01T21:33:45.5872423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\internal.py 2025-06-01T21:33:45.5875626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\options.py 2025-06-01T21:33:45.5878719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\rref_proxy.py 2025-06-01T21:33:45.5882755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\server_process_global_profiler.py 2025-06-01T21:33:45.5900516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_utils.py 2025-06-01T21:33:45.5903817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__init__.py 2025-06-01T21:33:45.5911084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py 2025-06-01T21:33:45.5914946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__init__.py 2025-06-01T21:33:45.5921678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\faulty_agent_backend_registry.cpython-39.pyc 2025-06-01T21:33:45.5925123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5932876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.5937007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\backend_registry.cpython-39.pyc 2025-06-01T21:33:45.5940642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\constants.cpython-39.pyc 2025-06-01T21:33:45.5948479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\functions.cpython-39.pyc 2025-06-01T21:33:45.5952340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\internal.cpython-39.pyc 2025-06-01T21:33:45.5955876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\options.cpython-39.pyc 2025-06-01T21:33:45.5961066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\rref_proxy.cpython-39.pyc 2025-06-01T21:33:45.5964777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\server_process_global_profiler.cpython-39.pyc 2025-06-01T21:33:45.5968408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:45.5972149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.5981124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\device_mesh.py 2025-06-01T21:33:45.5985010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\placement_types.py 2025-06-01T21:33:45.5988637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_api.py 2025-06-01T21:33:45.5992385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_collective_utils.py 2025-06-01T21:33:45.6000233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dispatch.py 2025-06-01T21:33:45.6003957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dtensor_spec.py 2025-06-01T21:33:45.6007413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_op_schema.py 2025-06-01T21:33:45.6010807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_random.py 2025-06-01T21:33:45.6014204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_redistribute.py 2025-06-01T21:33:45.6017614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_sharding_prop.py 2025-06-01T21:33:45.6021274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_shards_wrapper.py 2025-06-01T21:33:45.6025497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_tp_conv.py 2025-06-01T21:33:45.6029457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_utils.py 2025-06-01T21:33:45.6032825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__init__.py 2025-06-01T21:33:45.6039721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_comm_mode.py 2025-06-01T21:33:45.6043573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_op_coverage.py 2025-06-01T21:33:45.6047395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_visualize_sharding.py 2025-06-01T21:33:45.6050713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__init__.py 2025-06-01T21:33:45.6063163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_comm_mode.cpython-39.pyc 2025-06-01T21:33:45.6068176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_op_coverage.cpython-39.pyc 2025-06-01T21:33:45.6073101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_visualize_sharding.cpython-39.pyc 2025-06-01T21:33:45.6081531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6092622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_attention.py 2025-06-01T21:33:45.6098434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_func_map.py 2025-06-01T21:33:45.6103368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_register_sharding.py 2025-06-01T21:33:45.6112756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_tp_transform.py 2025-06-01T21:33:45.6145325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__init__.py 2025-06-01T21:33:45.6146175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_attention.cpython-39.pyc 2025-06-01T21:33:45.6147212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_func_map.cpython-39.pyc 2025-06-01T21:33:45.6148135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_register_sharding.cpython-39.pyc 2025-06-01T21:33:45.6149056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_tp_transform.cpython-39.pyc 2025-06-01T21:33:45.6151345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6156855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\api.py 2025-06-01T21:33:45.6160649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\ddp.py 2025-06-01T21:33:45.6164132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\fsdp.py 2025-06-01T21:33:45.6170585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\input_reshard.py 2025-06-01T21:33:45.6174257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\loss.py 2025-06-01T21:33:45.6177654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\style.py 2025-06-01T21:33:45.6185335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_data_parallel_utils.py 2025-06-01T21:33:45.6188764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_utils.py 2025-06-01T21:33:45.6192927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__init__.py 2025-06-01T21:33:45.6202132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.6206343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\ddp.cpython-39.pyc 2025-06-01T21:33:45.6209869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\fsdp.cpython-39.pyc 2025-06-01T21:33:45.6217460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\input_reshard.cpython-39.pyc 2025-06-01T21:33:45.6221156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\loss.cpython-39.pyc 2025-06-01T21:33:45.6224696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\style.cpython-39.pyc 2025-06-01T21:33:45.6229799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_data_parallel_utils.cpython-39.pyc 2025-06-01T21:33:45.6233353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:45.6236920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6245100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\utils.py 2025-06-01T21:33:45.6248503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_common_rules.py 2025-06-01T21:33:45.6252099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_conv_ops.py 2025-06-01T21:33:45.6255802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_einsum_strategy.py 2025-06-01T21:33:45.6264200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_embedding_ops.py 2025-06-01T21:33:45.6268456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_math_ops.py 2025-06-01T21:33:45.6272396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_matrix_ops.py 2025-06-01T21:33:45.6276514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_pointwise_ops.py 2025-06-01T21:33:45.6280485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_random_ops.py 2025-06-01T21:33:45.6283956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_tensor_ops.py 2025-06-01T21:33:45.6287570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_view_ops.py 2025-06-01T21:33:45.6291313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__init__.py 2025-06-01T21:33:45.6298676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.6302331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_common_rules.cpython-39.pyc 2025-06-01T21:33:45.6305811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_conv_ops.cpython-39.pyc 2025-06-01T21:33:45.6314335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_einsum_strategy.cpython-39.pyc 2025-06-01T21:33:45.6318145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_embedding_ops.cpython-39.pyc 2025-06-01T21:33:45.6321399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_math_ops.cpython-39.pyc 2025-06-01T21:33:45.6325040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_matrix_ops.cpython-39.pyc 2025-06-01T21:33:45.6328513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_pointwise_ops.cpython-39.pyc 2025-06-01T21:33:45.6332720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_random_ops.cpython-39.pyc 2025-06-01T21:33:45.6336260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_tensor_ops.cpython-39.pyc 2025-06-01T21:33:45.6340123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_view_ops.cpython-39.pyc 2025-06-01T21:33:45.6343664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6351935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\device_mesh.cpython-39.pyc 2025-06-01T21:33:45.6355499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\placement_types.cpython-39.pyc 2025-06-01T21:33:45.6359096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_api.cpython-39.pyc 2025-06-01T21:33:45.6367769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_collective_utils.cpython-39.pyc 2025-06-01T21:33:45.6371665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dispatch.cpython-39.pyc 2025-06-01T21:33:45.6375287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dtensor_spec.cpython-39.pyc 2025-06-01T21:33:45.6378831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_op_schema.cpython-39.pyc 2025-06-01T21:33:45.6382383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_random.cpython-39.pyc 2025-06-01T21:33:45.6386457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_redistribute.cpython-39.pyc 2025-06-01T21:33:45.6390070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_sharding_prop.cpython-39.pyc 2025-06-01T21:33:45.6393908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_shards_wrapper.cpython-39.pyc 2025-06-01T21:33:45.6397736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_tp_conv.cpython-39.pyc 2025-06-01T21:33:45.6401340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:45.6404752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6414182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\checkpoint_activation.py 2025-06-01T21:33:45.6417969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\contract.py 2025-06-01T21:33:45.6421551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate.py 2025-06-01T21:33:45.6426546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__init__.py 2025-06-01T21:33:45.6440199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\fully_shard.py 2025-06-01T21:33:45.6445113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__init__.py 2025-06-01T21:33:45.6453291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\fully_shard.cpython-39.pyc 2025-06-01T21:33:45.6458105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6468638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\checkpoint_activation.cpython-39.pyc 2025-06-01T21:33:45.6473463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\contract.cpython-39.pyc 2025-06-01T21:33:45.6477290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate.cpython-39.pyc 2025-06-01T21:33:45.6487638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6498184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\api.py 2025-06-01T21:33:45.6503174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\common_op_utils.py 2025-06-01T21:33:45.6506695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\metadata.py 2025-06-01T21:33:45.6511346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\op_registry_utils.py 2025-06-01T21:33:45.6516152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharder.py 2025-06-01T21:33:45.6526805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\_utils.py 2025-06-01T21:33:45.6530558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__init__.py 2025-06-01T21:33:45.6540470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__init__.py 2025-06-01T21:33:45.6550227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6559137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\api.py 2025-06-01T21:33:45.6564247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__init__.py 2025-06-01T21:33:45.6574224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.6577841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6588951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\api.py 2025-06-01T21:33:45.6594032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logger.py 2025-06-01T21:33:45.6598955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logging_handlers.py 2025-06-01T21:33:45.6603677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\metadata.py 2025-06-01T21:33:45.6607274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\reshard.py 2025-06-01T21:33:45.6641212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\shard.py 2025-06-01T21:33:45.6646371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\utils.py 2025-06-01T21:33:45.6651425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__init__.py 2025-06-01T21:33:45.6660455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py 2025-06-01T21:33:45.6665652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\init.py 2025-06-01T21:33:45.6669024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py 2025-06-01T21:33:45.6672332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py 2025-06-01T21:33:45.6677508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\_common.py 2025-06-01T21:33:45.6684695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__init__.py 2025-06-01T21:33:45.6693954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\binary_cmp.cpython-39.pyc 2025-06-01T21:33:45.6697590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\init.cpython-39.pyc 2025-06-01T21:33:45.6701519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\misc_ops.cpython-39.pyc 2025-06-01T21:33:45.6709836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\tensor_ops.cpython-39.pyc 2025-06-01T21:33:45.6713650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\_common.cpython-39.pyc 2025-06-01T21:33:45.6717827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6731653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.6735894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logger.cpython-39.pyc 2025-06-01T21:33:45.6739461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logging_handlers.cpython-39.pyc 2025-06-01T21:33:45.6747553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\metadata.cpython-39.pyc 2025-06-01T21:33:45.6752974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\reshard.cpython-39.pyc 2025-06-01T21:33:45.6756322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\shard.cpython-39.pyc 2025-06-01T21:33:45.6759912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.6763378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6772941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\api.py 2025-06-01T21:33:45.6776442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__init__.py 2025-06-01T21:33:45.6784924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.6788474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6796175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\api.py 2025-06-01T21:33:45.6799761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py 2025-06-01T21:33:45.6803455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\_internals.py 2025-06-01T21:33:45.6807000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__init__.py 2025-06-01T21:33:45.6818079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py 2025-06-01T21:33:45.6821696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py 2025-06-01T21:33:45.6825104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py 2025-06-01T21:33:45.6832225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py 2025-06-01T21:33:45.6838950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding.cpython-39.pyc 2025-06-01T21:33:45.6842771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding_bag.cpython-39.pyc 2025-06-01T21:33:45.6846288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\_common.cpython-39.pyc 2025-06-01T21:33:45.6854817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6862774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.6866464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\chunk_sharding_spec.cpython-39.pyc 2025-06-01T21:33:45.6869697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\_internals.cpython-39.pyc 2025-06-01T21:33:45.6877419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6888439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.6892085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\common_op_utils.cpython-39.pyc 2025-06-01T21:33:45.6897363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\metadata.cpython-39.pyc 2025-06-01T21:33:45.6906993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\op_registry_utils.cpython-39.pyc 2025-06-01T21:33:45.6911800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\sharder.cpython-39.pyc 2025-06-01T21:33:45.6916155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:45.6920245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6928507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__init__.py 2025-06-01T21:33:45.6935422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6943545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__init__.py 2025-06-01T21:33:45.6951571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6958585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__init__.py 2025-06-01T21:33:45.6966259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.6974659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\api.py 2025-06-01T21:33:45.6977130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\placement_types.py 2025-06-01T21:33:45.6980798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__init__.py 2025-06-01T21:33:45.6988544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\api.cpython-39.pyc 2025-06-01T21:33:45.6992187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\placement_types.cpython-39.pyc 2025-06-01T21:33:45.6995623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.7010708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\common_utils.py 2025-06-01T21:33:45.7013993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fake_collectives.py 2025-06-01T21:33:45.7018965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fsdp2_mem_tracker.py 2025-06-01T21:33:45.7024095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\ilp_utils.py 2025-06-01T21:33:45.7033276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\memory_tracker.py 2025-06-01T21:33:45.7036863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mem_tracker.py 2025-06-01T21:33:45.7042417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mod_tracker.py 2025-06-01T21:33:45.7047309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\runtime_estimator.py 2025-06-01T21:33:45.7052430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_estimator.py 2025-06-01T21:33:45.7057818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_ilp.py 2025-06-01T21:33:45.7061360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__init__.py 2025-06-01T21:33:45.7072089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\common_utils.cpython-39.pyc 2025-06-01T21:33:45.7077054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fake_collectives.cpython-39.pyc 2025-06-01T21:33:45.7082223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fsdp2_mem_tracker.cpython-39.pyc 2025-06-01T21:33:45.7090482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\ilp_utils.cpython-39.pyc 2025-06-01T21:33:45.7095442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\memory_tracker.cpython-39.pyc 2025-06-01T21:33:45.7100351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mem_tracker.cpython-39.pyc 2025-06-01T21:33:45.7131906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mod_tracker.cpython-39.pyc 2025-06-01T21:33:45.7138013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\runtime_estimator.cpython-39.pyc 2025-06-01T21:33:45.7143449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_estimator.cpython-39.pyc 2025-06-01T21:33:45.7149076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_ilp.cpython-39.pyc 2025-06-01T21:33:45.7154402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.7164967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\argparse_util.cpython-39.pyc 2025-06-01T21:33:45.7168574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\c10d_logger.cpython-39.pyc 2025-06-01T21:33:45.7172345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\collective_utils.cpython-39.pyc 2025-06-01T21:33:45.7183079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\constants.cpython-39.pyc 2025-06-01T21:33:45.7186625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\device_mesh.cpython-39.pyc 2025-06-01T21:33:45.7190407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\distributed_c10d.cpython-39.pyc 2025-06-01T21:33:45.7195112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\launch.cpython-39.pyc 2025-06-01T21:33:45.7198683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\logging_handlers.cpython-39.pyc 2025-06-01T21:33:45.7202340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\remote_device.cpython-39.pyc 2025-06-01T21:33:45.7206081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\rendezvous.cpython-39.pyc 2025-06-01T21:33:45.7209572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\run.cpython-39.pyc 2025-06-01T21:33:45.7215120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.7218792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_checkpointable.cpython-39.pyc 2025-06-01T21:33:45.7222471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_composable_state.cpython-39.pyc 2025-06-01T21:33:45.7226550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives.cpython-39.pyc 2025-06-01T21:33:45.7230462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives_impl.cpython-39.pyc 2025-06-01T21:33:45.7238253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_serialization.cpython-39.pyc 2025-06-01T21:33:45.7241880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_state_dict_utils.cpython-39.pyc 2025-06-01T21:33:45.7245664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.7255193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\bernoulli.py 2025-06-01T21:33:45.7258919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\beta.py 2025-06-01T21:33:45.7262209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\binomial.py 2025-06-01T21:33:45.7265776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\categorical.py 2025-06-01T21:33:45.7275806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\cauchy.py 2025-06-01T21:33:45.7279223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\chi2.py 2025-06-01T21:33:45.7282645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraints.py 2025-06-01T21:33:45.7287167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraint_registry.py 2025-06-01T21:33:45.7290910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\continuous_bernoulli.py 2025-06-01T21:33:45.7294606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\dirichlet.py 2025-06-01T21:33:45.7298096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\distribution.py 2025-06-01T21:33:45.7301673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exponential.py 2025-06-01T21:33:45.7305403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exp_family.py 2025-06-01T21:33:45.7308899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\fishersnedecor.py 2025-06-01T21:33:45.7312631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gamma.py 2025-06-01T21:33:45.7316111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\generalized_pareto.py 2025-06-01T21:33:45.7319521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\geometric.py 2025-06-01T21:33:45.7322875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gumbel.py 2025-06-01T21:33:45.7327240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_cauchy.py 2025-06-01T21:33:45.7330865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_normal.py 2025-06-01T21:33:45.7334308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\independent.py 2025-06-01T21:33:45.7338431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\inverse_gamma.py 2025-06-01T21:33:45.7346012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kl.py 2025-06-01T21:33:45.7349616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kumaraswamy.py 2025-06-01T21:33:45.7353164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\laplace.py 2025-06-01T21:33:45.7356560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lkj_cholesky.py 2025-06-01T21:33:45.7360021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\logistic_normal.py 2025-06-01T21:33:45.7363532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\log_normal.py 2025-06-01T21:33:45.7367053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lowrank_multivariate_normal.py 2025-06-01T21:33:45.7372140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\mixture_same_family.py 2025-06-01T21:33:45.7375885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multinomial.py 2025-06-01T21:33:45.7379626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multivariate_normal.py 2025-06-01T21:33:45.7387049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\negative_binomial.py 2025-06-01T21:33:45.7390416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\normal.py 2025-06-01T21:33:45.7393846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\one_hot_categorical.py 2025-06-01T21:33:45.7397571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\pareto.py 2025-06-01T21:33:45.7401007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\poisson.py 2025-06-01T21:33:45.7404412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_bernoulli.py 2025-06-01T21:33:45.7407992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_categorical.py 2025-06-01T21:33:45.7411600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\studentT.py 2025-06-01T21:33:45.7415169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transformed_distribution.py 2025-06-01T21:33:45.7418394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transforms.py 2025-06-01T21:33:45.7422277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\uniform.py 2025-06-01T21:33:45.7425734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\utils.py 2025-06-01T21:33:45.7429326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\von_mises.py 2025-06-01T21:33:45.7437474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\weibull.py 2025-06-01T21:33:45.7440884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\wishart.py 2025-06-01T21:33:45.7444193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__init__.py 2025-06-01T21:33:45.7453253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\bernoulli.cpython-39.pyc 2025-06-01T21:33:45.7457123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\beta.cpython-39.pyc 2025-06-01T21:33:45.7460726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\binomial.cpython-39.pyc 2025-06-01T21:33:45.7468330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\categorical.cpython-39.pyc 2025-06-01T21:33:45.7473443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\cauchy.cpython-39.pyc 2025-06-01T21:33:45.7478392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\chi2.cpython-39.pyc 2025-06-01T21:33:45.7483322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraints.cpython-39.pyc 2025-06-01T21:33:45.7487212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraint_registry.cpython-39.pyc 2025-06-01T21:33:45.7492150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\continuous_bernoulli.cpython-39.pyc 2025-06-01T21:33:45.7496975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\dirichlet.cpython-39.pyc 2025-06-01T21:33:45.7501882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\distribution.cpython-39.pyc 2025-06-01T21:33:45.7506628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exponential.cpython-39.pyc 2025-06-01T21:33:45.7510451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exp_family.cpython-39.pyc 2025-06-01T21:33:45.7515844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\fishersnedecor.cpython-39.pyc 2025-06-01T21:33:45.7520690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gamma.cpython-39.pyc 2025-06-01T21:33:45.7525579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\generalized_pareto.cpython-39.pyc 2025-06-01T21:33:45.7530351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\geometric.cpython-39.pyc 2025-06-01T21:33:45.7539539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gumbel.cpython-39.pyc 2025-06-01T21:33:45.7544942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_cauchy.cpython-39.pyc 2025-06-01T21:33:45.7549885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_normal.cpython-39.pyc 2025-06-01T21:33:45.7554925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\independent.cpython-39.pyc 2025-06-01T21:33:45.7559999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\inverse_gamma.cpython-39.pyc 2025-06-01T21:33:45.7563689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kl.cpython-39.pyc 2025-06-01T21:33:45.7568759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kumaraswamy.cpython-39.pyc 2025-06-01T21:33:45.7574238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\laplace.cpython-39.pyc 2025-06-01T21:33:45.7583152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lkj_cholesky.cpython-39.pyc 2025-06-01T21:33:45.7586792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\logistic_normal.cpython-39.pyc 2025-06-01T21:33:45.7590897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\log_normal.cpython-39.pyc 2025-06-01T21:33:45.7595097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lowrank_multivariate_normal.cpython-39.pyc 2025-06-01T21:33:45.7601282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\mixture_same_family.cpython-39.pyc 2025-06-01T21:33:45.7605262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multinomial.cpython-39.pyc 2025-06-01T21:33:45.7610161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multivariate_normal.cpython-39.pyc 2025-06-01T21:33:45.7615635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\negative_binomial.cpython-39.pyc 2025-06-01T21:33:45.8201985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\normal.cpython-39.pyc 2025-06-01T21:33:45.8206537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\one_hot_categorical.cpython-39.pyc 2025-06-01T21:33:45.8210874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\pareto.cpython-39.pyc 2025-06-01T21:33:45.8214677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\poisson.cpython-39.pyc 2025-06-01T21:33:45.8218993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_bernoulli.cpython-39.pyc 2025-06-01T21:33:45.8222828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_categorical.cpython-39.pyc 2025-06-01T21:33:45.8226345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\studentT.cpython-39.pyc 2025-06-01T21:33:45.8230043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transformed_distribution.cpython-39.pyc 2025-06-01T21:33:45.8795052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transforms.cpython-39.pyc 2025-06-01T21:33:45.8800410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\uniform.cpython-39.pyc 2025-06-01T21:33:45.8805595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.8811038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\von_mises.cpython-39.pyc 2025-06-01T21:33:45.8816050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\weibull.cpython-39.pyc 2025-06-01T21:33:45.8820043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\wishart.cpython-39.pyc 2025-06-01T21:33:45.8825147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.8837778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_obj.py 2025-06-01T21:33:45.8842557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_ops.py 2025-06-01T21:33:45.8847336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\decomp_utils.py 2025-06-01T21:33:45.8852081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\dynamic_shapes.py 2025-06-01T21:33:45.8860627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\exported_program.py 2025-06-01T21:33:45.8866066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\graph_signature.py 2025-06-01T21:33:45.8871135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\unflatten.py 2025-06-01T21:33:45.8876503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_draft_export.py 2025-06-01T21:33:45.8881287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_auto_functionalized_pass.py 2025-06-01T21:33:45.8885225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_effect_tokens_pass.py 2025-06-01T21:33:45.8892343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_safeguard.py 2025-06-01T21:33:45.8897397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_swap.py 2025-06-01T21:33:45.8899980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_trace.py 2025-06-01T21:33:45.8904248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_tree_utils.py 2025-06-01T21:33:45.8908718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_unlift.py 2025-06-01T21:33:45.8911729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_wrapper_utils.py 2025-06-01T21:33:45.8915264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__init__.py 2025-06-01T21:33:45.8923095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__init__.py 2025-06-01T21:33:45.8930273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.8938436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__init__.py 2025-06-01T21:33:45.8945621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.8954119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\constants.py 2025-06-01T21:33:45.8957119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package.py 2025-06-01T21:33:45.8962583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__init__.py 2025-06-01T21:33:45.8977020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\constants.cpython-39.pyc 2025-06-01T21:33:45.8982141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package.cpython-39.pyc 2025-06-01T21:33:45.8986938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9005581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_obj.cpython-39.pyc 2025-06-01T21:33:45.9010576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_ops.cpython-39.pyc 2025-06-01T21:33:45.9015582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\decomp_utils.cpython-39.pyc 2025-06-01T21:33:45.9023605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\dynamic_shapes.cpython-39.pyc 2025-06-01T21:33:45.9028860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\exported_program.cpython-39.pyc 2025-06-01T21:33:45.9034119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\graph_signature.cpython-39.pyc 2025-06-01T21:33:45.9039008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\unflatten.cpython-39.pyc 2025-06-01T21:33:45.9044441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_draft_export.cpython-39.pyc 2025-06-01T21:33:45.9049479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_auto_functionalized_pass.cpython-39.pyc 2025-06-01T21:33:45.9053468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_effect_tokens_pass.cpython-39.pyc 2025-06-01T21:33:45.9058619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_safeguard.cpython-39.pyc 2025-06-01T21:33:45.9063917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_swap.cpython-39.pyc 2025-06-01T21:33:45.9068749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_trace.cpython-39.pyc 2025-06-01T21:33:45.9074057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_tree_utils.cpython-39.pyc 2025-06-01T21:33:45.9079616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_unlift.cpython-39.pyc 2025-06-01T21:33:45.9083363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_wrapper_utils.cpython-39.pyc 2025-06-01T21:33:45.9093748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9104658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__init__.py 2025-06-01T21:33:45.9113581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9123073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__init__.py 2025-06-01T21:33:45.9130082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9139193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__init__.py 2025-06-01T21:33:45.9146063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9153586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\annotate.py 2025-06-01T21:33:45.9157145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\config.py 2025-06-01T21:33:45.9160573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph.py 2025-06-01T21:33:45.9164570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph_module.py 2025-06-01T21:33:45.9170016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\immutable_collections.py 2025-06-01T21:33:45.9178638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\interpreter.py 2025-06-01T21:33:45.9182132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\node.py 2025-06-01T21:33:45.9186126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\operator_schemas.py 2025-06-01T21:33:45.9189580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\proxy.py 2025-06-01T21:33:45.9193208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\subgraph_rewriter.py 2025-06-01T21:33:45.9196815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\tensor_type.py 2025-06-01T21:33:45.9200213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\traceback.py 2025-06-01T21:33:45.9203614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_compatibility.py 2025-06-01T21:33:45.9206998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_graph_pickler.py 2025-06-01T21:33:45.9210434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_lazy_graph_module.py 2025-06-01T21:33:45.9213836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_pytree.py 2025-06-01T21:33:45.9217187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_symbolic_trace.py 2025-06-01T21:33:45.9221017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_utils.py 2025-06-01T21:33:45.9225833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__init__.py 2025-06-01T21:33:45.9233302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\accelerator_partitioner.py 2025-06-01T21:33:45.9237094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\const_fold.py 2025-06-01T21:33:45.9240584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\debug.py 2025-06-01T21:33:45.9248946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\graph_gradual_typechecker.py 2025-06-01T21:33:45.9252563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\merge_matmul.py 2025-06-01T21:33:45.9256466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\meta_tracer.py 2025-06-01T21:33:45.9260095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\normalize.py 2025-06-01T21:33:45.9263723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\optimization.py 2025-06-01T21:33:45.9267237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\partitioner_utils.py 2025-06-01T21:33:45.9271185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\proxy_tensor.py 2025-06-01T21:33:45.9277247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\recording.py 2025-06-01T21:33:45.9281795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\refinement_types.py 2025-06-01T21:33:45.9285786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\rewriter.py 2025-06-01T21:33:45.9290898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\schema_type_annotation.py 2025-06-01T21:33:45.9295066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\symbolic_shapes.py 2025-06-01T21:33:45.9303741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\sym_node.py 2025-06-01T21:33:45.9307810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unify_refinements.py 2025-06-01T21:33:45.9311369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\validator.py 2025-06-01T21:33:45.9315207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_backward_state.py 2025-06-01T21:33:45.9318521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_config.py 2025-06-01T21:33:45.9321933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_constant_symnode.py 2025-06-01T21:33:45.9330048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_dynamism.py 2025-06-01T21:33:45.9333412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__init__.py 2025-06-01T21:33:45.9340141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint.py 2025-06-01T21:33:45.9344455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_generator.py 2025-06-01T21:33:45.9348203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py 2025-06-01T21:33:45.9356558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\operation.py 2025-06-01T21:33:45.9360580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py 2025-06-01T21:33:45.9364694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\util.py 2025-06-01T21:33:45.9368082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\z3_types.py 2025-06-01T21:33:45.9371507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__init__.py 2025-06-01T21:33:45.9378022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint.cpython-39.pyc 2025-06-01T21:33:45.9382038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_generator.cpython-39.pyc 2025-06-01T21:33:45.9385959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_transformation.cpython-39.pyc 2025-06-01T21:33:45.9395840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\operation.cpython-39.pyc 2025-06-01T21:33:45.9399497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\transform_to_z3.cpython-39.pyc 2025-06-01T21:33:45.9403048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\util.cpython-39.pyc 2025-06-01T21:33:45.9406916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\z3_types.cpython-39.pyc 2025-06-01T21:33:45.9410628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9418776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\core.py 2025-06-01T21:33:45.9422293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\dispatch.py 2025-06-01T21:33:45.9425674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\match.py 2025-06-01T21:33:45.9428989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\more.py 2025-06-01T21:33:45.9432788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\unification_tools.py 2025-06-01T21:33:45.9456134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\utils.py 2025-06-01T21:33:45.9461006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\variable.py 2025-06-01T21:33:45.9466046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__init__.py 2025-06-01T21:33:45.9475784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\conflict.py 2025-06-01T21:33:45.9479257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\core.py 2025-06-01T21:33:45.9484809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\dispatcher.py 2025-06-01T21:33:45.9489021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\utils.py 2025-06-01T21:33:45.9494034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\variadic.py 2025-06-01T21:33:45.9502411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__init__.py 2025-06-01T21:33:45.9512394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\conflict.cpython-39.pyc 2025-06-01T21:33:45.9517923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\core.cpython-39.pyc 2025-06-01T21:33:45.9522920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\dispatcher.cpython-39.pyc 2025-06-01T21:33:45.9532056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.9536911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\variadic.cpython-39.pyc 2025-06-01T21:33:45.9542300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9553162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\core.cpython-39.pyc 2025-06-01T21:33:45.9557540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\dispatch.cpython-39.pyc 2025-06-01T21:33:45.9560497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\match.cpython-39.pyc 2025-06-01T21:33:45.9569794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\more.cpython-39.pyc 2025-06-01T21:33:45.9574083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\unification_tools.cpython-39.pyc 2025-06-01T21:33:45.9577694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:45.9581487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\variable.cpython-39.pyc 2025-06-01T21:33:45.9585004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9594486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\accelerator_partitioner.cpython-39.pyc 2025-06-01T21:33:45.9598360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\const_fold.cpython-39.pyc 2025-06-01T21:33:45.9601803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\debug.cpython-39.pyc 2025-06-01T21:33:45.9611390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\graph_gradual_typechecker.cpython-39.pyc 2025-06-01T21:33:45.9616684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\merge_matmul.cpython-39.pyc 2025-06-01T21:33:45.9621892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\meta_tracer.cpython-39.pyc 2025-06-01T21:33:45.9625668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\normalize.cpython-39.pyc 2025-06-01T21:33:45.9630743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\optimization.cpython-39.pyc 2025-06-01T21:33:45.9635821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\partitioner_utils.cpython-39.pyc 2025-06-01T21:33:45.9655426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\proxy_tensor.cpython-39.pyc 2025-06-01T21:33:45.9661295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\recording.cpython-39.pyc 2025-06-01T21:33:45.9666588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\refinement_types.cpython-39.pyc 2025-06-01T21:33:45.9672002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\rewriter.cpython-39.pyc 2025-06-01T21:33:45.9676219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\schema_type_annotation.cpython-39.pyc 2025-06-01T21:33:45.9681484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\symbolic_shapes.cpython-39.pyc 2025-06-01T21:33:45.9686199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\sym_node.cpython-39.pyc 2025-06-01T21:33:45.9694081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\unify_refinements.cpython-39.pyc 2025-06-01T21:33:45.9697969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\validator.cpython-39.pyc 2025-06-01T21:33:45.9701719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_backward_state.cpython-39.pyc 2025-06-01T21:33:45.9707198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_config.cpython-39.pyc 2025-06-01T21:33:45.9711129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_constant_symnode.cpython-39.pyc 2025-06-01T21:33:45.9714744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_dynamism.cpython-39.pyc 2025-06-01T21:33:45.9718243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9727500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\annotate_getitem_nodes.py 2025-06-01T21:33:45.9731440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\fake_tensor_prop.py 2025-06-01T21:33:45.9735917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_drawer.py 2025-06-01T21:33:45.9739693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_manipulation.py 2025-06-01T21:33:45.9747637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_transform_observer.py 2025-06-01T21:33:45.9751117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\net_min_base.py 2025-06-01T21:33:45.9754812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\operator_support.py 2025-06-01T21:33:45.9758209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\param_fetch.py 2025-06-01T21:33:45.9761631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\pass_manager.py 2025-06-01T21:33:45.9765057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\reinplace.py 2025-06-01T21:33:45.9768801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\runtime_assert.py 2025-06-01T21:33:45.9772544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\shape_prop.py 2025-06-01T21:33:45.9776450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\splitter_base.py 2025-06-01T21:33:45.9786552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_module.py 2025-06-01T21:33:45.9787114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_utils.py 2025-06-01T21:33:45.9790254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tools_common.py 2025-06-01T21:33:45.9795818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\_tensorify_python_scalars.py 2025-06-01T21:33:45.9799393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__init__.py 2025-06-01T21:33:45.9806530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\cudagraphs.py 2025-06-01T21:33:45.9810036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__init__.py 2025-06-01T21:33:45.9816892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-06-01T21:33:45.9820668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9833079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__init__.py 2025-06-01T21:33:45.9838943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\cse_pass.py 2025-06-01T21:33:45.9842532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__init__.py 2025-06-01T21:33:45.9848306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\cse_pass.cpython-39.pyc 2025-06-01T21:33:45.9852908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9860744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9868679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\partitioner.py 2025-06-01T21:33:45.9872108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_base.py 2025-06-01T21:33:45.9875716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_manager.py 2025-06-01T21:33:45.9879871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__init__.py 2025-06-01T21:33:45.9895059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\partitioner.cpython-39.pyc 2025-06-01T21:33:45.9899981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_base.cpython-39.pyc 2025-06-01T21:33:45.9903649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_manager.cpython-39.pyc 2025-06-01T21:33:45.9911364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9919359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\test_pass_manager.py 2025-06-01T21:33:45.9922790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__init__.py 2025-06-01T21:33:45.9928993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\test_pass_manager.cpython-39.pyc 2025-06-01T21:33:45.9932529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:45.9940196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\common.py 2025-06-01T21:33:45.9943594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\fuser_utils.py 2025-06-01T21:33:45.9946992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_utils.py 2025-06-01T21:33:45.9950500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_with_name_node_map_utils.py 2025-06-01T21:33:45.9958280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\source_matcher_utils.py 2025-06-01T21:33:45.9961933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__init__.py 2025-06-01T21:33:45.9969417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\common.cpython-39.pyc 2025-06-01T21:33:45.9973076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\fuser_utils.cpython-39.pyc 2025-06-01T21:33:45.9976672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_utils.cpython-39.pyc 2025-06-01T21:33:45.9983887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_with_name_node_map_utils.cpython-39.pyc 2025-06-01T21:33:45.9987530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\source_matcher_utils.cpython-39.pyc 2025-06-01T21:33:45.9991328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:46.0049236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\annotate_getitem_nodes.cpython-39.pyc 2025-06-01T21:33:46.0054396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\fake_tensor_prop.cpython-39.pyc 2025-06-01T21:33:46.0059378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_drawer.cpython-39.pyc 2025-06-01T21:33:46.0067970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_manipulation.cpython-39.pyc 2025-06-01T21:33:46.0072922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_transform_observer.cpython-39.pyc 2025-06-01T21:33:46.0078162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\net_min_base.cpython-39.pyc 2025-06-01T21:33:46.0083264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\operator_support.cpython-39.pyc 2025-06-01T21:33:46.0088427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\param_fetch.cpython-39.pyc 2025-06-01T21:33:46.0092186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\pass_manager.cpython-39.pyc 2025-06-01T21:33:46.0097033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\reinplace.cpython-39.pyc 2025-06-01T21:33:46.0102198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\runtime_assert.cpython-39.pyc 2025-06-01T21:33:46.0107561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\shape_prop.cpython-39.pyc 2025-06-01T21:33:46.0112601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\splitter_base.cpython-39.pyc 2025-06-01T21:33:46.0117644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_module.cpython-39.pyc 2025-06-01T21:33:46.0121385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_utils.cpython-39.pyc 2025-06-01T21:33:46.0126272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\tools_common.cpython-39.pyc 2025-06-01T21:33:46.0134901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\_tensorify_python_scalars.cpython-39.pyc 2025-06-01T21:33:46.0139045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:46.0158813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\annotate.cpython-39.pyc 2025-06-01T21:33:46.0164101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\config.cpython-39.pyc 2025-06-01T21:33:46.0169345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph.cpython-39.pyc 2025-06-01T21:33:46.0178040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph_module.cpython-39.pyc 2025-06-01T21:33:46.0184078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\immutable_collections.cpython-39.pyc 2025-06-01T21:33:46.0188043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\interpreter.cpython-39.pyc 2025-06-01T21:33:46.0191877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\node.cpython-39.pyc 2025-06-01T21:33:46.0196211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\operator_schemas.cpython-39.pyc 2025-06-01T21:33:46.0199797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\proxy.cpython-39.pyc 2025-06-01T21:33:46.0203398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\subgraph_rewriter.cpython-39.pyc 2025-06-01T21:33:46.0209172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\tensor_type.cpython-39.pyc 2025-06-01T21:33:46.0213204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\traceback.cpython-39.pyc 2025-06-01T21:33:46.0216870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_compatibility.cpython-39.pyc 2025-06-01T21:33:46.0220769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_graph_pickler.cpython-39.pyc 2025-06-01T21:33:46.0224430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_lazy_graph_module.cpython-39.pyc 2025-06-01T21:33:46.0228067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_pytree.cpython-39.pyc 2025-06-01T21:33:46.0231813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_symbolic_trace.cpython-39.pyc 2025-06-01T21:33:46.0241512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:46.0246632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:46.0255769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\advisor-annotate.h 2025-06-01T21:33:46.0259475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\cpuinfo.h 2025-06-01T21:33:46.0262884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.h 2025-06-01T21:33:46.0266382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.hpp 2025-06-01T21:33:46.0269521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_config.h 2025-06-01T21:33:46.0278913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_debug.h 2025-06-01T21:33:46.0282372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.h 2025-06-01T21:33:46.0285774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.hpp 2025-06-01T21:33:46.0289403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.h 2025-06-01T21:33:46.0294228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.hpp 2025-06-01T21:33:46.0298078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl_types.h 2025-06-01T21:33:46.0301690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.h 2025-06-01T21:33:46.0305197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.hpp 2025-06-01T21:33:46.0308751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool_iface.hpp 2025-06-01T21:33:46.0312172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_types.h 2025-06-01T21:33:46.0315636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_version.h 2025-06-01T21:33:46.0319083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\experiments-config.h 2025-06-01T21:33:46.0322596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16.h 2025-06-01T21:33:46.0326120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fxdiv.h 2025-06-01T21:33:46.0329598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify-zca.h 2025-06-01T21:33:46.0333139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify.h 2025-06-01T21:33:46.0338080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\jitprofiling.h 2025-06-01T21:33:46.0347027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libittnotify.h 2025-06-01T21:33:46.0350640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libshm.h 2025-06-01T21:33:46.0354065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\psimd.h 2025-06-01T21:33:46.0357636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pthreadpool.h 2025-06-01T21:33:46.0361530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\sleef.h 2025-06-01T21:33:46.0366300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\xnnpack.h 2025-06-01T21:33:46.0374713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\a64.h 2025-06-01T21:33:46.0378207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm.h 2025-06-01T21:33:46.0381719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\asmjit-scope-begin.h 2025-06-01T21:33:46.0385187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\asmjit-scope-end.h 2025-06-01T21:33:46.0389186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\asmjit.h 2025-06-01T21:33:46.0399914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core.h 2025-06-01T21:33:46.0408468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86.h 2025-06-01T21:33:46.0422969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\a64assembler.h 2025-06-01T21:33:46.0429786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\a64builder.h 2025-06-01T21:33:46.0452748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\a64compiler.h 2025-06-01T21:33:46.0453435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\a64emitter.h 2025-06-01T21:33:46.0505787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\a64globals.h 2025-06-01T21:33:46.0512590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\a64instdb.h 2025-06-01T21:33:46.0516769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\a64operand.h 2025-06-01T21:33:46.0521831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\armglobals.h 2025-06-01T21:33:46.0527256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\armoperand.h 2025-06-01T21:33:46.0531897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\arm\armutils.h 2025-06-01T21:33:46.0542208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\api-config.h 2025-06-01T21:33:46.0546645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\archcommons.h 2025-06-01T21:33:46.0552085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\archtraits.h 2025-06-01T21:33:46.0557008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\assembler.h 2025-06-01T21:33:46.0779427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\builder.h 2025-06-01T21:33:46.0782985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\codebuffer.h 2025-06-01T21:33:46.0791074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\codeholder.h 2025-06-01T21:33:46.0796128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\compiler.h 2025-06-01T21:33:46.0801315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\compilerdefs.h 2025-06-01T21:33:46.0805137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\constpool.h 2025-06-01T21:33:46.0809958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\cpuinfo.h 2025-06-01T21:33:46.0815110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\emitter.h 2025-06-01T21:33:46.0820974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\environment.h 2025-06-01T21:33:46.0862422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\errorhandler.h 2025-06-01T21:33:46.0867684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\formatter.h 2025-06-01T21:33:46.0871406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\func.h 2025-06-01T21:33:46.0877058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\globals.h 2025-06-01T21:33:46.0882214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\inst.h 2025-06-01T21:33:46.0887513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\jitallocator.h 2025-06-01T21:33:46.0891355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\jitruntime.h 2025-06-01T21:33:46.0894953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\logger.h 2025-06-01T21:33:46.0900183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\operand.h 2025-06-01T21:33:46.0904615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\osutils.h 2025-06-01T21:33:46.0908481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\string.h 2025-06-01T21:33:46.0911642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\support.h 2025-06-01T21:33:46.0917274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\target.h 2025-06-01T21:33:46.0925265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\type.h 2025-06-01T21:33:46.0928711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\virtmem.h 2025-06-01T21:33:46.0932083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\zone.h 2025-06-01T21:33:46.0935759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\zonehash.h 2025-06-01T21:33:46.0939362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\zonelist.h 2025-06-01T21:33:46.0942637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\zonestack.h 2025-06-01T21:33:46.0947526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\zonestring.h 2025-06-01T21:33:46.0951408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\zonetree.h 2025-06-01T21:33:46.0955006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\core\zonevector.h 2025-06-01T21:33:46.0963532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86\x86assembler.h 2025-06-01T21:33:46.0967150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86\x86builder.h 2025-06-01T21:33:46.0970970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86\x86compiler.h 2025-06-01T21:33:46.0975922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86\x86emitter.h 2025-06-01T21:33:46.0985565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86\x86globals.h 2025-06-01T21:33:46.0990020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86\x86instdb.h 2025-06-01T21:33:46.0993789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\asmjit\x86\x86operand.h 2025-06-01T21:33:46.1004914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\AccumulateType.h 2025-06-01T21:33:46.1008546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ArrayRef.h 2025-06-01T21:33:46.1011973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ATen.h 2025-06-01T21:33:46.1016213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\autocast_mode.h 2025-06-01T21:33:46.1020258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backend.h 2025-06-01T21:33:46.1027787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backtrace.h 2025-06-01T21:33:46.1031156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\BlasBackend.h 2025-06-01T21:33:46.1034967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CachedTensorUtils.h 2025-06-01T21:33:46.1038463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ceil_div.h 2025-06-01T21:33:46.1059297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\code_template.h 2025-06-01T21:33:46.1063032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CollapseDims.h 2025-06-01T21:33:46.1066639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions.h 2025-06-01T21:33:46.1070197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h 2025-06-01T21:33:46.1074260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h 2025-06-01T21:33:46.1078008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h 2025-06-01T21:33:46.1081709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions.h 2025-06-01T21:33:46.1085398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h 2025-06-01T21:33:46.1089347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h 2025-06-01T21:33:46.1094122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h 2025-06-01T21:33:46.1103055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Config.h 2025-06-01T21:33:46.1106574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Context.h 2025-06-01T21:33:46.1110205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpp_custom_type_hack.h 2025-06-01T21:33:46.1113727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUApplyUtils.h 2025-06-01T21:33:46.1117638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFixedAllocator.h 2025-06-01T21:33:46.1120714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions.h 2025-06-01T21:33:46.1124196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions_inl.h 2025-06-01T21:33:46.1128428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUGeneratorImpl.h 2025-06-01T21:33:46.1132089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions.h 2025-06-01T21:33:46.1135627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions_inl.h 2025-06-01T21:33:46.1143898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Device.h 2025-06-01T21:33:46.1147074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceAccelerator.h 2025-06-01T21:33:46.1150501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceGuard.h 2025-06-01T21:33:46.1154208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dimname.h 2025-06-01T21:33:46.1157626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DimVector.h 2025-06-01T21:33:46.1160944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch.h 2025-06-01T21:33:46.1164839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch_v2.h 2025-06-01T21:33:46.1168550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\div_rtn.h 2025-06-01T21:33:46.1171937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DLConvertor.h 2025-06-01T21:33:46.1175336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\dlpack.h 2025-06-01T21:33:46.1179034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DynamicLibrary.h 2025-06-01T21:33:46.1182515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\EmptyTensor.h 2025-06-01T21:33:46.1190356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandBase.h 2025-06-01T21:33:46.1193978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandUtils.h 2025-06-01T21:33:46.1197477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Formatting.h 2025-06-01T21:33:46.1201328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalStorageImpl.h 2025-06-01T21:33:46.1210774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalTensorWrapper.h 2025-06-01T21:33:46.1252619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Functions.h 2025-06-01T21:33:46.1258106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FuncTorchTLS.h 2025-06-01T21:33:46.1263360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Generator.h 2025-06-01T21:33:46.1267003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InferSize.h 2025-06-01T21:33:46.1272361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InitialTensorOptions.h 2025-06-01T21:33:46.1280222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jiterator_macros.h 2025-06-01T21:33:46.1283920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jit_macros.h 2025-06-01T21:33:46.1288894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Layout.h 2025-06-01T21:33:46.1292690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedFallback.h 2025-06-01T21:33:46.1297195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedTensorImpl.h 2025-06-01T21:33:46.1300900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapMode.h 2025-06-01T21:33:46.1304524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapTransforms.h 2025-06-01T21:33:46.1308086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LinalgBackend.h 2025-06-01T21:33:46.1311698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MapAllocator.h 2025-06-01T21:33:46.1315590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MatrixRef.h 2025-06-01T21:33:46.1328614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MemoryOverlap.h 2025-06-01T21:33:46.1332116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions.h 2025-06-01T21:33:46.1335754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions_inl.h 2025-06-01T21:33:46.1339401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MethodOperators.h 2025-06-01T21:33:46.1343958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensor.h 2025-06-01T21:33:46.1347549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensorUtils.h 2025-06-01T21:33:46.1351085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeFunctions.h 2025-06-01T21:33:46.1355365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeMetaFunctions.h 2025-06-01T21:33:46.1359854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NestedTensorImpl.h 2025-06-01T21:33:46.1367694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NumericUtils.h 2025-06-01T21:33:46.1371469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpaqueTensorImpl.h 2025-06-01T21:33:46.1374687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Operators.h 2025-06-01T21:33:46.1378701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpMathType.h 2025-06-01T21:33:46.1382373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PadNd.h 2025-06-01T21:33:46.1385869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel-inl.h 2025-06-01T21:33:46.1389340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel.h 2025-06-01T21:33:46.1392908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelFuture.h 2025-06-01T21:33:46.1396681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelNative.h 2025-06-01T21:33:46.1400222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelOpenMP.h 2025-06-01T21:33:46.1408875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PTThreadPool.h 2025-06-01T21:33:46.1412742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PythonTorchFunctionTLS.h 2025-06-01T21:33:46.1416362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\record_function.h 2025-06-01T21:33:46.1420233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RedispatchFunctions.h 2025-06-01T21:33:46.1437040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RegistrationDeclarations.h 2025-06-01T21:33:46.1445469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ROCmFABackend.h 2025-06-01T21:33:46.1449246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SavedTensorHooks.h 2025-06-01T21:33:46.1453339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Scalar.h 2025-06-01T21:33:46.1457727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarOps.h 2025-06-01T21:33:46.1461617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarType.h 2025-06-01T21:33:46.1465202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SDPBackend.h 2025-06-01T21:33:46.1468618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SequenceNumber.h 2025-06-01T21:33:46.1472031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SmallVector.h 2025-06-01T21:33:46.1476568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorImpl.h 2025-06-01T21:33:46.1480479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorUtils.h 2025-06-01T21:33:46.1486935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseTensorImpl.h 2025-06-01T21:33:46.1491943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Storage.h 2025-06-01T21:33:46.1495501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\StorageUtils.h 2025-06-01T21:33:46.1500537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Tensor.h 2025-06-01T21:33:46.1505234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorAccessor.h 2025-06-01T21:33:46.1513251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorGeometry.h 2025-06-01T21:33:46.1518131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIndexing.h 2025-06-01T21:33:46.1523198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIterator.h 2025-06-01T21:33:46.1528341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIteratorInternal.h 2025-06-01T21:33:46.1534636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorMeta.h 2025-06-01T21:33:46.1540359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorNames.h 2025-06-01T21:33:46.1545423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOperators.h 2025-06-01T21:33:46.1550831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOptions.h 2025-06-01T21:33:46.1554662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorSubclassLikeUtils.h 2025-06-01T21:33:46.1560072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorUtils.h 2025-06-01T21:33:46.1564927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalPythonObjects.h 2025-06-01T21:33:46.1569976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalState.h 2025-06-01T21:33:46.1575044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TracerMode.h 2025-06-01T21:33:46.1580040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TypeDefault.h 2025-06-01T21:33:46.1583704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Utils.h 2025-06-01T21:33:46.1588647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Version.h 2025-06-01T21:33:46.1593572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\VmapGeneratedPlumbing.h 2025-06-01T21:33:46.1610489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtils.h 2025-06-01T21:33:46.1615392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtilsMulti.h 2025-06-01T21:33:46.1625758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\alias_info.h 2025-06-01T21:33:46.1631533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Array.h 2025-06-01T21:33:46.1636408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenGeneral.h 2025-06-01T21:33:46.1641226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenOpList.h 2025-06-01T21:33:46.1666697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_fwd.h 2025-06-01T21:33:46.1671952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\aten_interned_strings.h 2025-06-01T21:33:46.1677619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_pch.h 2025-06-01T21:33:46.1682621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Backtrace.h 2025-06-01T21:33:46.1686172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\blob.h 2025-06-01T21:33:46.1691409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\builtin_function.h 2025-06-01T21:33:46.1694976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CachingHostAllocator.h 2025-06-01T21:33:46.1700415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CheckMemoryFormat.h 2025-06-01T21:33:46.1704275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\class_type.h 2025-06-01T21:33:46.1707875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\custom_class.h 2025-06-01T21:33:46.1711423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypeProperties.h 2025-06-01T21:33:46.1716723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h 2025-06-01T21:33:46.1720332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict.h 2025-06-01T21:33:46.1723795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict_inl.h 2025-06-01T21:33:46.1727132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dimname.h 2025-06-01T21:33:46.1731043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DimVector.h 2025-06-01T21:33:46.1734624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DistributionsHelper.h 2025-06-01T21:33:46.1738242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dynamic_type.h 2025-06-01T21:33:46.1747691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_tag.h 2025-06-01T21:33:46.1751159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_type.h 2025-06-01T21:33:46.1754677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Formatting.h 2025-06-01T21:33:46.1758200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function.h 2025-06-01T21:33:46.1761537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\functional.h 2025-06-01T21:33:46.1765469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema.h 2025-06-01T21:33:46.1769589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema_inl.h 2025-06-01T21:33:46.1773733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Generator.h 2025-06-01T21:33:46.1777471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\GeneratorForPrivateuseone.h 2025-06-01T21:33:46.1781358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\grad_mode.h 2025-06-01T21:33:46.1784854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef.h 2025-06-01T21:33:46.1795078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef_inl.h 2025-06-01T21:33:46.1799381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings.h 2025-06-01T21:33:46.1804472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings_class.h 2025-06-01T21:33:46.1809357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue.h 2025-06-01T21:33:46.1813415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_inl.h 2025-06-01T21:33:46.1817448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_to.h 2025-06-01T21:33:46.1821510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type.h 2025-06-01T21:33:46.1825256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type_base.h 2025-06-01T21:33:46.1828971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\LegacyTypeDispatch.h 2025-06-01T21:33:46.1832356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List.h 2025-06-01T21:33:46.1835838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List_inl.h 2025-06-01T21:33:46.1839244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\MT19937RNGEngine.h 2025-06-01T21:33:46.1846666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NamedTensor.h 2025-06-01T21:33:46.1850250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NestedIntSymNodeImpl.h 2025-06-01T21:33:46.1854114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\operator_name.h 2025-06-01T21:33:46.1857685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PhiloxRNGEngine.h 2025-06-01T21:33:46.1861326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonFallbackKernel.h 2025-06-01T21:33:46.1864981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonOpRegistrationTrampoline.h 2025-06-01T21:33:46.1868445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\qualified_name.h 2025-06-01T21:33:46.1871931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\QuantizerBase.h 2025-06-01T21:33:46.1875413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Range.h 2025-06-01T21:33:46.1879005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Reduction.h 2025-06-01T21:33:46.1889153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\rref_interface.h 2025-06-01T21:33:46.1892600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Scalar.h 2025-06-01T21:33:46.1895989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ScalarType.h 2025-06-01T21:33:46.1899707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\stack.h 2025-06-01T21:33:46.1904411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\symbol.h 2025-06-01T21:33:46.1908077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Tensor.h 2025-06-01T21:33:46.1912915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorAccessor.h 2025-06-01T21:33:46.1917704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBase.h 2025-06-01T21:33:46.1922973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBody.h 2025-06-01T21:33:46.1929539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TorchDispatchUtils.h 2025-06-01T21:33:46.1934717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TransformationHelper.h 2025-06-01T21:33:46.1948836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\typeid.h 2025-06-01T21:33:46.1953452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_factory.h 2025-06-01T21:33:46.1958494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_ptr.h 2025-06-01T21:33:46.1962765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UndefinedTensorImpl.h 2025-06-01T21:33:46.1967188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UnsafeFromTH.h 2025-06-01T21:33:46.1972267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\VariableHooksInterface.h 2025-06-01T21:33:46.1977587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Variadic.h 2025-06-01T21:33:46.1982811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Vitals.h 2025-06-01T21:33:46.1991396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel.h 2025-06-01T21:33:46.1996191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel_impl.h 2025-06-01T21:33:46.2001163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction.h 2025-06-01T21:33:46.2006018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction_impl.h 2025-06-01T21:33:46.2014892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\OperatorKernel.h 2025-06-01T21:33:46.2025098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\boxing.h 2025-06-01T21:33:46.2030136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h 2025-06-01T21:33:46.2035266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\test_helpers.h 2025-06-01T21:33:46.2038942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h 2025-06-01T21:33:46.2049589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h 2025-06-01T21:33:46.2060617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\CppSignature.h 2025-06-01T21:33:46.2065438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\Dispatcher.h 2025-06-01T21:33:46.2071129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h 2025-06-01T21:33:46.2074391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\ObservedOperators.h 2025-06-01T21:33:46.2085465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorEntry.h 2025-06-01T21:33:46.2090486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorOptions.h 2025-06-01T21:33:46.2095357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h 2025-06-01T21:33:46.2106747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\adaption.h 2025-06-01T21:33:46.2110287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\infer_schema.h 2025-06-01T21:33:46.2115361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_allowlist.h 2025-06-01T21:33:46.2120213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_registration.h 2025-06-01T21:33:46.2135855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\FlushDenormal.h 2025-06-01T21:33:46.2139455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\Utils.h 2025-06-01T21:33:46.2144172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vml.h 2025-06-01T21:33:46.2167177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional.h 2025-06-01T21:33:46.2172956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_base.h 2025-06-01T21:33:46.2178766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_bfloat16.h 2025-06-01T21:33:46.2182494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\intrinsics.h 2025-06-01T21:33:46.2191759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec.h 2025-06-01T21:33:46.2196956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_base.h 2025-06-01T21:33:46.2200552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_convert.h 2025-06-01T21:33:46.2204063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_half.h 2025-06-01T21:33:46.2207336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_mask.h 2025-06-01T21:33:46.2212317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_n.h 2025-06-01T21:33:46.2219541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\sve_helper.h 2025-06-01T21:33:46.2223161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h 2025-06-01T21:33:46.2226924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_common_sve.h 2025-06-01T21:33:46.2230389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_double.h 2025-06-01T21:33:46.2238570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_float.h 2025-06-01T21:33:46.2243954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_int.h 2025-06-01T21:33:46.2247658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_qint.h 2025-06-01T21:33:46.2255296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128.h 2025-06-01T21:33:46.2258760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h 2025-06-01T21:33:46.2262421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_convert.h 2025-06-01T21:33:46.2266086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h 2025-06-01T21:33:46.2274240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h 2025-06-01T21:33:46.2278522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h 2025-06-01T21:33:46.2286164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h 2025-06-01T21:33:46.2289604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h 2025-06-01T21:33:46.2293290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256.h 2025-06-01T21:33:46.2296703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h 2025-06-01T21:33:46.2307190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h 2025-06-01T21:33:46.2311366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h 2025-06-01T21:33:46.2314598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h 2025-06-01T21:33:46.2318121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_convert.h 2025-06-01T21:33:46.2321925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_double.h 2025-06-01T21:33:46.2325468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_float.h 2025-06-01T21:33:46.2329382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_half.h 2025-06-01T21:33:46.2333112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_int.h 2025-06-01T21:33:46.2337123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_mask.h 2025-06-01T21:33:46.2341064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_qint.h 2025-06-01T21:33:46.2365566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h 2025-06-01T21:33:46.2368884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h 2025-06-01T21:33:46.2373007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h 2025-06-01T21:33:46.2380782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h 2025-06-01T21:33:46.2384800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h 2025-06-01T21:33:46.2389131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h 2025-06-01T21:33:46.2392879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h 2025-06-01T21:33:46.2396517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h 2025-06-01T21:33:46.2401724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h 2025-06-01T21:33:46.2405454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h 2025-06-01T21:33:46.2410408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h 2025-06-01T21:33:46.2415536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h 2025-06-01T21:33:46.2420671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h 2025-06-01T21:33:46.2431023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h 2025-06-01T21:33:46.2441682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512.h 2025-06-01T21:33:46.2446165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h 2025-06-01T21:33:46.2451419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h 2025-06-01T21:33:46.2456907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h 2025-06-01T21:33:46.2467147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_convert.h 2025-06-01T21:33:46.2471563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_double.h 2025-06-01T21:33:46.2475704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float.h 2025-06-01T21:33:46.2480707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float8.h 2025-06-01T21:33:46.2485928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_int.h 2025-06-01T21:33:46.2491292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_mask.h 2025-06-01T21:33:46.2496214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_qint.h 2025-06-01T21:33:46.2508866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ApplyGridUtils.cuh 2025-06-01T21:33:46.2513680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\AsmUtils.cuh 2025-06-01T21:33:46.2517558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ATenCUDAGeneral.h 2025-06-01T21:33:46.2522316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Atomic.cuh 2025-06-01T21:33:46.2527551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CachingHostAllocator.h 2025-06-01T21:33:46.2537465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub-RadixSortPairs.cuh 2025-06-01T21:33:46.2541236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.cuh 2025-06-01T21:33:46.2546108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.h 2025-06-01T21:33:46.2550978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub_definitions.cuh 2025-06-01T21:33:46.2556018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAApplyUtils.cuh 2025-06-01T21:33:46.2560705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDABlas.h 2025-06-01T21:33:46.2564529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContext.h 2025-06-01T21:33:46.2569499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContextLight.h 2025-06-01T21:33:46.2574382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADataType.h 2025-06-01T21:33:46.2580081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADevice.h 2025-06-01T21:33:46.2585438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAEvent.h 2025-06-01T21:33:46.2590706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGeneratorImpl.h 2025-06-01T21:33:46.2594324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraph.h 2025-06-01T21:33:46.2599339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraphsUtils.cuh 2025-06-01T21:33:46.2604326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparse.h 2025-06-01T21:33:46.2609245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseBlas.h 2025-06-01T21:33:46.2617603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseDescriptors.h 2025-06-01T21:33:46.2622761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDATensorMethods.cuh 2025-06-01T21:33:46.2627739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAUtils.h 2025-06-01T21:33:46.2633535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\DeviceUtils.cuh 2025-06-01T21:33:46.2638478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\EmptyTensor.h 2025-06-01T21:33:46.2643303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Exceptions.h 2025-06-01T21:33:46.2646971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator.h 2025-06-01T21:33:46.2652019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator_impl.h 2025-06-01T21:33:46.2668522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\llvm_jit_strings.h 2025-06-01T21:33:46.2672801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\NumericLimits.cuh 2025-06-01T21:33:46.2677041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PeerToPeerAccess.h 2025-06-01T21:33:46.2681407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxCudaState.h 2025-06-01T21:33:46.2723046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxUtils.cuh 2025-06-01T21:33:46.2728425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PinnedMemoryAllocator.h 2025-06-01T21:33:46.2733767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ScanUtils.cuh 2025-06-01T21:33:46.2739178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Sleep.h 2025-06-01T21:33:46.2742890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ThrustAllocator.h 2025-06-01T21:33:46.2752455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\CUDAHooks.h 2025-06-01T21:33:46.2758052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\DeviceThreadHandles.h 2025-06-01T21:33:46.2762186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IndexUtils.cuh 2025-06-01T21:33:46.2765740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IntegerDivider.cuh 2025-06-01T21:33:46.2775292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\KernelUtils.h 2025-06-01T21:33:46.2778906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\LazyNVRTC.h 2025-06-01T21:33:46.2783217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\OffsetCalculator.cuh 2025-06-01T21:33:46.2787078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh 2025-06-01T21:33:46.2790842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\TensorInfo.cuh 2025-06-01T21:33:46.2794306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\UnpackRaw.cuh 2025-06-01T21:33:46.2803701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmCommon.h 2025-06-01T21:33:46.2807344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmHipblaslt.h 2025-06-01T21:33:46.2811771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmRocblas.h 2025-06-01T21:33:46.2815140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\StreamTimer.h 2025-06-01T21:33:46.2823535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\Tunable.h 2025-06-01T21:33:46.2826942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableGemm.h 2025-06-01T21:33:46.2830708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableOp.h 2025-06-01T21:33:46.2839370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\cudnn-wrapper.h 2025-06-01T21:33:46.2842937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Descriptors.h 2025-06-01T21:33:46.2846418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handle.h 2025-06-01T21:33:46.2849719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handles.h 2025-06-01T21:33:46.2853142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Types.h 2025-06-01T21:33:46.2861021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Utils.h 2025-06-01T21:33:46.2868696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\AcceleratorHooksInterface.h 2025-06-01T21:33:46.2872222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\CUDAHooksInterface.h 2025-06-01T21:33:46.2875850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\FunctionTraits.h 2025-06-01T21:33:46.2884650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HIPHooksInterface.h 2025-06-01T21:33:46.2888178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HPUHooksInterface.h 2025-06-01T21:33:46.2892255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\IPUHooksInterface.h 2025-06-01T21:33:46.2896799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MAIAHooksInterface.h 2025-06-01T21:33:46.2900474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MPSHooksInterface.h 2025-06-01T21:33:46.2904097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MTIAHooksInterface.h 2025-06-01T21:33:46.2907735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\PrivateUse1HooksInterface.h 2025-06-01T21:33:46.2911528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\XPUHooksInterface.h 2025-06-01T21:33:46.2919758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\ADInterpreters.h 2025-06-01T21:33:46.2923406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedFallback.h 2025-06-01T21:33:46.2927442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedTensorImpl.h 2025-06-01T21:33:46.2935536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchingMetaprogramming.h 2025-06-01T21:33:46.2939169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchRulesHelper.h 2025-06-01T21:33:46.2942641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\DynamicLayer.h 2025-06-01T21:33:46.2946850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\FunctionalizeInterpreter.h 2025-06-01T21:33:46.2950715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Interpreter.h 2025-06-01T21:33:46.2954306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\LegacyVmapTransforms.h 2025-06-01T21:33:46.2958672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Macros.h 2025-06-01T21:33:46.2961498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\PlumbingHelper.h 2025-06-01T21:33:46.2967078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\TensorWrapper.h 2025-06-01T21:33:46.2971974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\VmapInterpreter.h 2025-06-01T21:33:46.2987292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h 2025-06-01T21:33:46.2992430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h 2025-06-01T21:33:46.2997641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h 2025-06-01T21:33:46.3005733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h 2025-06-01T21:33:46.3017132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\metal\Context.h 2025-06-01T21:33:46.3027290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Descriptors.h 2025-06-01T21:33:46.3032242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Exceptions.h 2025-06-01T21:33:46.3035858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Handle.h 2025-06-01T21:33:46.3040620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\miopen-wrapper.h 2025-06-01T21:33:46.3049514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Types.h 2025-06-01T21:33:46.3053119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Utils.h 2025-06-01T21:33:46.3063468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\EmptyTensor.h 2025-06-01T21:33:46.3068367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\IndexKernels.h 2025-06-01T21:33:46.3073155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocator.h 2025-06-01T21:33:46.3077038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocatorInterface.h 2025-06-01T21:33:46.3087196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSDevice.h 2025-06-01T21:33:46.3092292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSEvent.h 2025-06-01T21:33:46.3097121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGeneratorImpl.h 2025-06-01T21:33:46.3100809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGuardImpl.h 2025-06-01T21:33:46.3105594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSHooks.h 2025-06-01T21:33:46.3110379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSProfiler.h 2025-06-01T21:33:46.3115181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSStream.h 2025-06-01T21:33:46.3126282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Activation.h 2025-06-01T21:33:46.3131506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AdaptivePooling.h 2025-06-01T21:33:46.3136183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AmpKernels.h 2025-06-01T21:33:46.3140814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BatchLinearAlgebra.h 2025-06-01T21:33:46.3149827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\batch_norm.h 2025-06-01T21:33:46.3153621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BinaryOps.h 2025-06-01T21:33:46.3173407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BucketizationUtils.h 2025-06-01T21:33:46.3178796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CanUse32BitIndexMath.h 2025-06-01T21:33:46.3184188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ComplexHelper.h 2025-06-01T21:33:46.3189609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessor.h 2025-06-01T21:33:46.3194935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessorCommon.h 2025-06-01T21:33:46.3198900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvolutionMM3d.h 2025-06-01T21:33:46.3202152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvUtils.h 2025-06-01T21:33:46.3207396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Copy.h 2025-06-01T21:33:46.3210934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUBlas.h 2025-06-01T21:33:46.3214362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUFallback.h 2025-06-01T21:33:46.3217992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Cross.h 2025-06-01T21:33:46.3223691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DilatedConvolutionUtils.h 2025-06-01T21:33:46.3227520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DispatchStub.h 2025-06-01T21:33:46.3231305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distance.h 2025-06-01T21:33:46.3234775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distributions.h 2025-06-01T21:33:46.3243476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DistributionTemplates.h 2025-06-01T21:33:46.3247896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\EmbeddingBag.h 2025-06-01T21:33:46.3251475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Fill.h 2025-06-01T21:33:46.3256383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ForeachUtils.h 2025-06-01T21:33:46.3260176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FractionalMaxPooling.h 2025-06-01T21:33:46.3263863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FunctionOfAMatrixUtils.h 2025-06-01T21:33:46.3267844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdagrad.h 2025-06-01T21:33:46.3271841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdam.h 2025-06-01T21:33:46.3275472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedSGD.h 2025-06-01T21:33:46.3278834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Gelu.h 2025-06-01T21:33:46.3282684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSampler.h 2025-06-01T21:33:46.3290902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSamplerUtils.h 2025-06-01T21:33:46.3294406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\group_norm.h 2025-06-01T21:33:46.3297982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Histogram.h 2025-06-01T21:33:46.3301871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col.h 2025-06-01T21:33:46.3305469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col_shape_check.h 2025-06-01T21:33:46.3309016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexingUtils.h 2025-06-01T21:33:46.3312427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexKernel.h 2025-06-01T21:33:46.3317555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\layer_norm.h 2025-06-01T21:33:46.3321056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Lerp.h 2025-06-01T21:33:46.3324883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebra.h 2025-06-01T21:33:46.3328644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebraUtils.h 2025-06-01T21:33:46.3336647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LossMulti.h 2025-06-01T21:33:46.3340338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Math.h 2025-06-01T21:33:46.3345304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitFallThroughLists.h 2025-06-01T21:33:46.3348836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitsFallback.h 2025-06-01T21:33:46.3352259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MaxPooling.h 2025-06-01T21:33:46.3356620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonEmptyUtils.h 2025-06-01T21:33:46.3360001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonSymbolicBC.h 2025-06-01T21:33:46.3364407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Normalization.h 2025-06-01T21:33:46.3368063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Padding.h 2025-06-01T21:33:46.3371651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PixelShuffle.h 2025-06-01T21:33:46.3379969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PointwiseOps.h 2025-06-01T21:33:46.3383660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pool.h 2025-06-01T21:33:46.3387089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pow.h 2025-06-01T21:33:46.3391374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeFactories.h 2025-06-01T21:33:46.3394877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeUtils.h 2025-06-01T21:33:46.3398493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceAllOps.h 2025-06-01T21:33:46.3401952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOps.h 2025-06-01T21:33:46.3405633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOpsUtils.h 2025-06-01T21:33:46.3409246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReductionType.h 2025-06-01T21:33:46.3412805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Repeat.h 2025-06-01T21:33:46.3417978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Resize.h 2025-06-01T21:33:46.3421568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ResizeCommon.h 2025-06-01T21:33:46.3433676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RNN.h 2025-06-01T21:33:46.3437198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ScatterGatherChecks.h 2025-06-01T21:33:46.3440972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SegmentReduce.h 2025-06-01T21:33:46.3444537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SharedReduceOps.h 2025-06-01T21:33:46.3448238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SobolEngineOpsUtils.h 2025-06-01T21:33:46.3451796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Sorting.h 2025-06-01T21:33:46.3455238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SortingUtils.h 2025-06-01T21:33:46.3459146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SparseTensorUtils.h 2025-06-01T21:33:46.3462710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SpectralOpsUtils.h 2025-06-01T21:33:46.3466289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\StridedRandomAccessor.h 2025-06-01T21:33:46.3473905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexing.h 2025-06-01T21:33:46.3477509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexingUtils.h 2025-06-01T21:33:46.3481183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorCompare.h 2025-06-01T21:33:46.3484779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorConversions.h 2025-06-01T21:33:46.3488465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorDimApply.h 2025-06-01T21:33:46.3492289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorFactories.h 2025-06-01T21:33:46.3495816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIterator.h 2025-06-01T21:33:46.3499613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIteratorDynamicCasting.h 2025-06-01T21:33:46.3503338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorProperties.h 2025-06-01T21:33:46.3512311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorShape.h 2025-06-01T21:33:46.3515867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorTransformations.h 2025-06-01T21:33:46.3520093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TopKImpl.h 2025-06-01T21:33:46.3523375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TransposeType.h 2025-06-01T21:33:46.3527234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TriangularOpsUtils.h 2025-06-01T21:33:46.3530965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TypeProperties.h 2025-06-01T21:33:46.3535002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnaryOps.h 2025-06-01T21:33:46.3538512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold2d.h 2025-06-01T21:33:46.3541989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold3d.h 2025-06-01T21:33:46.3545974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnfoldBackward.h 2025-06-01T21:33:46.3549963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UpSample.h 2025-06-01T21:33:46.3553889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\verbose_wrapper.h 2025-06-01T21:33:46.3557492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\vol2col.h 2025-06-01T21:33:46.3574471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h 2025-06-01T21:33:46.3578106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h 2025-06-01T21:33:46.3582111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h 2025-06-01T21:33:46.3591994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\AtomicAddFloat.h 2025-06-01T21:33:46.3595231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\avx_mathfun.h 2025-06-01T21:33:46.3598991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CatKernel.h 2025-06-01T21:33:46.3602679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ChannelShuffleKernel.h 2025-06-01T21:33:46.3612340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CopyKernel.h 2025-06-01T21:33:46.3617760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DepthwiseConvKernel.h 2025-06-01T21:33:46.3641002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DistributionTemplates.h 2025-06-01T21:33:46.3645778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Elu.h 2025-06-01T21:33:46.3650525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Gelu.h 2025-06-01T21:33:46.3654168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\GridSamplerKernel.h 2025-06-01T21:33:46.3659217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IndexKernelUtils.h 2025-06-01T21:33:46.3691491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Intrinsics.h 2025-06-01T21:33:46.3696530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\int_mm_kernel.h 2025-06-01T21:33:46.3701819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IsContiguous.h 2025-06-01T21:33:46.3705591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogAddExp.h 2025-06-01T21:33:46.3710797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Loops.h 2025-06-01T21:33:46.3715932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\MaxUnpoolKernel.h 2025-06-01T21:33:46.3719509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\mixed_data_type.h 2025-06-01T21:33:46.3724769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\moments_utils.h 2025-06-01T21:33:46.3729104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\PixelShuffleKernel.h 2025-06-01T21:33:46.3738450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Reduce.h 2025-06-01T21:33:46.3743799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h 2025-06-01T21:33:46.3747374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReduceUtils.h 2025-06-01T21:33:46.3750943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SampledAddmmKernel.h 2025-06-01T21:33:46.3754472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SerialStackImpl.h 2025-06-01T21:33:46.3757966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SoftmaxKernel.h 2025-06-01T21:33:46.3761674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SpmmReduceKernel.h 2025-06-01T21:33:46.3765078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\StackKernel.h 2025-06-01T21:33:46.3768859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h 2025-06-01T21:33:46.3774800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\utils.h 2025-06-01T21:33:46.3778603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\WeightNormKernel.h 2025-06-01T21:33:46.3786370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\zmath.h 2025-06-01T21:33:46.3795072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Activation.h 2025-06-01T21:33:46.3798661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\BinaryInternal.h 2025-06-01T21:33:46.3802318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\block_reduce.cuh 2025-06-01T21:33:46.3805801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CompositeRandomAccessor.h 2025-06-01T21:33:46.3813831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Copy.h 2025-06-01T21:33:46.3818884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDAJitLoops.cuh 2025-06-01T21:33:46.3822526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDALoops.cuh 2025-06-01T21:33:46.3826279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTPlanCache.h 2025-06-01T21:33:46.3829776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTUtils.h 2025-06-01T21:33:46.3833313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\cutlass_common.cuh 2025-06-01T21:33:46.3836902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DeviceSqrt.cuh 2025-06-01T21:33:46.3840372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Distributions.h 2025-06-01T21:33:46.3844180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DistributionTemplates.h 2025-06-01T21:33:46.3848083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh 2025-06-01T21:33:46.3851792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachFunctors.cuh 2025-06-01T21:33:46.3855348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh 2025-06-01T21:33:46.3858997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh 2025-06-01T21:33:46.3862676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_impl.cuh 2025-06-01T21:33:46.3870543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh 2025-06-01T21:33:46.3874119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_impl.cuh 2025-06-01T21:33:46.3877835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_utils.cuh 2025-06-01T21:33:46.3881470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.cuh 2025-06-01T21:33:46.3885680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.h 2025-06-01T21:33:46.3889159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMM.h 2025-06-01T21:33:46.3892598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMMCommon.cuh 2025-06-01T21:33:46.3896071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\im2col.cuh 2025-06-01T21:33:46.3899580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernel.h 2025-06-01T21:33:46.3903235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernelUtils.h 2025-06-01T21:33:46.3911134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\JitLoops.cuh 2025-06-01T21:33:46.3914675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\jit_utils.h 2025-06-01T21:33:46.3918367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\KernelUtils.cuh 2025-06-01T21:33:46.3921940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\LaunchUtils.h 2025-06-01T21:33:46.3925912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Loops.cuh 2025-06-01T21:33:46.3929734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Math.cuh 2025-06-01T21:33:46.3933971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MemoryAccess.cuh 2025-06-01T21:33:46.3937909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MiscUtils.h 2025-06-01T21:33:46.3941685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MultiTensorApply.cuh 2025-06-01T21:33:46.3945479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Normalization.cuh 2025-06-01T21:33:46.3949884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\PersistentSoftmax.cuh 2025-06-01T21:33:46.3957617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Pow.cuh 2025-06-01T21:33:46.3961030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Randperm.cuh 2025-06-01T21:33:46.3964472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Reduce.cuh 2025-06-01T21:33:46.3968116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ReduceOps.h 2025-06-01T21:33:46.3971729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\reduction_template.cuh 2025-06-01T21:33:46.3976962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Resize.h 2025-06-01T21:33:46.3982054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\RowwiseScaledMM.h 2025-06-01T21:33:46.3987202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScaledGroupMM.h 2025-06-01T21:33:46.3991003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanKernels.h 2025-06-01T21:33:46.3995841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanUtils.cuh 2025-06-01T21:33:46.4000669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sort.h 2025-06-01T21:33:46.4006172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sorting.h 2025-06-01T21:33:46.4014425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingCommon.cuh 2025-06-01T21:33:46.4019547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingRadixSelect.cuh 2025-06-01T21:33:46.4024487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortStable.h 2025-06-01T21:33:46.4029366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortUtils.cuh 2025-06-01T21:33:46.4034194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.cuh 2025-06-01T21:33:46.4038159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.h 2025-06-01T21:33:46.4043226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorTopK.h 2025-06-01T21:33:46.4048044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\thread_constants.h 2025-06-01T21:33:46.4053019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UniqueCub.cuh 2025-06-01T21:33:46.4067295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UpSample.cuh 2025-06-01T21:33:46.4072652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\vol2col.cuh 2025-06-01T21:33:46.4086962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_bgemm.h 2025-06-01T21:33:46.4090470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm.h 2025-06-01T21:33:46.4095769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm_template.h 2025-06-01T21:33:46.4100081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_types.h 2025-06-01T21:33:46.4113848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h 2025-06-01T21:33:46.4118884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h 2025-06-01T21:33:46.4129814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_kernels.h 2025-06-01T21:33:46.4134618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_pack.h 2025-06-01T21:33:46.4138450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h 2025-06-01T21:33:46.4155247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h 2025-06-01T21:33:46.4179258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h 2025-06-01T21:33:46.4184793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h 2025-06-01T21:33:46.4188439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h 2025-06-01T21:33:46.4193567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h 2025-06-01T21:33:46.4198772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h 2025-06-01T21:33:46.4204523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h 2025-06-01T21:33:46.4220832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\Copy.h 2025-06-01T21:33:46.4224296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MetalShaderLibrary.h 2025-06-01T21:33:46.4228095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h 2025-06-01T21:33:46.4233345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSonomaOps.h 2025-06-01T21:33:46.4241209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphVenturaOps.h 2025-06-01T21:33:46.4244764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\OperationUtils.h 2025-06-01T21:33:46.4248387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\TensorFactory.h 2025-06-01T21:33:46.4255951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\BinaryKernel.h 2025-06-01T21:33:46.4261510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h 2025-06-01T21:33:46.4265264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h 2025-06-01T21:33:46.4274189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h 2025-06-01T21:33:46.4277940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h 2025-06-01T21:33:46.4282138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\Indexing.h 2025-06-01T21:33:46.4285717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\MultiTensorApply.h 2025-06-01T21:33:46.4294264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorBinaryOps.h 2025-06-01T21:33:46.4298938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorMath.h 2025-06-01T21:33:46.4302679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h 2025-06-01T21:33:46.4310604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h 2025-06-01T21:33:46.4314193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorUtils.h 2025-06-01T21:33:46.4324505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizer.h 2025-06-01T21:33:46.4328122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizerBase.h 2025-06-01T21:33:46.4331844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\ConvUtils.h 2025-06-01T21:33:46.4340777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\Copy.h 2025-06-01T21:33:46.4345151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\FakeQuantAffine.h 2025-06-01T21:33:46.4349105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\IndexKernel.h 2025-06-01T21:33:46.4352825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\library.h 2025-06-01T21:33:46.4356249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\PackedParams.h 2025-06-01T21:33:46.4364274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\ACLUtils.h 2025-06-01T21:33:46.4367737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\BinaryOps.h 2025-06-01T21:33:46.4371252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\conv_serialization.h 2025-06-01T21:33:46.4374923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h 2025-06-01T21:33:46.4383264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h 2025-06-01T21:33:46.4386839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\init_qnnpack.h 2025-06-01T21:33:46.4390276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\OnednnUtils.h 2025-06-01T21:33:46.4393724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qconv.h 2025-06-01T21:33:46.4397189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag.h 2025-06-01T21:33:46.4400665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h 2025-06-01T21:33:46.4404167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qlinear.h 2025-06-01T21:33:46.4408023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h 2025-06-01T21:33:46.4411524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantizedOps.h 2025-06-01T21:33:46.4415015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantUtils.h 2025-06-01T21:33:46.4418501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\RuyUtils.h 2025-06-01T21:33:46.4421975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h 2025-06-01T21:33:46.4429867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cudnn\utils.h 2025-06-01T21:33:46.4439835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\attention.h 2025-06-01T21:33:46.4443544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils_cpp.h 2025-06-01T21:33:46.4451395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\sdp_utils.h 2025-06-01T21:33:46.4458339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h 2025-06-01T21:33:46.4461954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h 2025-06-01T21:33:46.4469295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h 2025-06-01T21:33:46.4472903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h 2025-06-01T21:33:46.4476605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h 2025-06-01T21:33:46.4486780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h 2025-06-01T21:33:46.4492224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h 2025-06-01T21:33:46.4501289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h 2025-06-01T21:33:46.4506656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h 2025-06-01T21:33:46.4511608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h 2025-06-01T21:33:46.4526067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h 2025-06-01T21:33:46.4531948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h 2025-06-01T21:33:46.4536212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h 2025-06-01T21:33:46.4540463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h 2025-06-01T21:33:46.4548774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h 2025-06-01T21:33:46.4553815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h 2025-06-01T21:33:46.4558765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h 2025-06-01T21:33:46.4569816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h 2025-06-01T21:33:46.4574948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h 2025-06-01T21:33:46.4578737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h 2025-06-01T21:33:46.4589523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h 2025-06-01T21:33:46.4595630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h 2025-06-01T21:33:46.4601120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h 2025-06-01T21:33:46.4606194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h 2025-06-01T21:33:46.4617046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h 2025-06-01T21:33:46.4622488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h 2025-06-01T21:33:46.4631552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h 2025-06-01T21:33:46.4648133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_adapter.h 2025-06-01T21:33:46.4658266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h 2025-06-01T21:33:46.4666684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h 2025-06-01T21:33:46.4693184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\Factory.h 2025-06-01T21:33:46.4698245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamsHash.h 2025-06-01T21:33:46.4703534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamUtils.h 2025-06-01T21:33:46.4714126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs.h 2025-06-01T21:33:46.4719181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute.h 2025-06-01T21:33:46.4722994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.4726660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_native.h 2025-06-01T21:33:46.4736657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_ops.h 2025-06-01T21:33:46.4740523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.4744040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cpu_dispatch.h 2025-06-01T21:33:46.4747493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cuda_dispatch.h 2025-06-01T21:33:46.4750919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_native.h 2025-06-01T21:33:46.4754427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_ops.h 2025-06-01T21:33:46.4758170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos.h 2025-06-01T21:33:46.4761481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh.h 2025-06-01T21:33:46.4766942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.4770663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cpu_dispatch.h 2025-06-01T21:33:46.4774236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cuda_dispatch.h 2025-06-01T21:33:46.4777853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta.h 2025-06-01T21:33:46.4781573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta_dispatch.h 2025-06-01T21:33:46.4785217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_native.h 2025-06-01T21:33:46.4789397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_ops.h 2025-06-01T21:33:46.4793255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.4801135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cpu_dispatch.h 2025-06-01T21:33:46.4804734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cuda_dispatch.h 2025-06-01T21:33:46.4808215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta.h 2025-06-01T21:33:46.4812627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta_dispatch.h 2025-06-01T21:33:46.4816359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_native.h 2025-06-01T21:33:46.4819974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_ops.h 2025-06-01T21:33:46.4823485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d.h 2025-06-01T21:33:46.4827495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.4831980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.4841316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_native.h 2025-06-01T21:33:46.4846358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h 2025-06-01T21:33:46.4850136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d.h 2025-06-01T21:33:46.4855759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.4861289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h 2025-06-01T21:33:46.4866385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h 2025-06-01T21:33:46.4871411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_native.h 2025-06-01T21:33:46.4876432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h 2025-06-01T21:33:46.4884735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d.h 2025-06-01T21:33:46.4888812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h 2025-06-01T21:33:46.4892715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-06-01T21:33:46.4896649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-06-01T21:33:46.4900689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h 2025-06-01T21:33:46.4904482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h 2025-06-01T21:33:46.4908612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.4912752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h 2025-06-01T21:33:46.4931749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h 2025-06-01T21:33:46.4937316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_native.h 2025-06-01T21:33:46.4942754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h 2025-06-01T21:33:46.4954991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d.h 2025-06-01T21:33:46.4960287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.4965746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_native.h 2025-06-01T21:33:46.4971033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_ops.h 2025-06-01T21:33:46.4976138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d.h 2025-06-01T21:33:46.4982049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward.h 2025-06-01T21:33:46.4987666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.4992716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h 2025-06-01T21:33:46.4996733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h 2025-06-01T21:33:46.5002080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h 2025-06-01T21:33:46.5007544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h 2025-06-01T21:33:46.5016753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h 2025-06-01T21:33:46.5020814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h 2025-06-01T21:33:46.5024814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5029091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h 2025-06-01T21:33:46.5033056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h 2025-06-01T21:33:46.5036760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta.h 2025-06-01T21:33:46.5041330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h 2025-06-01T21:33:46.5051534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_native.h 2025-06-01T21:33:46.5056698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_ops.h 2025-06-01T21:33:46.5060751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d.h 2025-06-01T21:33:46.5066185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward.h 2025-06-01T21:33:46.5071942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5082808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h 2025-06-01T21:33:46.5088067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h 2025-06-01T21:33:46.5093207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h 2025-06-01T21:33:46.5099001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h 2025-06-01T21:33:46.5104222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h 2025-06-01T21:33:46.5109822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h 2025-06-01T21:33:46.5113994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5119138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h 2025-06-01T21:33:46.5124734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h 2025-06-01T21:33:46.5130416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta.h 2025-06-01T21:33:46.5135731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h 2025-06-01T21:33:46.5141126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_native.h 2025-06-01T21:33:46.5146704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_ops.h 2025-06-01T21:33:46.5151792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add.h 2025-06-01T21:33:46.5155424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm.h 2025-06-01T21:33:46.5159193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cpu_dispatch.h 2025-06-01T21:33:46.5164392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cuda_dispatch.h 2025-06-01T21:33:46.5168067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_meta_dispatch.h 2025-06-01T21:33:46.5171783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_native.h 2025-06-01T21:33:46.5175770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_ops.h 2025-06-01T21:33:46.5181202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv.h 2025-06-01T21:33:46.5184976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5188490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cpu_dispatch.h 2025-06-01T21:33:46.5192121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cuda_dispatch.h 2025-06-01T21:33:46.5201328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta.h 2025-06-01T21:33:46.5204931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta_dispatch.h 2025-06-01T21:33:46.5208931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_native.h 2025-06-01T21:33:46.5212659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_ops.h 2025-06-01T21:33:46.5216314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul.h 2025-06-01T21:33:46.5220046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5223603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cpu_dispatch.h 2025-06-01T21:33:46.5228186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cuda_dispatch.h 2025-06-01T21:33:46.5232479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta.h 2025-06-01T21:33:46.5236279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta_dispatch.h 2025-06-01T21:33:46.5240078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_native.h 2025-06-01T21:33:46.5243875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_ops.h 2025-06-01T21:33:46.5248119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm.h 2025-06-01T21:33:46.5251907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5255422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cpu_dispatch.h 2025-06-01T21:33:46.5259647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cuda_dispatch.h 2025-06-01T21:33:46.5263256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta.h 2025-06-01T21:33:46.5268328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta_dispatch.h 2025-06-01T21:33:46.5272137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_native.h 2025-06-01T21:33:46.5276551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_ops.h 2025-06-01T21:33:46.5280173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv.h 2025-06-01T21:33:46.5284325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5293020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cpu_dispatch.h 2025-06-01T21:33:46.5296908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cuda_dispatch.h 2025-06-01T21:33:46.5300732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta.h 2025-06-01T21:33:46.5304483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta_dispatch.h 2025-06-01T21:33:46.5308287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_native.h 2025-06-01T21:33:46.5312046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_ops.h 2025-06-01T21:33:46.5315976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr.h 2025-06-01T21:33:46.5319614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5323374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cpu_dispatch.h 2025-06-01T21:33:46.5327412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cuda_dispatch.h 2025-06-01T21:33:46.5332980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_native.h 2025-06-01T21:33:46.5336717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_ops.h 2025-06-01T21:33:46.5340601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5344342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5349129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cpu_dispatch.h 2025-06-01T21:33:46.5355520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cuda_dispatch.h 2025-06-01T21:33:46.5359344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta.h 2025-06-01T21:33:46.5363216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta_dispatch.h 2025-06-01T21:33:46.5368373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_native.h 2025-06-01T21:33:46.5373564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_ops.h 2025-06-01T21:33:46.5377278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint.h 2025-06-01T21:33:46.5382896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5387977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_native.h 2025-06-01T21:33:46.5392934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_ops.h 2025-06-01T21:33:46.5398248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator.h 2025-06-01T21:33:46.5402816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward.h 2025-06-01T21:33:46.5409313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5413231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_native.h 2025-06-01T21:33:46.5418470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_ops.h 2025-06-01T21:33:46.5424169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5436492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_native.h 2025-06-01T21:33:46.5441533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_ops.h 2025-06-01T21:33:46.5446604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias.h 2025-06-01T21:33:46.5451595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5458051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy.h 2025-06-01T21:33:46.5463445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5468791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5472659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_native.h 2025-06-01T21:33:46.5477750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_ops.h 2025-06-01T21:33:46.5482985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_native.h 2025-06-01T21:33:46.5487957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_ops.h 2025-06-01T21:33:46.5492926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as.h 2025-06-01T21:33:46.5498559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5502200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_native.h 2025-06-01T21:33:46.5508884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_ops.h 2025-06-01T21:33:46.5513257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors.h 2025-06-01T21:33:46.5518576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5523722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_native.h 2025-06-01T21:33:46.5529006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_ops.h 2025-06-01T21:33:46.5533976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to.h 2025-06-01T21:33:46.5539105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5543277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_native.h 2025-06-01T21:33:46.5548389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_ops.h 2025-06-01T21:33:46.5553408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all.h 2025-06-01T21:33:46.5558230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose.h 2025-06-01T21:33:46.5563214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5566927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_native.h 2025-06-01T21:33:46.5571915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_ops.h 2025-06-01T21:33:46.5577281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5582682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5587900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5593161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cpu_dispatch.h 2025-06-01T21:33:46.5598669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cuda_dispatch.h 2025-06-01T21:33:46.5603448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta.h 2025-06-01T21:33:46.5607568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta_dispatch.h 2025-06-01T21:33:46.5613271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_native.h 2025-06-01T21:33:46.5617382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_ops.h 2025-06-01T21:33:46.5621099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout.h 2025-06-01T21:33:46.5624885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5628774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_native.h 2025-06-01T21:33:46.5640207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_ops.h 2025-06-01T21:33:46.5645265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax.h 2025-06-01T21:33:46.5649089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5654353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cpu_dispatch.h 2025-06-01T21:33:46.5659494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cuda_dispatch.h 2025-06-01T21:33:46.5664441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta.h 2025-06-01T21:33:46.5669444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta_dispatch.h 2025-06-01T21:33:46.5674733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_native.h 2025-06-01T21:33:46.5684455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_ops.h 2025-06-01T21:33:46.5689193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin.h 2025-06-01T21:33:46.5693121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax.h 2025-06-01T21:33:46.5697067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5700794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cpu_dispatch.h 2025-06-01T21:33:46.5705106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cuda_dispatch.h 2025-06-01T21:33:46.5708956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta.h 2025-06-01T21:33:46.5712843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta_dispatch.h 2025-06-01T21:33:46.5716746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_native.h 2025-06-01T21:33:46.5720864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_ops.h 2025-06-01T21:33:46.5724634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5728446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cpu_dispatch.h 2025-06-01T21:33:46.5732232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cuda_dispatch.h 2025-06-01T21:33:46.5735868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta.h 2025-06-01T21:33:46.5739747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta_dispatch.h 2025-06-01T21:33:46.5743481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_native.h 2025-06-01T21:33:46.5746998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_ops.h 2025-06-01T21:33:46.5750558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and.h 2025-06-01T21:33:46.5754186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5757996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_native.h 2025-06-01T21:33:46.5761636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_ops.h 2025-06-01T21:33:46.5765020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle.h 2025-06-01T21:33:46.5768876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cpu_dispatch.h 2025-06-01T21:33:46.5772580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cuda_dispatch.h 2025-06-01T21:33:46.5776250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_native.h 2025-06-01T21:33:46.5780003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_ops.h 2025-06-01T21:33:46.5783599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any.h 2025-06-01T21:33:46.5787336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5791242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5795407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5799090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cpu_dispatch.h 2025-06-01T21:33:46.5802768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cuda_dispatch.h 2025-06-01T21:33:46.5812944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta.h 2025-06-01T21:33:46.5816608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta_dispatch.h 2025-06-01T21:33:46.5820478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_native.h 2025-06-01T21:33:46.5824982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_ops.h 2025-06-01T21:33:46.5829326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange.h 2025-06-01T21:33:46.5832197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.5835944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cpu_dispatch.h 2025-06-01T21:33:46.5839621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cuda_dispatch.h 2025-06-01T21:33:46.5844080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_meta_dispatch.h 2025-06-01T21:33:46.5848034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_native.h 2025-06-01T21:33:46.5852666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_ops.h 2025-06-01T21:33:46.5856452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos.h 2025-06-01T21:33:46.5860022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh.h 2025-06-01T21:33:46.5863638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5867300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_native.h 2025-06-01T21:33:46.5870951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_ops.h 2025-06-01T21:33:46.5874835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5878498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_native.h 2025-06-01T21:33:46.5882990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_ops.h 2025-06-01T21:33:46.5887341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin.h 2025-06-01T21:33:46.5890788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh.h 2025-06-01T21:33:46.5894417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5898256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_native.h 2025-06-01T21:33:46.5901991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_ops.h 2025-06-01T21:33:46.5906072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5910422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_native.h 2025-06-01T21:33:46.5914378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_ops.h 2025-06-01T21:33:46.5918114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan.h 2025-06-01T21:33:46.5921549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2.h 2025-06-01T21:33:46.5925370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5929041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_native.h 2025-06-01T21:33:46.5932755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_ops.h 2025-06-01T21:33:46.5936545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh.h 2025-06-01T21:33:46.5940920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5945321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_native.h 2025-06-01T21:33:46.5949117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_ops.h 2025-06-01T21:33:46.5953063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.5956799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_native.h 2025-06-01T21:33:46.5960527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_ops.h 2025-06-01T21:33:46.5964225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax.h 2025-06-01T21:33:46.5968158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.5971831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cpu_dispatch.h 2025-06-01T21:33:46.5975773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cuda_dispatch.h 2025-06-01T21:33:46.5979686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta.h 2025-06-01T21:33:46.5983599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta_dispatch.h 2025-06-01T21:33:46.5998377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_native.h 2025-06-01T21:33:46.5999078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_ops.h 2025-06-01T21:33:46.5999616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin.h 2025-06-01T21:33:46.6002311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6007482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cpu_dispatch.h 2025-06-01T21:33:46.6012694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cuda_dispatch.h 2025-06-01T21:33:46.6017698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta.h 2025-06-01T21:33:46.6023017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta_dispatch.h 2025-06-01T21:33:46.6028173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_native.h 2025-06-01T21:33:46.6033243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_ops.h 2025-06-01T21:33:46.6037291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort.h 2025-06-01T21:33:46.6042312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6048293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_native.h 2025-06-01T21:33:46.6053669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_ops.h 2025-06-01T21:33:46.6058853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere.h 2025-06-01T21:33:46.6063864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6069326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_native.h 2025-06-01T21:33:46.6075043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_ops.h 2025-06-01T21:33:46.6079016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin.h 2025-06-01T21:33:46.6084134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh.h 2025-06-01T21:33:46.6089407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6094553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cpu_dispatch.h 2025-06-01T21:33:46.6099790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cuda_dispatch.h 2025-06-01T21:33:46.6104756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta.h 2025-06-01T21:33:46.6108563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta_dispatch.h 2025-06-01T21:33:46.6114101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_native.h 2025-06-01T21:33:46.6119678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_ops.h 2025-06-01T21:33:46.6125057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6130297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cpu_dispatch.h 2025-06-01T21:33:46.6156634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cuda_dispatch.h 2025-06-01T21:33:46.6159444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta.h 2025-06-01T21:33:46.6163245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta_dispatch.h 2025-06-01T21:33:46.6167117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_native.h 2025-06-01T21:33:46.6170955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_ops.h 2025-06-01T21:33:46.6174397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided.h 2025-06-01T21:33:46.6178262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6182702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy.h 2025-06-01T21:33:46.6186515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6204517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6205274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_native.h 2025-06-01T21:33:46.6206149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_ops.h 2025-06-01T21:33:46.6210042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cpu_dispatch.h 2025-06-01T21:33:46.6213706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cuda_dispatch.h 2025-06-01T21:33:46.6217321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_meta_dispatch.h 2025-06-01T21:33:46.6221167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_native.h 2025-06-01T21:33:46.6224974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_ops.h 2025-06-01T21:33:46.6228726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter.h 2025-06-01T21:33:46.6232730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6236623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6240300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_native.h 2025-06-01T21:33:46.6244161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_ops.h 2025-06-01T21:33:46.6247827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan.h 2025-06-01T21:33:46.6251205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2.h 2025-06-01T21:33:46.6254985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6260021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cpu_dispatch.h 2025-06-01T21:33:46.6264707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cuda_dispatch.h 2025-06-01T21:33:46.6268299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta.h 2025-06-01T21:33:46.6272042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta_dispatch.h 2025-06-01T21:33:46.6275804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_native.h 2025-06-01T21:33:46.6279967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_ops.h 2025-06-01T21:33:46.6283808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh.h 2025-06-01T21:33:46.6289518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6293342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cpu_dispatch.h 2025-06-01T21:33:46.6297624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cuda_dispatch.h 2025-06-01T21:33:46.6301668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta.h 2025-06-01T21:33:46.6305325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta_dispatch.h 2025-06-01T21:33:46.6309059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_native.h 2025-06-01T21:33:46.6312709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_ops.h 2025-06-01T21:33:46.6316546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6320054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cpu_dispatch.h 2025-06-01T21:33:46.6323950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cuda_dispatch.h 2025-06-01T21:33:46.6327775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta.h 2025-06-01T21:33:46.6331356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta_dispatch.h 2025-06-01T21:33:46.6335131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_native.h 2025-06-01T21:33:46.6339851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_ops.h 2025-06-01T21:33:46.6343714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d.h 2025-06-01T21:33:46.6347421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6351040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_native.h 2025-06-01T21:33:46.6354794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_ops.h 2025-06-01T21:33:46.6358430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d.h 2025-06-01T21:33:46.6362291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6366003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_native.h 2025-06-01T21:33:46.6369762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_ops.h 2025-06-01T21:33:46.6373396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d.h 2025-06-01T21:33:46.6377407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6381399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_native.h 2025-06-01T21:33:46.6385056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_ops.h 2025-06-01T21:33:46.6388760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d.h 2025-06-01T21:33:46.6393959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6397348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6400961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_native.h 2025-06-01T21:33:46.6404616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_ops.h 2025-06-01T21:33:46.6408508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d.h 2025-06-01T21:33:46.6412429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward.h 2025-06-01T21:33:46.6416679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6420601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h 2025-06-01T21:33:46.6424396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h 2025-06-01T21:33:46.6428649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta.h 2025-06-01T21:33:46.6432743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h 2025-06-01T21:33:46.6436711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_native.h 2025-06-01T21:33:46.6440315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_ops.h 2025-06-01T21:33:46.6444512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6448207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h 2025-06-01T21:33:46.6451999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h 2025-06-01T21:33:46.6455737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta.h 2025-06-01T21:33:46.6459833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h 2025-06-01T21:33:46.6463569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_native.h 2025-06-01T21:33:46.6468293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_ops.h 2025-06-01T21:33:46.6472061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d.h 2025-06-01T21:33:46.6475882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward.h 2025-06-01T21:33:46.6479911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6483603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h 2025-06-01T21:33:46.6487623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h 2025-06-01T21:33:46.6492373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta.h 2025-06-01T21:33:46.6498109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h 2025-06-01T21:33:46.6503438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_native.h 2025-06-01T21:33:46.6514625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_ops.h 2025-06-01T21:33:46.6520201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6525404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h 2025-06-01T21:33:46.6530637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h 2025-06-01T21:33:46.6534605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta.h 2025-06-01T21:33:46.6540424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h 2025-06-01T21:33:46.6544791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_native.h 2025-06-01T21:33:46.6549049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_ops.h 2025-06-01T21:33:46.6552906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm.h 2025-06-01T21:33:46.6557656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6562909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cpu_dispatch.h 2025-06-01T21:33:46.6568041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cuda_dispatch.h 2025-06-01T21:33:46.6573073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta.h 2025-06-01T21:33:46.6578246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta_dispatch.h 2025-06-01T21:33:46.6582287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_native.h 2025-06-01T21:33:46.6587921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_ops.h 2025-06-01T21:33:46.6593400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window.h 2025-06-01T21:33:46.6598983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6603877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_native.h 2025-06-01T21:33:46.6608923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_ops.h 2025-06-01T21:33:46.6614399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm.h 2025-06-01T21:33:46.6617917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward.h 2025-06-01T21:33:46.6623225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h 2025-06-01T21:33:46.6628365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h 2025-06-01T21:33:46.6634327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt.h 2025-06-01T21:33:46.6639760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6644780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h 2025-06-01T21:33:46.6649959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_native.h 2025-06-01T21:33:46.6654991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h 2025-06-01T21:33:46.6659120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_native.h 2025-06-01T21:33:46.6664589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_ops.h 2025-06-01T21:33:46.6669783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce.h 2025-06-01T21:33:46.6675105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6680426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h 2025-06-01T21:33:46.6700935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_native.h 2025-06-01T21:33:46.6706782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h 2025-06-01T21:33:46.6712928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6718391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt.h 2025-06-01T21:33:46.6722390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h 2025-06-01T21:33:46.6728003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_native.h 2025-06-01T21:33:46.6732299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_ops.h 2025-06-01T21:33:46.6738055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats.h 2025-06-01T21:33:46.6742498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6746397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h 2025-06-01T21:33:46.6750286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_native.h 2025-06-01T21:33:46.6755954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_ops.h 2025-06-01T21:33:46.6760022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h 2025-06-01T21:33:46.6764469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6769274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h 2025-06-01T21:33:46.6773009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h 2025-06-01T21:33:46.6777505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h 2025-06-01T21:33:46.6781493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_native.h 2025-06-01T21:33:46.6786734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_ops.h 2025-06-01T21:33:46.6790892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats.h 2025-06-01T21:33:46.6795178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6798869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h 2025-06-01T21:33:46.6802765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_native.h 2025-06-01T21:33:46.6806649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_ops.h 2025-06-01T21:33:46.6810477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats.h 2025-06-01T21:33:46.6814655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6818910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h 2025-06-01T21:33:46.6822832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h 2025-06-01T21:33:46.6826730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_native.h 2025-06-01T21:33:46.6830651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_ops.h 2025-06-01T21:33:46.6834476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli.h 2025-06-01T21:33:46.6840090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.6844733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6848044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cpu_dispatch.h 2025-06-01T21:33:46.6851904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cuda_dispatch.h 2025-06-01T21:33:46.6863287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_meta_dispatch.h 2025-06-01T21:33:46.6867085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_native.h 2025-06-01T21:33:46.6870844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_ops.h 2025-06-01T21:33:46.6874733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear.h 2025-06-01T21:33:46.6878903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.6882593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_native.h 2025-06-01T21:33:46.6886195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_ops.h 2025-06-01T21:33:46.6889816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy.h 2025-06-01T21:33:46.6893741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward.h 2025-06-01T21:33:46.6897752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h 2025-06-01T21:33:46.6902006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h 2025-06-01T21:33:46.6905968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_native.h 2025-06-01T21:33:46.6909990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h 2025-06-01T21:33:46.6913582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h 2025-06-01T21:33:46.6917338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h 2025-06-01T21:33:46.6922154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_native.h 2025-06-01T21:33:46.6926548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_ops.h 2025-06-01T21:33:46.6930712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits.h 2025-06-01T21:33:46.6934705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6938472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h 2025-06-01T21:33:46.6942663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h 2025-06-01T21:33:46.6947125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount.h 2025-06-01T21:33:46.6950822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6954851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cpu_dispatch.h 2025-06-01T21:33:46.6959038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cuda_dispatch.h 2025-06-01T21:33:46.6963144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_native.h 2025-06-01T21:33:46.6966898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_ops.h 2025-06-01T21:33:46.6972412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial.h 2025-06-01T21:33:46.6977671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.6983376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cpu_dispatch.h 2025-06-01T21:33:46.6989199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cuda_dispatch.h 2025-06-01T21:33:46.6994149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_native.h 2025-06-01T21:33:46.6998925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_ops.h 2025-06-01T21:33:46.7002816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and.h 2025-06-01T21:33:46.7008011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7013066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7018200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h 2025-06-01T21:33:46.7023858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h 2025-06-01T21:33:46.7028900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta.h 2025-06-01T21:33:46.7032726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta_dispatch.h 2025-06-01T21:33:46.7037877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_native.h 2025-06-01T21:33:46.7043395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_ops.h 2025-06-01T21:33:46.7048714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift.h 2025-06-01T21:33:46.7054069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7059494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7064876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h 2025-06-01T21:33:46.7069816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h 2025-06-01T21:33:46.7073843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta.h 2025-06-01T21:33:46.7079176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h 2025-06-01T21:33:46.7084916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_native.h 2025-06-01T21:33:46.7094011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_ops.h 2025-06-01T21:33:46.7099670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not.h 2025-06-01T21:33:46.7103968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7109048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h 2025-06-01T21:33:46.7114130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h 2025-06-01T21:33:46.7120751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta.h 2025-06-01T21:33:46.7126132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta_dispatch.h 2025-06-01T21:33:46.7131708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_native.h 2025-06-01T21:33:46.7136905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_ops.h 2025-06-01T21:33:46.7142095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or.h 2025-06-01T21:33:46.7147511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7151504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7156646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h 2025-06-01T21:33:46.7162054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h 2025-06-01T21:33:46.7167286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta.h 2025-06-01T21:33:46.7172750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta_dispatch.h 2025-06-01T21:33:46.7177897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_native.h 2025-06-01T21:33:46.7183321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_ops.h 2025-06-01T21:33:46.7200703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift.h 2025-06-01T21:33:46.7204953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7210813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7216597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h 2025-06-01T21:33:46.7222329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h 2025-06-01T21:33:46.7227901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta.h 2025-06-01T21:33:46.7231865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h 2025-06-01T21:33:46.7237476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_native.h 2025-06-01T21:33:46.7241627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_ops.h 2025-06-01T21:33:46.7245342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor.h 2025-06-01T21:33:46.7249571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7255128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7259534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h 2025-06-01T21:33:46.7263470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h 2025-06-01T21:33:46.7267646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta.h 2025-06-01T21:33:46.7271456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h 2025-06-01T21:33:46.7275405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_native.h 2025-06-01T21:33:46.7279733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_ops.h 2025-06-01T21:33:46.7284803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window.h 2025-06-01T21:33:46.7288755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7292580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_native.h 2025-06-01T21:33:46.7296653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_ops.h 2025-06-01T21:33:46.7300592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag.h 2025-06-01T21:33:46.7304561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7308162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_native.h 2025-06-01T21:33:46.7312171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_ops.h 2025-06-01T21:33:46.7315910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm.h 2025-06-01T21:33:46.7319560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7323393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cpu_dispatch.h 2025-06-01T21:33:46.7327062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cuda_dispatch.h 2025-06-01T21:33:46.7330679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta.h 2025-06-01T21:33:46.7334097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta_dispatch.h 2025-06-01T21:33:46.7353565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_native.h 2025-06-01T21:33:46.7357589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_ops.h 2025-06-01T21:33:46.7361125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors.h 2025-06-01T21:33:46.7364898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7368760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_native.h 2025-06-01T21:33:46.7372559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_ops.h 2025-06-01T21:33:46.7376280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to.h 2025-06-01T21:33:46.7380310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7384542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_native.h 2025-06-01T21:33:46.7388750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_ops.h 2025-06-01T21:33:46.7392597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize.h 2025-06-01T21:33:46.7396581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7400418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cpu_dispatch.h 2025-06-01T21:33:46.7403947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cuda_dispatch.h 2025-06-01T21:33:46.7407662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_native.h 2025-06-01T21:33:46.7411537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_ops.h 2025-06-01T21:33:46.7415268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast.h 2025-06-01T21:33:46.7418989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7423044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_native.h 2025-06-01T21:33:46.7426706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_ops.h 2025-06-01T21:33:46.7430403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod.h 2025-06-01T21:33:46.7434326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7438462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_native.h 2025-06-01T21:33:46.7442176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_ops.h 2025-06-01T21:33:46.7447393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat.h 2025-06-01T21:33:46.7451217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7455240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7459187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cpu_dispatch.h 2025-06-01T21:33:46.7463146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cuda_dispatch.h 2025-06-01T21:33:46.7466707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta.h 2025-06-01T21:33:46.7470220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta_dispatch.h 2025-06-01T21:33:46.7473835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_native.h 2025-06-01T21:33:46.7477426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_ops.h 2025-06-01T21:33:46.7481066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy.h 2025-06-01T21:33:46.7485148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7488840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cpu_dispatch.h 2025-06-01T21:33:46.7493166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cuda_dispatch.h 2025-06-01T21:33:46.7496973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_meta_dispatch.h 2025-06-01T21:33:46.7507830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_native.h 2025-06-01T21:33:46.7511557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_ops.h 2025-06-01T21:33:46.7515292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices.h 2025-06-01T21:33:46.7519222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7522969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy.h 2025-06-01T21:33:46.7526933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7530906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7534525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_native.h 2025-06-01T21:33:46.7538392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_ops.h 2025-06-01T21:33:46.7543231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_native.h 2025-06-01T21:33:46.7548395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_ops.h 2025-06-01T21:33:46.7553461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist.h 2025-06-01T21:33:46.7558998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7562796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_native.h 2025-06-01T21:33:46.7567809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_ops.h 2025-06-01T21:33:46.7572842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil.h 2025-06-01T21:33:46.7577850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7583257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cpu_dispatch.h 2025-06-01T21:33:46.7587072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cuda_dispatch.h 2025-06-01T21:33:46.7592546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta.h 2025-06-01T21:33:46.7597516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta_dispatch.h 2025-06-01T21:33:46.7602448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_native.h 2025-06-01T21:33:46.7607346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_ops.h 2025-06-01T21:33:46.7612066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu.h 2025-06-01T21:33:46.7615795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7620997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_native.h 2025-06-01T21:33:46.7626370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_ops.h 2025-06-01T21:33:46.7631217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul.h 2025-06-01T21:33:46.7636311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7641746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_native.h 2025-06-01T21:33:46.7645698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_ops.h 2025-06-01T21:33:46.7650702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf.h 2025-06-01T21:33:46.7655562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7659759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_native.h 2025-06-01T21:33:46.7663493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_ops.h 2025-06-01T21:33:46.7667306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle.h 2025-06-01T21:33:46.7671242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7674915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h 2025-06-01T21:33:46.7678930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h 2025-06-01T21:33:46.7682963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_native.h 2025-06-01T21:33:46.7686670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_ops.h 2025-06-01T21:33:46.7690511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky.h 2025-06-01T21:33:46.7694591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cpu_dispatch.h 2025-06-01T21:33:46.7698515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cuda_dispatch.h 2025-06-01T21:33:46.7702583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse.h 2025-06-01T21:33:46.7706383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h 2025-06-01T21:33:46.7710367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h 2025-06-01T21:33:46.7714709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_native.h 2025-06-01T21:33:46.7718841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_ops.h 2025-06-01T21:33:46.7723068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_native.h 2025-06-01T21:33:46.7726766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_ops.h 2025-06-01T21:33:46.7730455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve.h 2025-06-01T21:33:46.7734384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7738144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_native.h 2025-06-01T21:33:46.7743622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_ops.h 2025-06-01T21:33:46.7747966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized.h 2025-06-01T21:33:46.7751870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7755462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_native.h 2025-06-01T21:33:46.7759311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_ops.h 2025-06-01T21:33:46.7763032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk.h 2025-06-01T21:33:46.7766634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7771158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_native.h 2025-06-01T21:33:46.7774756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_ops.h 2025-06-01T21:33:46.7778440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp.h 2025-06-01T21:33:46.7782199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7785789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cpu_dispatch.h 2025-06-01T21:33:46.7789390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cuda_dispatch.h 2025-06-01T21:33:46.7793090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max.h 2025-06-01T21:33:46.7797072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7800733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cpu_dispatch.h 2025-06-01T21:33:46.7804667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cuda_dispatch.h 2025-06-01T21:33:46.7808267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta.h 2025-06-01T21:33:46.7811963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta_dispatch.h 2025-06-01T21:33:46.7815709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_native.h 2025-06-01T21:33:46.7819424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_ops.h 2025-06-01T21:33:46.7823140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta.h 2025-06-01T21:33:46.7826828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta_dispatch.h 2025-06-01T21:33:46.7830491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min.h 2025-06-01T21:33:46.7834461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7838416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cpu_dispatch.h 2025-06-01T21:33:46.7841910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cuda_dispatch.h 2025-06-01T21:33:46.7846160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta.h 2025-06-01T21:33:46.7850110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta_dispatch.h 2025-06-01T21:33:46.7853782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_native.h 2025-06-01T21:33:46.7857421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_ops.h 2025-06-01T21:33:46.7861120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_native.h 2025-06-01T21:33:46.7864983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_ops.h 2025-06-01T21:33:46.7868599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip.h 2025-06-01T21:33:46.7872170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7875705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_native.h 2025-06-01T21:33:46.7879561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_ops.h 2025-06-01T21:33:46.7882908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone.h 2025-06-01T21:33:46.7887865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7891551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_native.h 2025-06-01T21:33:46.7895222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_ops.h 2025-06-01T21:33:46.7899050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce.h 2025-06-01T21:33:46.7902724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7906329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_native.h 2025-06-01T21:33:46.7910157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_ops.h 2025-06-01T21:33:46.7913901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im.h 2025-06-01T21:33:46.7917430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cpu_dispatch.h 2025-06-01T21:33:46.7921278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cuda_dispatch.h 2025-06-01T21:33:46.7925003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_native.h 2025-06-01T21:33:46.7928606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_ops.h 2025-06-01T21:33:46.7932294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack.h 2025-06-01T21:33:46.7936084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7940103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_native.h 2025-06-01T21:33:46.7944002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_ops.h 2025-06-01T21:33:46.7947683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices.h 2025-06-01T21:33:46.7951482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7955315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy.h 2025-06-01T21:33:46.7959757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.7963579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.7968729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_native.h 2025-06-01T21:33:46.7972670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_ops.h 2025-06-01T21:33:46.7976306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_native.h 2025-06-01T21:33:46.7980154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_ops.h 2025-06-01T21:33:46.7983877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations.h 2025-06-01T21:33:46.7987705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.7991464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_native.h 2025-06-01T21:33:46.7995465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_ops.h 2025-06-01T21:33:46.7999123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex.h 2025-06-01T21:33:46.8004648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8009680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cpu_dispatch.h 2025-06-01T21:33:46.8014802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cuda_dispatch.h 2025-06-01T21:33:46.8018695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_native.h 2025-06-01T21:33:46.8023790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_ops.h 2025-06-01T21:33:46.8029189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat.h 2025-06-01T21:33:46.8034232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate.h 2025-06-01T21:33:46.8039951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8045184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_native.h 2025-06-01T21:33:46.8050243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_ops.h 2025-06-01T21:33:46.8054149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8059334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_native.h 2025-06-01T21:33:46.8064786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_ops.h 2025-06-01T21:33:46.8070125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj.h 2025-06-01T21:33:46.8075059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8080021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_native.h 2025-06-01T21:33:46.8083698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_ops.h 2025-06-01T21:33:46.8089053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical.h 2025-06-01T21:33:46.8094525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8099930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8105172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cpu_dispatch.h 2025-06-01T21:33:46.8110338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cuda_dispatch.h 2025-06-01T21:33:46.8115862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_native.h 2025-06-01T21:33:46.8121287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_ops.h 2025-06-01T21:33:46.8125167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd.h 2025-06-01T21:33:46.8130304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8135330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_native.h 2025-06-01T21:33:46.8140890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_ops.h 2025-06-01T21:33:46.8145919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous.h 2025-06-01T21:33:46.8158263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8163329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_native.h 2025-06-01T21:33:46.8168669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_ops.h 2025-06-01T21:33:46.8172503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d.h 2025-06-01T21:33:46.8177458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8182687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_native.h 2025-06-01T21:33:46.8187906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_ops.h 2025-06-01T21:33:46.8209689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d.h 2025-06-01T21:33:46.8215015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8220518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_native.h 2025-06-01T21:33:46.8224472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_ops.h 2025-06-01T21:33:46.8229429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d.h 2025-06-01T21:33:46.8234406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8238311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_native.h 2025-06-01T21:33:46.8243851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_ops.h 2025-06-01T21:33:46.8247626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution.h 2025-06-01T21:33:46.8251735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward.h 2025-06-01T21:33:46.8255678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8260844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h 2025-06-01T21:33:46.8265180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_native.h 2025-06-01T21:33:46.8269230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_ops.h 2025-06-01T21:33:46.8273086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable.h 2025-06-01T21:33:46.8277070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8281181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_native.h 2025-06-01T21:33:46.8285090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_ops.h 2025-06-01T21:33:46.8290465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8294671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_native.h 2025-06-01T21:33:46.8298913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_ops.h 2025-06-01T21:33:46.8302806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable.h 2025-06-01T21:33:46.8306790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8310607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_native.h 2025-06-01T21:33:46.8315234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_ops.h 2025-06-01T21:33:46.8318873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d.h 2025-06-01T21:33:46.8322672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8326388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h 2025-06-01T21:33:46.8330131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_native.h 2025-06-01T21:33:46.8333947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_ops.h 2025-06-01T21:33:46.8337699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc.h 2025-06-01T21:33:46.8341596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward.h 2025-06-01T21:33:46.8346135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8351837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_native.h 2025-06-01T21:33:46.8355903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_ops.h 2025-06-01T21:33:46.8359778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8363597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_native.h 2025-06-01T21:33:46.8367265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_ops.h 2025-06-01T21:33:46.8371322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d.h 2025-06-01T21:33:46.8375229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8379129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_native.h 2025-06-01T21:33:46.8383414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_ops.h 2025-06-01T21:33:46.8387158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d.h 2025-06-01T21:33:46.8391119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8394977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_native.h 2025-06-01T21:33:46.8399567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_ops.h 2025-06-01T21:33:46.8403465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d.h 2025-06-01T21:33:46.8414502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8414810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_native.h 2025-06-01T21:33:46.8418359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_ops.h 2025-06-01T21:33:46.8422037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy.h 2025-06-01T21:33:46.8425476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign.h 2025-06-01T21:33:46.8429235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.8433252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8436953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cpu_dispatch.h 2025-06-01T21:33:46.8440669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cuda_dispatch.h 2025-06-01T21:33:46.8444432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta.h 2025-06-01T21:33:46.8448271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta_dispatch.h 2025-06-01T21:33:46.8453895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_native.h 2025-06-01T21:33:46.8458087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_ops.h 2025-06-01T21:33:46.8480755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.8484785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8488466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_meta_dispatch.h 2025-06-01T21:33:46.8492105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_native.h 2025-06-01T21:33:46.8495772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_ops.h 2025-06-01T21:33:46.8499495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse.h 2025-06-01T21:33:46.8503989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8508121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h 2025-06-01T21:33:46.8512203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_native.h 2025-06-01T21:33:46.8516122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h 2025-06-01T21:33:46.8519832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef.h 2025-06-01T21:33:46.8523489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8527130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_native.h 2025-06-01T21:33:46.8530978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_ops.h 2025-06-01T21:33:46.8534638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos.h 2025-06-01T21:33:46.8538521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh.h 2025-06-01T21:33:46.8542277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.8546014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cpu_dispatch.h 2025-06-01T21:33:46.8550065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cuda_dispatch.h 2025-06-01T21:33:46.8555872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta.h 2025-06-01T21:33:46.8560992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta_dispatch.h 2025-06-01T21:33:46.8566540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_native.h 2025-06-01T21:33:46.8571532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_ops.h 2025-06-01T21:33:46.8575185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss.h 2025-06-01T21:33:46.8580698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8586269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_native.h 2025-06-01T21:33:46.8591387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_ops.h 2025-06-01T21:33:46.8597576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity.h 2025-06-01T21:33:46.8603246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8608659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_native.h 2025-06-01T21:33:46.8613761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_ops.h 2025-06-01T21:33:46.8619295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.8624723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cpu_dispatch.h 2025-06-01T21:33:46.8628527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cuda_dispatch.h 2025-06-01T21:33:46.8633732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta.h 2025-06-01T21:33:46.8638691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta_dispatch.h 2025-06-01T21:33:46.8643717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_native.h 2025-06-01T21:33:46.8648726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_ops.h 2025-06-01T21:33:46.8652362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero.h 2025-06-01T21:33:46.8657819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8663150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h 2025-06-01T21:33:46.8668241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h 2025-06-01T21:33:46.8673860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_native.h 2025-06-01T21:33:46.8679039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_ops.h 2025-06-01T21:33:46.8684100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov.h 2025-06-01T21:33:46.8687871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8692892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_native.h 2025-06-01T21:33:46.8698076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_ops.h 2025-06-01T21:33:46.8724811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross.h 2025-06-01T21:33:46.8730110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8735687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss.h 2025-06-01T21:33:46.8741478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8745468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_native.h 2025-06-01T21:33:46.8751081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_ops.h 2025-06-01T21:33:46.8755389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_native.h 2025-06-01T21:33:46.8761384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_ops.h 2025-06-01T21:33:46.8765313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices.h 2025-06-01T21:33:46.8769438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8773210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy.h 2025-06-01T21:33:46.8779295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.8783229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8787039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_native.h 2025-06-01T21:33:46.8791151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_ops.h 2025-06-01T21:33:46.8795112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_native.h 2025-06-01T21:33:46.8798989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_ops.h 2025-06-01T21:33:46.8802768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss.h 2025-06-01T21:33:46.8808581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.8812342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_native.h 2025-06-01T21:33:46.8816055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_ops.h 2025-06-01T21:33:46.8820104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator.h 2025-06-01T21:33:46.8833155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h 2025-06-01T21:33:46.8837623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8841506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h 2025-06-01T21:33:46.8845359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h 2025-06-01T21:33:46.8849344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h 2025-06-01T21:33:46.8855015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8859108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h 2025-06-01T21:33:46.8864683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h 2025-06-01T21:33:46.8868618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h 2025-06-01T21:33:46.8872957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm.h 2025-06-01T21:33:46.8876864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward.h 2025-06-01T21:33:46.8881191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8885429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h 2025-06-01T21:33:46.8889278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h 2025-06-01T21:33:46.8893239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h 2025-06-01T21:33:46.8897276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8901239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h 2025-06-01T21:33:46.8905365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_native.h 2025-06-01T21:33:46.8909642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_ops.h 2025-06-01T21:33:46.8913977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution.h 2025-06-01T21:33:46.8917936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu.h 2025-06-01T21:33:46.8921910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8925829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h 2025-06-01T21:33:46.8929930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h 2025-06-01T21:33:46.8933819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h 2025-06-01T21:33:46.8937663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h 2025-06-01T21:33:46.8941627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_native.h 2025-06-01T21:33:46.8945367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_ops.h 2025-06-01T21:33:46.8949401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu.h 2025-06-01T21:33:46.8953305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8958130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h 2025-06-01T21:33:46.8962077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_native.h 2025-06-01T21:33:46.8967609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_ops.h 2025-06-01T21:33:46.8972151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose.h 2025-06-01T21:33:46.8976183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.8980450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h 2025-06-01T21:33:46.8984755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_native.h 2025-06-01T21:33:46.8988622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h 2025-06-01T21:33:46.8992423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler.h 2025-06-01T21:33:46.8996272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward.h 2025-06-01T21:33:46.9000386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9004449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h 2025-06-01T21:33:46.9008345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h 2025-06-01T21:33:46.9012171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h 2025-06-01T21:33:46.9016097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9020157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h 2025-06-01T21:33:46.9024312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_native.h 2025-06-01T21:33:46.9028274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_ops.h 2025-06-01T21:33:46.9032137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable.h 2025-06-01T21:33:46.9036174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9039956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_native.h 2025-06-01T21:33:46.9044240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_ops.h 2025-06-01T21:33:46.9048182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax.h 2025-06-01T21:33:46.9051972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward.h 2025-06-01T21:33:46.9056378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9060331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_native.h 2025-06-01T21:33:46.9065923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_ops.h 2025-06-01T21:33:46.9071596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9076779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9081487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_native.h 2025-06-01T21:33:46.9086489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_ops.h 2025-06-01T21:33:46.9091582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin.h 2025-06-01T21:33:46.9096572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9102131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9107231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_native.h 2025-06-01T21:33:46.9111123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_ops.h 2025-06-01T21:33:46.9116216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod.h 2025-06-01T21:33:46.9121237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward.h 2025-06-01T21:33:46.9126564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9131878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_native.h 2025-06-01T21:33:46.9137014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_ops.h 2025-06-01T21:33:46.9142342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9146590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9152032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cpu_dispatch.h 2025-06-01T21:33:46.9157360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cuda_dispatch.h 2025-06-01T21:33:46.9162574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta.h 2025-06-01T21:33:46.9167801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta_dispatch.h 2025-06-01T21:33:46.9172890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_native.h 2025-06-01T21:33:46.9177964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_ops.h 2025-06-01T21:33:46.9182023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum.h 2025-06-01T21:33:46.9187284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9192875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9197944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cpu_dispatch.h 2025-06-01T21:33:46.9225658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cuda_dispatch.h 2025-06-01T21:33:46.9231537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta.h 2025-06-01T21:33:46.9237176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta_dispatch.h 2025-06-01T21:33:46.9241252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_native.h 2025-06-01T21:33:46.9246684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_ops.h 2025-06-01T21:33:46.9252368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid.h 2025-06-01T21:33:46.9257140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9262758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_native.h 2025-06-01T21:33:46.9266716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_ops.h 2025-06-01T21:33:46.9270420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data.h 2025-06-01T21:33:46.9274034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9279653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_native.h 2025-06-01T21:33:46.9283466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_ops.h 2025-06-01T21:33:46.9286960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad.h 2025-06-01T21:33:46.9290610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9294326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_native.h 2025-06-01T21:33:46.9297979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_ops.h 2025-06-01T21:33:46.9302047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim.h 2025-06-01T21:33:46.9306051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9311221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_native.h 2025-06-01T21:33:46.9315178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_ops.h 2025-06-01T21:33:46.9318750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize.h 2025-06-01T21:33:46.9322541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9326535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cpu_dispatch.h 2025-06-01T21:33:46.9330460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cuda_dispatch.h 2025-06-01T21:33:46.9334244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_native.h 2025-06-01T21:33:46.9338016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_ops.h 2025-06-01T21:33:46.9342277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det.h 2025-06-01T21:33:46.9346145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach.h 2025-06-01T21:33:46.9349823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9355790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy.h 2025-06-01T21:33:46.9360067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9365153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9369040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_native.h 2025-06-01T21:33:46.9373074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_ops.h 2025-06-01T21:33:46.9376896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_native.h 2025-06-01T21:33:46.9381579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_ops.h 2025-06-01T21:33:46.9385614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9389360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_native.h 2025-06-01T21:33:46.9392997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_ops.h 2025-06-01T21:33:46.9396420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag.h 2025-06-01T21:33:46.9399871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat.h 2025-06-01T21:33:46.9403520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9407902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_native.h 2025-06-01T21:33:46.9412157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_ops.h 2025-06-01T21:33:46.9415962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal.h 2025-06-01T21:33:46.9419669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward.h 2025-06-01T21:33:46.9423443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9427191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_native.h 2025-06-01T21:33:46.9432013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_ops.h 2025-06-01T21:33:46.9436288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9440180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9443909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy.h 2025-06-01T21:33:46.9447899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9451669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9455458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_native.h 2025-06-01T21:33:46.9459704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_ops.h 2025-06-01T21:33:46.9463972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_native.h 2025-06-01T21:33:46.9468154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_ops.h 2025-06-01T21:33:46.9471621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter.h 2025-06-01T21:33:46.9476786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9479780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9484313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_native.h 2025-06-01T21:33:46.9488556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_ops.h 2025-06-01T21:33:46.9492528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9496393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed.h 2025-06-01T21:33:46.9500610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9504435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9508667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_native.h 2025-06-01T21:33:46.9512740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_ops.h 2025-06-01T21:33:46.9516658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_native.h 2025-06-01T21:33:46.9520347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_ops.h 2025-06-01T21:33:46.9524141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff.h 2025-06-01T21:33:46.9527909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9531561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_native.h 2025-06-01T21:33:46.9535560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_ops.h 2025-06-01T21:33:46.9539453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma.h 2025-06-01T21:33:46.9544222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9549788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cpu_dispatch.h 2025-06-01T21:33:46.9555310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cuda_dispatch.h 2025-06-01T21:33:46.9560418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta.h 2025-06-01T21:33:46.9566420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta_dispatch.h 2025-06-01T21:33:46.9571731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_native.h 2025-06-01T21:33:46.9576838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_ops.h 2025-06-01T21:33:46.9582189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist.h 2025-06-01T21:33:46.9587414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9591246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_native.h 2025-06-01T21:33:46.9596344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_ops.h 2025-06-01T21:33:46.9601165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div.h 2025-06-01T21:33:46.9606395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide.h 2025-06-01T21:33:46.9611375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9616577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_native.h 2025-06-01T21:33:46.9620785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_ops.h 2025-06-01T21:33:46.9626148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9631267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9636314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cpu_dispatch.h 2025-06-01T21:33:46.9641308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cuda_dispatch.h 2025-06-01T21:33:46.9646418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta.h 2025-06-01T21:33:46.9650063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta_dispatch.h 2025-06-01T21:33:46.9655148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_native.h 2025-06-01T21:33:46.9661154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_ops.h 2025-06-01T21:33:46.9666063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot.h 2025-06-01T21:33:46.9671084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9691293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cpu_dispatch.h 2025-06-01T21:33:46.9696408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cuda_dispatch.h 2025-06-01T21:33:46.9713152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_native.h 2025-06-01T21:33:46.9718432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_ops.h 2025-06-01T21:33:46.9723630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout.h 2025-06-01T21:33:46.9729091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9733090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_native.h 2025-06-01T21:33:46.9738519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_ops.h 2025-06-01T21:33:46.9742374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit.h 2025-06-01T21:33:46.9747802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9751817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_native.h 2025-06-01T21:33:46.9755494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_ops.h 2025-06-01T21:33:46.9760083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack.h 2025-06-01T21:33:46.9765632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9769450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_native.h 2025-06-01T21:33:46.9773394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_ops.h 2025-06-01T21:33:46.9777150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum.h 2025-06-01T21:33:46.9780892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9784458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_native.h 2025-06-01T21:33:46.9788259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_ops.h 2025-06-01T21:33:46.9792720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu.h 2025-06-01T21:33:46.9797449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward.h 2025-06-01T21:33:46.9801508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9805169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cpu_dispatch.h 2025-06-01T21:33:46.9808897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cuda_dispatch.h 2025-06-01T21:33:46.9812641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta.h 2025-06-01T21:33:46.9816473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta_dispatch.h 2025-06-01T21:33:46.9820342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_native.h 2025-06-01T21:33:46.9824455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_ops.h 2025-06-01T21:33:46.9828633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:46.9832236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cpu_dispatch.h 2025-06-01T21:33:46.9836375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cuda_dispatch.h 2025-06-01T21:33:46.9840190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta.h 2025-06-01T21:33:46.9843705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta_dispatch.h 2025-06-01T21:33:46.9847359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_native.h 2025-06-01T21:33:46.9852394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_ops.h 2025-06-01T21:33:46.9857903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding.h 2025-06-01T21:33:46.9861803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward.h 2025-06-01T21:33:46.9865716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9869634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_native.h 2025-06-01T21:33:46.9873846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_ops.h 2025-06-01T21:33:46.9877672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag.h 2025-06-01T21:33:46.9882012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9886051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_native.h 2025-06-01T21:33:46.9889917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_ops.h 2025-06-01T21:33:46.9893843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9897707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward.h 2025-06-01T21:33:46.9902071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9907131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h 2025-06-01T21:33:46.9911179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h 2025-06-01T21:33:46.9915044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_native.h 2025-06-01T21:33:46.9918887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_ops.h 2025-06-01T21:33:46.9922757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_native.h 2025-06-01T21:33:46.9926626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_ops.h 2025-06-01T21:33:46.9930763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm.h 2025-06-01T21:33:46.9935239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9939450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h 2025-06-01T21:33:46.9943323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h 2025-06-01T21:33:46.9947241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h 2025-06-01T21:33:46.9952921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_native.h 2025-06-01T21:33:46.9958194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_ops.h 2025-06-01T21:33:46.9962174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward.h 2025-06-01T21:33:46.9968039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9973219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_native.h 2025-06-01T21:33:46.9978452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_ops.h 2025-06-01T21:33:46.9984159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty.h 2025-06-01T21:33:46.9989254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:46.9994494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:46.9999827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cpu_dispatch.h 2025-06-01T21:33:47.0005098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cuda_dispatch.h 2025-06-01T21:33:47.0009029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like.h 2025-06-01T21:33:47.0014380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0019727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_native.h 2025-06-01T21:33:47.0024796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_ops.h 2025-06-01T21:33:47.0029867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_meta_dispatch.h 2025-06-01T21:33:47.0034962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_native.h 2025-06-01T21:33:47.0040307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_ops.h 2025-06-01T21:33:47.0044316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted.h 2025-06-01T21:33:47.0049644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0055118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_native.h 2025-06-01T21:33:47.0060487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_ops.h 2025-06-01T21:33:47.0065798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized.h 2025-06-01T21:33:47.0071049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0076893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_native.h 2025-06-01T21:33:47.0082544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_ops.h 2025-06-01T21:33:47.0087767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided.h 2025-06-01T21:33:47.0091886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0097041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cpu_dispatch.h 2025-06-01T21:33:47.0102344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cuda_dispatch.h 2025-06-01T21:33:47.0107610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_meta_dispatch.h 2025-06-01T21:33:47.0113011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_native.h 2025-06-01T21:33:47.0118194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_ops.h 2025-06-01T21:33:47.0123297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq.h 2025-06-01T21:33:47.0127145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal.h 2025-06-01T21:33:47.0132017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cpu_dispatch.h 2025-06-01T21:33:47.0137377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cuda_dispatch.h 2025-06-01T21:33:47.0143005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_native.h 2025-06-01T21:33:47.0148214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_ops.h 2025-06-01T21:33:47.0153655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0158650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cpu_dispatch.h 2025-06-01T21:33:47.0162829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cuda_dispatch.h 2025-06-01T21:33:47.0168045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta.h 2025-06-01T21:33:47.0172904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta_dispatch.h 2025-06-01T21:33:47.0177885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_native.h 2025-06-01T21:33:47.0182959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_ops.h 2025-06-01T21:33:47.0186436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf.h 2025-06-01T21:33:47.0191546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc.h 2025-06-01T21:33:47.0196622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0215786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cpu_dispatch.h 2025-06-01T21:33:47.0221616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cuda_dispatch.h 2025-06-01T21:33:47.0227023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta.h 2025-06-01T21:33:47.0232529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta_dispatch.h 2025-06-01T21:33:47.0237972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_native.h 2025-06-01T21:33:47.0241739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_ops.h 2025-06-01T21:33:47.0245902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv.h 2025-06-01T21:33:47.0251558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0255664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cpu_dispatch.h 2025-06-01T21:33:47.0259722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cuda_dispatch.h 2025-06-01T21:33:47.0265190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta.h 2025-06-01T21:33:47.0269257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta_dispatch.h 2025-06-01T21:33:47.0274194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_native.h 2025-06-01T21:33:47.0277972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_ops.h 2025-06-01T21:33:47.0282224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0286275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cpu_dispatch.h 2025-06-01T21:33:47.0290039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cuda_dispatch.h 2025-06-01T21:33:47.0293670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta.h 2025-06-01T21:33:47.0299328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta_dispatch.h 2025-06-01T21:33:47.0303094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_native.h 2025-06-01T21:33:47.0307038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_ops.h 2025-06-01T21:33:47.0310461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp.h 2025-06-01T21:33:47.0314078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2.h 2025-06-01T21:33:47.0317783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0321379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cpu_dispatch.h 2025-06-01T21:33:47.0325055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cuda_dispatch.h 2025-06-01T21:33:47.0328714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta.h 2025-06-01T21:33:47.0332294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta_dispatch.h 2025-06-01T21:33:47.0336036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_native.h 2025-06-01T21:33:47.0339752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_ops.h 2025-06-01T21:33:47.0343391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand.h 2025-06-01T21:33:47.0347389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as.h 2025-06-01T21:33:47.0353400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0357799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_native.h 2025-06-01T21:33:47.0361710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_ops.h 2025-06-01T21:33:47.0365387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0370626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy.h 2025-06-01T21:33:47.0375832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0380154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0383960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_native.h 2025-06-01T21:33:47.0388048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_ops.h 2025-06-01T21:33:47.0391795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_native.h 2025-06-01T21:33:47.0395439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_ops.h 2025-06-01T21:33:47.0399189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1.h 2025-06-01T21:33:47.0403828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0407612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cpu_dispatch.h 2025-06-01T21:33:47.0411295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cuda_dispatch.h 2025-06-01T21:33:47.0414999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta.h 2025-06-01T21:33:47.0418823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta_dispatch.h 2025-06-01T21:33:47.0423151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_native.h 2025-06-01T21:33:47.0427097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_ops.h 2025-06-01T21:33:47.0430878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential.h 2025-06-01T21:33:47.0434948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0438749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cpu_dispatch.h 2025-06-01T21:33:47.0442449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cuda_dispatch.h 2025-06-01T21:33:47.0446161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_meta_dispatch.h 2025-06-01T21:33:47.0449956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_native.h 2025-06-01T21:33:47.0455656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_ops.h 2025-06-01T21:33:47.0461441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.0466609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cpu_dispatch.h 2025-06-01T21:33:47.0471670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cuda_dispatch.h 2025-06-01T21:33:47.0475507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta.h 2025-06-01T21:33:47.0480448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta_dispatch.h 2025-06-01T21:33:47.0485551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_native.h 2025-06-01T21:33:47.0490456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_ops.h 2025-06-01T21:33:47.0495170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye.h 2025-06-01T21:33:47.0499150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0504617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cpu_dispatch.h 2025-06-01T21:33:47.0509658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cuda_dispatch.h 2025-06-01T21:33:47.0514750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_meta_dispatch.h 2025-06-01T21:33:47.0519661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_native.h 2025-06-01T21:33:47.0524661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_ops.h 2025-06-01T21:33:47.0528548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine.h 2025-06-01T21:33:47.0534242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h 2025-06-01T21:33:47.0539729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h 2025-06-01T21:33:47.0545365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0550642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h 2025-06-01T21:33:47.0556529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h 2025-06-01T21:33:47.0561971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0567170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h 2025-06-01T21:33:47.0572554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h 2025-06-01T21:33:47.0577789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h 2025-06-01T21:33:47.0582068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h 2025-06-01T21:33:47.0587515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0593179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h 2025-06-01T21:33:47.0598488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h 2025-06-01T21:33:47.0604099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h 2025-06-01T21:33:47.0609760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h 2025-06-01T21:33:47.0615374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h 2025-06-01T21:33:47.0621090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0626511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h 2025-06-01T21:33:47.0631934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h 2025-06-01T21:33:47.0637949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0643405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h 2025-06-01T21:33:47.0647568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h 2025-06-01T21:33:47.0652833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h 2025-06-01T21:33:47.0658325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h 2025-06-01T21:33:47.0664069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0669323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h 2025-06-01T21:33:47.0674916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h 2025-06-01T21:33:47.0680198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h 2025-06-01T21:33:47.0685639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0691468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h 2025-06-01T21:33:47.0696867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0702317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h 2025-06-01T21:33:47.0719976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h 2025-06-01T21:33:47.0724216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h 2025-06-01T21:33:47.0730106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h 2025-06-01T21:33:47.0735787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight.h 2025-06-01T21:33:47.0741748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0747509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h 2025-06-01T21:33:47.0751632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0757899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h 2025-06-01T21:33:47.0762048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h 2025-06-01T21:33:47.0765985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h 2025-06-01T21:33:47.0769912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h 2025-06-01T21:33:47.0775656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h 2025-06-01T21:33:47.0780458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0785018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h 2025-06-01T21:33:47.0789628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h 2025-06-01T21:33:47.0793638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h 2025-06-01T21:33:47.0797888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0802947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h 2025-06-01T21:33:47.0807199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h 2025-06-01T21:33:47.0811349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h 2025-06-01T21:33:47.0815436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0819341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h 2025-06-01T21:33:47.0823275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h 2025-06-01T21:33:47.0827238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout.h 2025-06-01T21:33:47.0831386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0835308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_native.h 2025-06-01T21:33:47.0839224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_ops.h 2025-06-01T21:33:47.0843269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout.h 2025-06-01T21:33:47.0847234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0851017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_native.h 2025-06-01T21:33:47.0855686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_ops.h 2025-06-01T21:33:47.0863585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft.h 2025-06-01T21:33:47.0904571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2.h 2025-06-01T21:33:47.0909478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0915000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_native.h 2025-06-01T21:33:47.0918891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_ops.h 2025-06-01T21:33:47.0924448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq.h 2025-06-01T21:33:47.0930110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.0934132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_native.h 2025-06-01T21:33:47.0939427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_ops.h 2025-06-01T21:33:47.0943288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn.h 2025-06-01T21:33:47.0947217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0952457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_native.h 2025-06-01T21:33:47.0976979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_ops.h 2025-06-01T21:33:47.0982251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift.h 2025-06-01T21:33:47.0987113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.0991598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_native.h 2025-06-01T21:33:47.0995492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_ops.h 2025-06-01T21:33:47.0999456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1003271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_native.h 2025-06-01T21:33:47.1006922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_ops.h 2025-06-01T21:33:47.1010773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft.h 2025-06-01T21:33:47.1014556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2.h 2025-06-01T21:33:47.1018612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1022400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_native.h 2025-06-01T21:33:47.1026477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_ops.h 2025-06-01T21:33:47.1030237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn.h 2025-06-01T21:33:47.1034298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1040144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_native.h 2025-06-01T21:33:47.1044144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_ops.h 2025-06-01T21:33:47.1048246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1052113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_native.h 2025-06-01T21:33:47.1055825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_ops.h 2025-06-01T21:33:47.1059750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft.h 2025-06-01T21:33:47.1063243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2.h 2025-06-01T21:33:47.1067016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1070873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_native.h 2025-06-01T21:33:47.1074465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_ops.h 2025-06-01T21:33:47.1078439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn.h 2025-06-01T21:33:47.1082375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1086339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_native.h 2025-06-01T21:33:47.1090169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_ops.h 2025-06-01T21:33:47.1093875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift.h 2025-06-01T21:33:47.1097782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1101667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_native.h 2025-06-01T21:33:47.1105644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_ops.h 2025-06-01T21:33:47.1109900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1113762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_native.h 2025-06-01T21:33:47.1117474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_ops.h 2025-06-01T21:33:47.1121235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft.h 2025-06-01T21:33:47.1124978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2.h 2025-06-01T21:33:47.1128883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1132934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_native.h 2025-06-01T21:33:47.1138682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_ops.h 2025-06-01T21:33:47.1142811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn.h 2025-06-01T21:33:47.1148086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1153762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_native.h 2025-06-01T21:33:47.1159083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_ops.h 2025-06-01T21:33:47.1164622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1169902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_native.h 2025-06-01T21:33:47.1182026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_ops.h 2025-06-01T21:33:47.1183112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft.h 2025-06-01T21:33:47.1188527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2.h 2025-06-01T21:33:47.1192514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1196322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_native.h 2025-06-01T21:33:47.1200282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_ops.h 2025-06-01T21:33:47.1204117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn.h 2025-06-01T21:33:47.1240749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1241482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_native.h 2025-06-01T21:33:47.1242054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_ops.h 2025-06-01T21:33:47.1242736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1243613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_native.h 2025-06-01T21:33:47.1244185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_ops.h 2025-06-01T21:33:47.1244728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft.h 2025-06-01T21:33:47.1245409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2.h 2025-06-01T21:33:47.1246145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1258557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_native.h 2025-06-01T21:33:47.1259313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_ops.h 2025-06-01T21:33:47.1259867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq.h 2025-06-01T21:33:47.1260577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1263458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_native.h 2025-06-01T21:33:47.1267190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_ops.h 2025-06-01T21:33:47.1271218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn.h 2025-06-01T21:33:47.1275174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1279629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_native.h 2025-06-01T21:33:47.1283369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_ops.h 2025-06-01T21:33:47.1287224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1292219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_native.h 2025-06-01T21:33:47.1294797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_ops.h 2025-06-01T21:33:47.1299335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill.h 2025-06-01T21:33:47.1302894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1306517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cpu_dispatch.h 2025-06-01T21:33:47.1310175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cuda_dispatch.h 2025-06-01T21:33:47.1313881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal.h 2025-06-01T21:33:47.1317767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1321545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_native.h 2025-06-01T21:33:47.1325901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_ops.h 2025-06-01T21:33:47.1329917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_meta_dispatch.h 2025-06-01T21:33:47.1333647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_native.h 2025-06-01T21:33:47.1337271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_ops.h 2025-06-01T21:33:47.1340710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix.h 2025-06-01T21:33:47.1344323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1348369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_native.h 2025-06-01T21:33:47.1352020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_ops.h 2025-06-01T21:33:47.1355486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten.h 2025-06-01T21:33:47.1359339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1362891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors.h 2025-06-01T21:33:47.1367013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1371422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_native.h 2025-06-01T21:33:47.1375520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_ops.h 2025-06-01T21:33:47.1379551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_native.h 2025-06-01T21:33:47.1383386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_ops.h 2025-06-01T21:33:47.1387337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip.h 2025-06-01T21:33:47.1391295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr.h 2025-06-01T21:33:47.1395020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1398916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_native.h 2025-06-01T21:33:47.1402648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_ops.h 2025-06-01T21:33:47.1406383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud.h 2025-06-01T21:33:47.1410005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1413648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_native.h 2025-06-01T21:33:47.1417501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_ops.h 2025-06-01T21:33:47.1421539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1425332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cpu_dispatch.h 2025-06-01T21:33:47.1429134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cuda_dispatch.h 2025-06-01T21:33:47.1433027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_native.h 2025-06-01T21:33:47.1436612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_ops.h 2025-06-01T21:33:47.1440532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power.h 2025-06-01T21:33:47.1444431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1448341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_native.h 2025-06-01T21:33:47.1452914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_ops.h 2025-06-01T21:33:47.1456944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor.h 2025-06-01T21:33:47.1460810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1464441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cpu_dispatch.h 2025-06-01T21:33:47.1468184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cuda_dispatch.h 2025-06-01T21:33:47.1472182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide.h 2025-06-01T21:33:47.1476167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1480070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cpu_dispatch.h 2025-06-01T21:33:47.1483980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cuda_dispatch.h 2025-06-01T21:33:47.1487770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_meta_dispatch.h 2025-06-01T21:33:47.1491567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_native.h 2025-06-01T21:33:47.1495453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_ops.h 2025-06-01T21:33:47.1499846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta.h 2025-06-01T21:33:47.1503857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta_dispatch.h 2025-06-01T21:33:47.1507592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_native.h 2025-06-01T21:33:47.1511291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_ops.h 2025-06-01T21:33:47.1515026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax.h 2025-06-01T21:33:47.1519224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1523500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cpu_dispatch.h 2025-06-01T21:33:47.1527479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cuda_dispatch.h 2025-06-01T21:33:47.1532129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta.h 2025-06-01T21:33:47.1536028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta_dispatch.h 2025-06-01T21:33:47.1539869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_native.h 2025-06-01T21:33:47.1543510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_ops.h 2025-06-01T21:33:47.1547071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin.h 2025-06-01T21:33:47.1550917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1555300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cpu_dispatch.h 2025-06-01T21:33:47.1559483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cuda_dispatch.h 2025-06-01T21:33:47.1565543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta.h 2025-06-01T21:33:47.1578934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta_dispatch.h 2025-06-01T21:33:47.1582618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_native.h 2025-06-01T21:33:47.1586228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_ops.h 2025-06-01T21:33:47.1590365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod.h 2025-06-01T21:33:47.1594718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1598465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1602082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cpu_dispatch.h 2025-06-01T21:33:47.1606128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cuda_dispatch.h 2025-06-01T21:33:47.1609867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta.h 2025-06-01T21:33:47.1613538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta_dispatch.h 2025-06-01T21:33:47.1617656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_native.h 2025-06-01T21:33:47.1622209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_ops.h 2025-06-01T21:33:47.1625638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac.h 2025-06-01T21:33:47.1629725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d.h 2025-06-01T21:33:47.1634136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward.h 2025-06-01T21:33:47.1638725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1642939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h 2025-06-01T21:33:47.1647326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h 2025-06-01T21:33:47.1652573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h 2025-06-01T21:33:47.1655027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h 2025-06-01T21:33:47.1659319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h 2025-06-01T21:33:47.1664482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h 2025-06-01T21:33:47.1667309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1671519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h 2025-06-01T21:33:47.1675343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h 2025-06-01T21:33:47.1679154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta.h 2025-06-01T21:33:47.1683387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h 2025-06-01T21:33:47.1687180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_native.h 2025-06-01T21:33:47.1691610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_ops.h 2025-06-01T21:33:47.1695456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d.h 2025-06-01T21:33:47.1699430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward.h 2025-06-01T21:33:47.1703378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h 2025-06-01T21:33:47.1707483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h 2025-06-01T21:33:47.1711697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h 2025-06-01T21:33:47.1715334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h 2025-06-01T21:33:47.1719769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1723751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h 2025-06-01T21:33:47.1727862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h 2025-06-01T21:33:47.1732171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta.h 2025-06-01T21:33:47.1736401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h 2025-06-01T21:33:47.1740382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_native.h 2025-06-01T21:33:47.1744154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_ops.h 2025-06-01T21:33:47.1748141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1752032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cpu_dispatch.h 2025-06-01T21:33:47.1755686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cuda_dispatch.h 2025-06-01T21:33:47.1759653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta.h 2025-06-01T21:33:47.1763051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta_dispatch.h 2025-06-01T21:33:47.1766818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_native.h 2025-06-01T21:33:47.1770471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_ops.h 2025-06-01T21:33:47.1773832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp.h 2025-06-01T21:33:47.1777312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1781344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cpu_dispatch.h 2025-06-01T21:33:47.1790621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cuda_dispatch.h 2025-06-01T21:33:47.1791405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_native.h 2025-06-01T21:33:47.1793013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_ops.h 2025-06-01T21:33:47.1797467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm.h 2025-06-01T21:33:47.1801145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1804878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_native.h 2025-06-01T21:33:47.1808714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_ops.h 2025-06-01T21:33:47.1812678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_blob.h 2025-06-01T21:33:47.1816369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file.h 2025-06-01T21:33:47.1820510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1824788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_cpu_dispatch.h 2025-06-01T21:33:47.1829082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_native.h 2025-06-01T21:33:47.1833163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_ops.h 2025-06-01T21:33:47.1837037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full.h 2025-06-01T21:33:47.1840736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1844772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like.h 2025-06-01T21:33:47.1849091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.1852707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_native.h 2025-06-01T21:33:47.1856347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_ops.h 2025-06-01T21:33:47.1860243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_native.h 2025-06-01T21:33:47.1864147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_ops.h 2025-06-01T21:33:47.1868223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h 2025-06-01T21:33:47.1872388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1876651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h 2025-06-01T21:33:47.1881501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h 2025-06-01T21:33:47.1885786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather.h 2025-06-01T21:33:47.1889446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward.h 2025-06-01T21:33:47.1894842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1898934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_native.h 2025-06-01T21:33:47.1902747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_ops.h 2025-06-01T21:33:47.1906724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1910628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.1914991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cpu_dispatch.h 2025-06-01T21:33:47.1919104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cuda_dispatch.h 2025-06-01T21:33:47.1924022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta.h 2025-06-01T21:33:47.1928179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta_dispatch.h 2025-06-01T21:33:47.1932054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_native.h 2025-06-01T21:33:47.1936185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_ops.h 2025-06-01T21:33:47.1940108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd.h 2025-06-01T21:33:47.1943857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1947494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cpu_dispatch.h 2025-06-01T21:33:47.1951305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cuda_dispatch.h 2025-06-01T21:33:47.1954929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta.h 2025-06-01T21:33:47.1958585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta_dispatch.h 2025-06-01T21:33:47.1962288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_native.h 2025-06-01T21:33:47.1966047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_ops.h 2025-06-01T21:33:47.1969438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge.h 2025-06-01T21:33:47.1972863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu.h 2025-06-01T21:33:47.1976359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward.h 2025-06-01T21:33:47.1981776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.1985588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h 2025-06-01T21:33:47.1989611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h 2025-06-01T21:33:47.1993512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta.h 2025-06-01T21:33:47.1997473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta_dispatch.h 2025-06-01T21:33:47.2001211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_native.h 2025-06-01T21:33:47.2004954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_ops.h 2025-06-01T21:33:47.2008922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2012595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cpu_dispatch.h 2025-06-01T21:33:47.2016460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cuda_dispatch.h 2025-06-01T21:33:47.2036451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta.h 2025-06-01T21:33:47.2040256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta_dispatch.h 2025-06-01T21:33:47.2044272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_native.h 2025-06-01T21:33:47.2047897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_ops.h 2025-06-01T21:33:47.2051405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric.h 2025-06-01T21:33:47.2055269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2059079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cpu_dispatch.h 2025-06-01T21:33:47.2064100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cuda_dispatch.h 2025-06-01T21:33:47.2067303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_meta_dispatch.h 2025-06-01T21:33:47.2071755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_native.h 2025-06-01T21:33:47.2075439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_ops.h 2025-06-01T21:33:47.2079134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf.h 2025-06-01T21:33:47.2084681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cpu_dispatch.h 2025-06-01T21:33:47.2088414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cuda_dispatch.h 2025-06-01T21:33:47.2092564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_native.h 2025-06-01T21:33:47.2096588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_ops.h 2025-06-01T21:33:47.2100384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger.h 2025-06-01T21:33:47.2103861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2107431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_native.h 2025-06-01T21:33:47.2110942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_ops.h 2025-06-01T21:33:47.2114551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2118175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cpu_dispatch.h 2025-06-01T21:33:47.2121922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cuda_dispatch.h 2025-06-01T21:33:47.2126270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta.h 2025-06-01T21:33:47.2129726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta_dispatch.h 2025-06-01T21:33:47.2133225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_native.h 2025-06-01T21:33:47.2136758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_ops.h 2025-06-01T21:33:47.2140185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu.h 2025-06-01T21:33:47.2143634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward.h 2025-06-01T21:33:47.2147236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cpu_dispatch.h 2025-06-01T21:33:47.2151000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cuda_dispatch.h 2025-06-01T21:33:47.2154869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp.h 2025-06-01T21:33:47.2158787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2162728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h 2025-06-01T21:33:47.2167149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h 2025-06-01T21:33:47.2171363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_native.h 2025-06-01T21:33:47.2176335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_ops.h 2025-06-01T21:33:47.2180082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_native.h 2025-06-01T21:33:47.2184187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_ops.h 2025-06-01T21:33:47.2188481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2191790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cpu_dispatch.h 2025-06-01T21:33:47.2195878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cuda_dispatch.h 2025-06-01T21:33:47.2199892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp.h 2025-06-01T21:33:47.2203505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2207392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h 2025-06-01T21:33:47.2211786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h 2025-06-01T21:33:47.2215565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_native.h 2025-06-01T21:33:47.2219544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_ops.h 2025-06-01T21:33:47.2223450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta.h 2025-06-01T21:33:47.2227101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta_dispatch.h 2025-06-01T21:33:47.2231290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_native.h 2025-06-01T21:33:47.2235156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_ops.h 2025-06-01T21:33:47.2238829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient.h 2025-06-01T21:33:47.2242556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2246651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_native.h 2025-06-01T21:33:47.2253356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_ops.h 2025-06-01T21:33:47.2257302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater.h 2025-06-01T21:33:47.2263198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2268706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal.h 2025-06-01T21:33:47.2272636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2278416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_native.h 2025-06-01T21:33:47.2282341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_ops.h 2025-06-01T21:33:47.2286193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_native.h 2025-06-01T21:33:47.2290138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_ops.h 2025-06-01T21:33:47.2295819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler.h 2025-06-01T21:33:47.2300370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d.h 2025-06-01T21:33:47.2304130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward.h 2025-06-01T21:33:47.2308090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2312427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h 2025-06-01T21:33:47.2316463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h 2025-06-01T21:33:47.2320295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_native.h 2025-06-01T21:33:47.2325620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h 2025-06-01T21:33:47.2330244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2334201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h 2025-06-01T21:33:47.2338358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h 2025-06-01T21:33:47.2342230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_native.h 2025-06-01T21:33:47.2346122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_ops.h 2025-06-01T21:33:47.2350003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d.h 2025-06-01T21:33:47.2353961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward.h 2025-06-01T21:33:47.2358686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2362714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h 2025-06-01T21:33:47.2368381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h 2025-06-01T21:33:47.2372286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_native.h 2025-06-01T21:33:47.2376192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h 2025-06-01T21:33:47.2382083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2386159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h 2025-06-01T21:33:47.2390312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h 2025-06-01T21:33:47.2394327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_native.h 2025-06-01T21:33:47.2398188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_ops.h 2025-06-01T21:33:47.2402549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2406442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_native.h 2025-06-01T21:33:47.2410229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_ops.h 2025-06-01T21:33:47.2414082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm.h 2025-06-01T21:33:47.2418163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2422034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_native.h 2025-06-01T21:33:47.2425828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_ops.h 2025-06-01T21:33:47.2429713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru.h 2025-06-01T21:33:47.2433339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell.h 2025-06-01T21:33:47.2437252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2441021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_native.h 2025-06-01T21:33:47.2444722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_ops.h 2025-06-01T21:33:47.2448848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.2452500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_native.h 2025-06-01T21:33:47.2457028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_ops.h 2025-06-01T21:33:47.2460638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt.h 2025-06-01T21:33:47.2464309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2467922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cpu_dispatch.h 2025-06-01T21:33:47.2471537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cuda_dispatch.h 2025-06-01T21:33:47.2475659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta.h 2025-06-01T21:33:47.2479509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta_dispatch.h 2025-06-01T21:33:47.2485050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_native.h 2025-06-01T21:33:47.2488784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_ops.h 2025-06-01T21:33:47.2492242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window.h 2025-06-01T21:33:47.2495998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2500013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_native.h 2025-06-01T21:33:47.2503591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_ops.h 2025-06-01T21:33:47.2508255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window.h 2025-06-01T21:33:47.2512210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2516460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_native.h 2025-06-01T21:33:47.2520361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_ops.h 2025-06-01T21:33:47.2524048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink.h 2025-06-01T21:33:47.2527678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward.h 2025-06-01T21:33:47.2531767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2535660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h 2025-06-01T21:33:47.2539644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h 2025-06-01T21:33:47.2543478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta.h 2025-06-01T21:33:47.2547336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h 2025-06-01T21:33:47.2551286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_native.h 2025-06-01T21:33:47.2555221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_ops.h 2025-06-01T21:33:47.2559540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2563294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cpu_dispatch.h 2025-06-01T21:33:47.2567089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cuda_dispatch.h 2025-06-01T21:33:47.2570911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta.h 2025-06-01T21:33:47.2574807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta_dispatch.h 2025-06-01T21:33:47.2578719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_native.h 2025-06-01T21:33:47.2584118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_ops.h 2025-06-01T21:33:47.2588276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid.h 2025-06-01T21:33:47.2592018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward.h 2025-06-01T21:33:47.2596102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2600037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h 2025-06-01T21:33:47.2603866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h 2025-06-01T21:33:47.2607666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta.h 2025-06-01T21:33:47.2611626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h 2025-06-01T21:33:47.2615559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_native.h 2025-06-01T21:33:47.2620627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_ops.h 2025-06-01T21:33:47.2624801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.2629547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h 2025-06-01T21:33:47.2633773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h 2025-06-01T21:33:47.2637467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta.h 2025-06-01T21:33:47.2642404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h 2025-06-01T21:33:47.2646488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_native.h 2025-06-01T21:33:47.2650722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_ops.h 2025-06-01T21:33:47.2655453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish.h 2025-06-01T21:33:47.2659408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward.h 2025-06-01T21:33:47.2663430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.2667436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h 2025-06-01T21:33:47.2671728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h 2025-06-01T21:33:47.2676516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_native.h 2025-06-01T21:33:47.2680595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_ops.h 2025-06-01T21:33:47.2686015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cpu_dispatch.h 2025-06-01T21:33:47.2691675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cuda_dispatch.h 2025-06-01T21:33:47.2697582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_meta_dispatch.h 2025-06-01T21:33:47.2703163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_native.h 2025-06-01T21:33:47.2708546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_ops.h 2025-06-01T21:33:47.2714255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh.h 2025-06-01T21:33:47.2718189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward.h 2025-06-01T21:33:47.2761571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h 2025-06-01T21:33:47.2767185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h 2025-06-01T21:33:47.2773830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_native.h 2025-06-01T21:33:47.2779421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_ops.h 2025-06-01T21:33:47.2785046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cpu_dispatch.h 2025-06-01T21:33:47.2789752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cuda_dispatch.h 2025-06-01T21:33:47.2796467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_meta_dispatch.h 2025-06-01T21:33:47.2800469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_native.h 2025-06-01T21:33:47.2804218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_ops.h 2025-06-01T21:33:47.2809634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside.h 2025-06-01T21:33:47.2814033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3273213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cpu_dispatch.h 2025-06-01T21:33:47.3277365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cuda_dispatch.h 2025-06-01T21:33:47.3281806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta.h 2025-06-01T21:33:47.3285537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta_dispatch.h 2025-06-01T21:33:47.3289819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_native.h 2025-06-01T21:33:47.3293385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_ops.h 2025-06-01T21:33:47.3297587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss.h 2025-06-01T21:33:47.3301613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3305997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_native.h 2025-06-01T21:33:47.3310043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_ops.h 2025-06-01T21:33:47.3313697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc.h 2025-06-01T21:33:47.3317234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cpu_dispatch.h 2025-06-01T21:33:47.3320866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cuda_dispatch.h 2025-06-01T21:33:47.3324602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_native.h 2025-06-01T21:33:47.3328558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_ops.h 2025-06-01T21:33:47.3332612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram.h 2025-06-01T21:33:47.3336553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd.h 2025-06-01T21:33:47.3340668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3344457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_native.h 2025-06-01T21:33:47.3348172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_ops.h 2025-06-01T21:33:47.3352010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_cpu_dispatch.h 2025-06-01T21:33:47.3356191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_native.h 2025-06-01T21:33:47.3359959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_ops.h 2025-06-01T21:33:47.3364081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit.h 2025-06-01T21:33:47.3367928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3371541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_native.h 2025-06-01T21:33:47.3375155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_ops.h 2025-06-01T21:33:47.3380109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm.h 2025-06-01T21:33:47.3383968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_native.h 2025-06-01T21:33:47.3387856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_ops.h 2025-06-01T21:33:47.3391757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack.h 2025-06-01T21:33:47.3395354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3399189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_native.h 2025-06-01T21:33:47.3402861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_ops.h 2025-06-01T21:33:47.3406513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss.h 2025-06-01T21:33:47.3410241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward.h 2025-06-01T21:33:47.3414256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.3418006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h 2025-06-01T21:33:47.3422414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h 2025-06-01T21:33:47.3426648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_native.h 2025-06-01T21:33:47.3430611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_ops.h 2025-06-01T21:33:47.3434231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cpu_dispatch.h 2025-06-01T21:33:47.3438154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cuda_dispatch.h 2025-06-01T21:33:47.3441975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_native.h 2025-06-01T21:33:47.3445755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_ops.h 2025-06-01T21:33:47.3449543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot.h 2025-06-01T21:33:47.3453303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3457145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cpu_dispatch.h 2025-06-01T21:33:47.3461137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cuda_dispatch.h 2025-06-01T21:33:47.3464990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta.h 2025-06-01T21:33:47.3468687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta_dispatch.h 2025-06-01T21:33:47.3472443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_native.h 2025-06-01T21:33:47.3476687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_ops.h 2025-06-01T21:33:47.3480469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0.h 2025-06-01T21:33:47.3484850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3488607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cpu_dispatch.h 2025-06-01T21:33:47.3492269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cuda_dispatch.h 2025-06-01T21:33:47.3495875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta.h 2025-06-01T21:33:47.3499520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta_dispatch.h 2025-06-01T21:33:47.3503302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_native.h 2025-06-01T21:33:47.3507049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_ops.h 2025-06-01T21:33:47.3510568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma.h 2025-06-01T21:33:47.3514304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac.h 2025-06-01T21:33:47.3518260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3521877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cpu_dispatch.h 2025-06-01T21:33:47.3527248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cuda_dispatch.h 2025-06-01T21:33:47.3532445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta.h 2025-06-01T21:33:47.3537669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta_dispatch.h 2025-06-01T21:33:47.3541782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_native.h 2025-06-01T21:33:47.3547007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_ops.h 2025-06-01T21:33:47.3552708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3557789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cpu_dispatch.h 2025-06-01T21:33:47.3562958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cuda_dispatch.h 2025-06-01T21:33:47.3568093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta.h 2025-06-01T21:33:47.3573753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta_dispatch.h 2025-06-01T21:33:47.3579123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_native.h 2025-06-01T21:33:47.3583160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_ops.h 2025-06-01T21:33:47.3588380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col.h 2025-06-01T21:33:47.3593655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cpu_dispatch.h 2025-06-01T21:33:47.3617041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cuda_dispatch.h 2025-06-01T21:33:47.3622182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_native.h 2025-06-01T21:33:47.3627227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_ops.h 2025-06-01T21:33:47.3632844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag.h 2025-06-01T21:33:47.3637854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3641869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_native.h 2025-06-01T21:33:47.3646944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_ops.h 2025-06-01T21:33:47.3651996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index.h 2025-06-01T21:33:47.3656815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add.h 2025-06-01T21:33:47.3662196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3667199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3671791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cpu_dispatch.h 2025-06-01T21:33:47.3676606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cuda_dispatch.h 2025-06-01T21:33:47.3681829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta.h 2025-06-01T21:33:47.3687267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta_dispatch.h 2025-06-01T21:33:47.3692366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_native.h 2025-06-01T21:33:47.3697612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_ops.h 2025-06-01T21:33:47.3702546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3707030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy.h 2025-06-01T21:33:47.3712417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3749378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3755040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cpu_dispatch.h 2025-06-01T21:33:47.3760658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cuda_dispatch.h 2025-06-01T21:33:47.3766067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta.h 2025-06-01T21:33:47.3771910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta_dispatch.h 2025-06-01T21:33:47.3775935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_native.h 2025-06-01T21:33:47.3779860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_ops.h 2025-06-01T21:33:47.3785395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cpu_dispatch.h 2025-06-01T21:33:47.3789533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cuda_dispatch.h 2025-06-01T21:33:47.3793524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill.h 2025-06-01T21:33:47.3799697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.3809537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3812686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cpu_dispatch.h 2025-06-01T21:33:47.3816457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cuda_dispatch.h 2025-06-01T21:33:47.3820397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_meta_dispatch.h 2025-06-01T21:33:47.3824418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_native.h 2025-06-01T21:33:47.3829517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_ops.h 2025-06-01T21:33:47.3833566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta.h 2025-06-01T21:33:47.3837543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta_dispatch.h 2025-06-01T21:33:47.3841356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_native.h 2025-06-01T21:33:47.3845281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_ops.h 2025-06-01T21:33:47.3849016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put.h 2025-06-01T21:33:47.3853486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.3857617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_native.h 2025-06-01T21:33:47.3861758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_ops.h 2025-06-01T21:33:47.3865504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce.h 2025-06-01T21:33:47.3870357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3874388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cpu_dispatch.h 2025-06-01T21:33:47.3878239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cuda_dispatch.h 2025-06-01T21:33:47.3882322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta.h 2025-06-01T21:33:47.3886121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta_dispatch.h 2025-06-01T21:33:47.3889923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_native.h 2025-06-01T21:33:47.3893745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_ops.h 2025-06-01T21:33:47.3897547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select.h 2025-06-01T21:33:47.3901470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward.h 2025-06-01T21:33:47.3905647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3909655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_native.h 2025-06-01T21:33:47.3914012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_ops.h 2025-06-01T21:33:47.3917988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3921886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cpu_dispatch.h 2025-06-01T21:33:47.3926133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cuda_dispatch.h 2025-06-01T21:33:47.3930213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_native.h 2025-06-01T21:33:47.3934077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_ops.h 2025-06-01T21:33:47.3938648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices.h 2025-06-01T21:33:47.3942436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.3946032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy.h 2025-06-01T21:33:47.3956423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.3958380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.3962157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_native.h 2025-06-01T21:33:47.3966389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_ops.h 2025-06-01T21:33:47.3970085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_native.h 2025-06-01T21:33:47.3973742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_ops.h 2025-06-01T21:33:47.3977596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h 2025-06-01T21:33:47.3981571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.3985354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h 2025-06-01T21:33:47.3989286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h 2025-06-01T21:33:47.3992961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner.h 2025-06-01T21:33:47.3996526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4000210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_native.h 2025-06-01T21:33:47.4003995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_ops.h 2025-06-01T21:33:47.4007835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm.h 2025-06-01T21:33:47.4011791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4015742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_native.h 2025-06-01T21:33:47.4019828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_ops.h 2025-06-01T21:33:47.4023791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr.h 2025-06-01T21:33:47.4027646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4031389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_native.h 2025-06-01T21:33:47.4034973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_ops.h 2025-06-01T21:33:47.4038699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse.h 2025-06-01T21:33:47.4042607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4046404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_native.h 2025-06-01T21:33:47.4049974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_ops.h 2025-06-01T21:33:47.4053561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose.h 2025-06-01T21:33:47.4057221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4061032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_native.h 2025-06-01T21:33:47.4064627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_ops.h 2025-06-01T21:33:47.4068752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite.h 2025-06-01T21:33:47.4072360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4076293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_native.h 2025-06-01T21:33:47.4080096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_ops.h 2025-06-01T21:33:47.4083537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin.h 2025-06-01T21:33:47.4087021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf.h 2025-06-01T21:33:47.4090596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4094501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_native.h 2025-06-01T21:33:47.4098102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_ops.h 2025-06-01T21:33:47.4102135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.4106767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cpu_dispatch.h 2025-06-01T21:33:47.4110911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cuda_dispatch.h 2025-06-01T21:33:47.4114764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta.h 2025-06-01T21:33:47.4118700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta_dispatch.h 2025-06-01T21:33:47.4122447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_native.h 2025-06-01T21:33:47.4126081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_ops.h 2025-06-01T21:33:47.4131301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan.h 2025-06-01T21:33:47.4136737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4142070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cpu_dispatch.h 2025-06-01T21:33:47.4147227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cuda_dispatch.h 2025-06-01T21:33:47.4152757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_native.h 2025-06-01T21:33:47.4156630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_ops.h 2025-06-01T21:33:47.4161778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf.h 2025-06-01T21:33:47.4166882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.4172430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cpu_dispatch.h 2025-06-01T21:33:47.4177154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cuda_dispatch.h 2025-06-01T21:33:47.4181222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta.h 2025-06-01T21:33:47.4184999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta_dispatch.h 2025-06-01T21:33:47.4189355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_native.h 2025-06-01T21:33:47.4193104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_ops.h 2025-06-01T21:33:47.4196646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf.h 2025-06-01T21:33:47.4200899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.4204862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cpu_dispatch.h 2025-06-01T21:33:47.4208612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cuda_dispatch.h 2025-06-01T21:33:47.4212921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta.h 2025-06-01T21:33:47.4217162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta_dispatch.h 2025-06-01T21:33:47.4221453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_native.h 2025-06-01T21:33:47.4225354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_ops.h 2025-06-01T21:33:47.4229294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal.h 2025-06-01T21:33:47.4233313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4237303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_native.h 2025-06-01T21:33:47.4241190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_ops.h 2025-06-01T21:33:47.4245515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft.h 2025-06-01T21:33:47.4249272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4253357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_native.h 2025-06-01T21:33:47.4257079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_ops.h 2025-06-01T21:33:47.4261535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced.h 2025-06-01T21:33:47.4265382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4270066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_native.h 2025-06-01T21:33:47.4275815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_ops.h 2025-06-01T21:33:47.4279722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex.h 2025-06-01T21:33:47.4285233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4289709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_native.h 2025-06-01T21:33:47.4293671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_ops.h 2025-06-01T21:33:47.4297565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj.h 2025-06-01T21:33:47.4303303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4307074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_native.h 2025-06-01T21:33:47.4310816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_ops.h 2025-06-01T21:33:47.4314689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed.h 2025-06-01T21:33:47.4318655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4322631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_native.h 2025-06-01T21:33:47.4326391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_ops.h 2025-06-01T21:33:47.4330434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point.h 2025-06-01T21:33:47.4336608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4341717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_native.h 2025-06-01T21:33:47.4345546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_ops.h 2025-06-01T21:33:47.4349682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference.h 2025-06-01T21:33:47.4354161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4357998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_native.h 2025-06-01T21:33:47.4362402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_ops.h 2025-06-01T21:33:47.4366934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf.h 2025-06-01T21:33:47.4371170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4376294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_native.h 2025-06-01T21:33:47.4380102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_ops.h 2025-06-01T21:33:47.4384518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg.h 2025-06-01T21:33:47.4388217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4392359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_native.h 2025-06-01T21:33:47.4396102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_ops.h 2025-06-01T21:33:47.4634621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero.h 2025-06-01T21:33:47.4642057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4648165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_native.h 2025-06-01T21:33:47.4653533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_ops.h 2025-06-01T21:33:47.4658902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned.h 2025-06-01T21:33:47.4664621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4670245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_native.h 2025-06-01T21:33:47.4675507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_ops.h 2025-06-01T21:33:47.4679310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size.h 2025-06-01T21:33:47.4684530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4689660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_native.h 2025-06-01T21:33:47.4694757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_ops.h 2025-06-01T21:33:47.4700101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to.h 2025-06-01T21:33:47.4705348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cpu_dispatch.h 2025-06-01T21:33:47.4710493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cuda_dispatch.h 2025-06-01T21:33:47.4714423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_native.h 2025-06-01T21:33:47.4719595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_ops.h 2025-06-01T21:33:47.4741656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed.h 2025-06-01T21:33:47.4747190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4752644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_native.h 2025-06-01T21:33:47.4758188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_ops.h 2025-06-01T21:33:47.4763870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available.h 2025-06-01T21:33:47.4768235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4771985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_native.h 2025-06-01T21:33:47.4777904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_ops.h 2025-06-01T21:33:47.4782303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item.h 2025-06-01T21:33:47.4786068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4791344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_native.h 2025-06-01T21:33:47.4795268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_ops.h 2025-06-01T21:33:47.4798787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window.h 2025-06-01T21:33:47.4802660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4807095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_native.h 2025-06-01T21:33:47.4810715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_ops.h 2025-06-01T21:33:47.4814353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div.h 2025-06-01T21:33:47.4817984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4823070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_native.h 2025-06-01T21:33:47.4827079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_ops.h 2025-06-01T21:33:47.4831049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron.h 2025-06-01T21:33:47.4835333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4839105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_native.h 2025-06-01T21:33:47.4842766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_ops.h 2025-06-01T21:33:47.4846208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue.h 2025-06-01T21:33:47.4849873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.4854019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4857930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cpu_dispatch.h 2025-06-01T21:33:47.4861744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cuda_dispatch.h 2025-06-01T21:33:47.4865482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_native.h 2025-06-01T21:33:47.4869461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_ops.h 2025-06-01T21:33:47.4873510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss.h 2025-06-01T21:33:47.4878561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4882892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_native.h 2025-06-01T21:33:47.4887345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_ops.h 2025-06-01T21:33:47.4891264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm.h 2025-06-01T21:33:47.4895496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4899397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_native.h 2025-06-01T21:33:47.4903395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_ops.h 2025-06-01T21:33:47.4907156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm.h 2025-06-01T21:33:47.4911666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.4915765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cpu_dispatch.h 2025-06-01T21:33:47.4919590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cuda_dispatch.h 2025-06-01T21:33:47.4923226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta.h 2025-06-01T21:33:47.4926833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta_dispatch.h 2025-06-01T21:33:47.4930544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_native.h 2025-06-01T21:33:47.4934171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_ops.h 2025-06-01T21:33:47.4937728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp.h 2025-06-01T21:33:47.4941747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.4945410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_native.h 2025-06-01T21:33:47.4949422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_ops.h 2025-06-01T21:33:47.4952980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le.h 2025-06-01T21:33:47.4956458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu.h 2025-06-01T21:33:47.4960228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward.h 2025-06-01T21:33:47.4964413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.4968804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h 2025-06-01T21:33:47.4972607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h 2025-06-01T21:33:47.4977026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta.h 2025-06-01T21:33:47.4982758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h 2025-06-01T21:33:47.4988019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_native.h 2025-06-01T21:33:47.4993287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_ops.h 2025-06-01T21:33:47.4999185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5004380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h 2025-06-01T21:33:47.5010274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h 2025-06-01T21:33:47.5015483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta.h 2025-06-01T21:33:47.5036411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta_dispatch.h 2025-06-01T21:33:47.5041560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_native.h 2025-06-01T21:33:47.5047389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_ops.h 2025-06-01T21:33:47.5051925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp.h 2025-06-01T21:33:47.5057143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5062653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cpu_dispatch.h 2025-06-01T21:33:47.5066543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cuda_dispatch.h 2025-06-01T21:33:47.5071656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta.h 2025-06-01T21:33:47.5076760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta_dispatch.h 2025-06-01T21:33:47.5082279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_native.h 2025-06-01T21:33:47.5087117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_ops.h 2025-06-01T21:33:47.5091838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less.h 2025-06-01T21:33:47.5095620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5100676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal.h 2025-06-01T21:33:47.5106146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5111312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_native.h 2025-06-01T21:33:47.5116370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_ops.h 2025-06-01T21:33:47.5121684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_native.h 2025-06-01T21:33:47.5125192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_ops.h 2025-06-01T21:33:47.5130364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5135479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cpu_dispatch.h 2025-06-01T21:33:47.5140867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cuda_dispatch.h 2025-06-01T21:33:47.5145798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta.h 2025-06-01T21:33:47.5149536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta_dispatch.h 2025-06-01T21:33:47.5153373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_native.h 2025-06-01T21:33:47.5157381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_ops.h 2025-06-01T21:33:47.5161033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma.h 2025-06-01T21:33:47.5165506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5169460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cpu_dispatch.h 2025-06-01T21:33:47.5173735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cuda_dispatch.h 2025-06-01T21:33:47.5177552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta.h 2025-06-01T21:33:47.5181537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta_dispatch.h 2025-06-01T21:33:47.5185330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_native.h 2025-06-01T21:33:47.5189103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_ops.h 2025-06-01T21:33:47.5192952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift.h 2025-06-01T21:33:47.5196604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.5200159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh.h 2025-06-01T21:33:47.5204445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.5208189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy.h 2025-06-01T21:33:47.5213235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5216466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.5220928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_native.h 2025-06-01T21:33:47.5239451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_ops.h 2025-06-01T21:33:47.5239701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_native.h 2025-06-01T21:33:47.5239928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_ops.h 2025-06-01T21:33:47.5240162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_native.h 2025-06-01T21:33:47.5242236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_ops.h 2025-06-01T21:33:47.5248666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky.h 2025-06-01T21:33:47.5254375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5259920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex.h 2025-06-01T21:33:47.5265690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5270545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h 2025-06-01T21:33:47.5276358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h 2025-06-01T21:33:47.5281037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta.h 2025-06-01T21:33:47.5285648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h 2025-06-01T21:33:47.5289367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_native.h 2025-06-01T21:33:47.5295007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_ops.h 2025-06-01T21:33:47.5299589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_native.h 2025-06-01T21:33:47.5303152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ops.h 2025-06-01T21:33:47.5306935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond.h 2025-06-01T21:33:47.5311071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5314770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_native.h 2025-06-01T21:33:47.5318625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_ops.h 2025-06-01T21:33:47.5323764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross.h 2025-06-01T21:33:47.5328526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5332303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h 2025-06-01T21:33:47.5336122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h 2025-06-01T21:33:47.5340295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta.h 2025-06-01T21:33:47.5344217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta_dispatch.h 2025-06-01T21:33:47.5348464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_native.h 2025-06-01T21:33:47.5352344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_ops.h 2025-06-01T21:33:47.5356407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det.h 2025-06-01T21:33:47.5360482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5364288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_native.h 2025-06-01T21:33:47.5368091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_ops.h 2025-06-01T21:33:47.5372016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal.h 2025-06-01T21:33:47.5376138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5380027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_native.h 2025-06-01T21:33:47.5385613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_ops.h 2025-06-01T21:33:47.5390766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig.h 2025-06-01T21:33:47.5396755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh.h 2025-06-01T21:33:47.5403303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5409331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_native.h 2025-06-01T21:33:47.5414529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_ops.h 2025-06-01T21:33:47.5419907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals.h 2025-06-01T21:33:47.5424244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh.h 2025-06-01T21:33:47.5430054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5435399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_native.h 2025-06-01T21:33:47.5441137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_ops.h 2025-06-01T21:33:47.5446435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5451904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h 2025-06-01T21:33:47.5457170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h 2025-06-01T21:33:47.5462723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_native.h 2025-06-01T21:33:47.5467909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_ops.h 2025-06-01T21:33:47.5473076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h 2025-06-01T21:33:47.5477181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h 2025-06-01T21:33:47.5482937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_native.h 2025-06-01T21:33:47.5488142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_ops.h 2025-06-01T21:33:47.5493422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product.h 2025-06-01T21:33:47.5499404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h 2025-06-01T21:33:47.5505238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h 2025-06-01T21:33:47.5510532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_native.h 2025-06-01T21:33:47.5515893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_ops.h 2025-06-01T21:33:47.5521085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv.h 2025-06-01T21:33:47.5526628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5531840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex.h 2025-06-01T21:33:47.5537690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5541919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h 2025-06-01T21:33:47.5547122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h 2025-06-01T21:33:47.5552292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta.h 2025-06-01T21:33:47.5557632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h 2025-06-01T21:33:47.5562058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_native.h 2025-06-01T21:33:47.5566230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_ops.h 2025-06-01T21:33:47.5570158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_native.h 2025-06-01T21:33:47.5574084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ops.h 2025-06-01T21:33:47.5578031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor.h 2025-06-01T21:33:47.5582223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5586501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex.h 2025-06-01T21:33:47.5590947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5595222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h 2025-06-01T21:33:47.5599121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h 2025-06-01T21:33:47.5603268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h 2025-06-01T21:33:47.5607147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h 2025-06-01T21:33:47.5610948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h 2025-06-01T21:33:47.5615119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h 2025-06-01T21:33:47.5619267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_native.h 2025-06-01T21:33:47.5623174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ops.h 2025-06-01T21:33:47.5627035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve.h 2025-06-01T21:33:47.5631657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5635754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h 2025-06-01T21:33:47.5639631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h 2025-06-01T21:33:47.5645134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta.h 2025-06-01T21:33:47.5650740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h 2025-06-01T21:33:47.5656611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_native.h 2025-06-01T21:33:47.5661903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_ops.h 2025-06-01T21:33:47.5667070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq.h 2025-06-01T21:33:47.5672795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.5678270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h 2025-06-01T21:33:47.5683471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h 2025-06-01T21:33:47.5687538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_native.h 2025-06-01T21:33:47.5693179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_ops.h 2025-06-01T21:33:47.5698436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu.h 2025-06-01T21:33:47.5703960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5709126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h 2025-06-01T21:33:47.5714656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h 2025-06-01T21:33:47.5719224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor.h 2025-06-01T21:33:47.5724932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5729041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex.h 2025-06-01T21:33:47.5733148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5736990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h 2025-06-01T21:33:47.5742923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h 2025-06-01T21:33:47.5747077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h 2025-06-01T21:33:47.5751078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h 2025-06-01T21:33:47.5754857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_native.h 2025-06-01T21:33:47.5758892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h 2025-06-01T21:33:47.5762611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_native.h 2025-06-01T21:33:47.5766583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ops.h 2025-06-01T21:33:47.5772872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta.h 2025-06-01T21:33:47.5777103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta_dispatch.h 2025-06-01T21:33:47.5781187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_native.h 2025-06-01T21:33:47.5785118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_ops.h 2025-06-01T21:33:47.5789364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve.h 2025-06-01T21:33:47.5793709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.5797492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h 2025-06-01T21:33:47.5801463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h 2025-06-01T21:33:47.5805339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta.h 2025-06-01T21:33:47.5809205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h 2025-06-01T21:33:47.5813208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_native.h 2025-06-01T21:33:47.5817505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_ops.h 2025-06-01T21:33:47.5821629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul.h 2025-06-01T21:33:47.5825662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5834608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_native.h 2025-06-01T21:33:47.5876975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_ops.h 2025-06-01T21:33:47.5882114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp.h 2025-06-01T21:33:47.5887563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.5892942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h 2025-06-01T21:33:47.5898369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h 2025-06-01T21:33:47.5902767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_native.h 2025-06-01T21:33:47.5907923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_ops.h 2025-06-01T21:33:47.5911876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm.h 2025-06-01T21:33:47.5915911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5919834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_native.h 2025-06-01T21:33:47.5925390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_ops.h 2025-06-01T21:33:47.5929788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power.h 2025-06-01T21:33:47.5934200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5938048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_native.h 2025-06-01T21:33:47.5942036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_ops.h 2025-06-01T21:33:47.5946154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank.h 2025-06-01T21:33:47.5950158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5955397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_native.h 2025-06-01T21:33:47.5959607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_ops.h 2025-06-01T21:33:47.5964076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot.h 2025-06-01T21:33:47.5968126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5972300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_native.h 2025-06-01T21:33:47.5976908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_ops.h 2025-06-01T21:33:47.5980970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm.h 2025-06-01T21:33:47.5985041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.5989188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_native.h 2025-06-01T21:33:47.5993094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_ops.h 2025-06-01T21:33:47.5996890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv.h 2025-06-01T21:33:47.6001020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6004980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6009792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6014827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_native.h 2025-06-01T21:33:47.6018975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_ops.h 2025-06-01T21:33:47.6022907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr.h 2025-06-01T21:33:47.6027016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6030712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h 2025-06-01T21:33:47.6034640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h 2025-06-01T21:33:47.6038940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta.h 2025-06-01T21:33:47.6043017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta_dispatch.h 2025-06-01T21:33:47.6046859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_native.h 2025-06-01T21:33:47.6050954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_ops.h 2025-06-01T21:33:47.6054903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet.h 2025-06-01T21:33:47.6059010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6062834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_native.h 2025-06-01T21:33:47.6066681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_ops.h 2025-06-01T21:33:47.6070655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve.h 2025-06-01T21:33:47.6074737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6078914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex.h 2025-06-01T21:33:47.6083025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6086614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_native.h 2025-06-01T21:33:47.6090476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_ops.h 2025-06-01T21:33:47.6094246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_native.h 2025-06-01T21:33:47.6098349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ops.h 2025-06-01T21:33:47.6102324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular.h 2025-06-01T21:33:47.6106281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h 2025-06-01T21:33:47.6111464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h 2025-06-01T21:33:47.6115506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_native.h 2025-06-01T21:33:47.6120898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_ops.h 2025-06-01T21:33:47.6126105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd.h 2025-06-01T21:33:47.6131532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals.h 2025-06-01T21:33:47.6137023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6142363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_native.h 2025-06-01T21:33:47.6148201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_ops.h 2025-06-01T21:33:47.6153546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6159258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_native.h 2025-06-01T21:33:47.6164485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_ops.h 2025-06-01T21:33:47.6170178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv.h 2025-06-01T21:33:47.6174386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6179656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_native.h 2025-06-01T21:33:47.6184909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_ops.h 2025-06-01T21:33:47.6190237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve.h 2025-06-01T21:33:47.6195666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6201069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_native.h 2025-06-01T21:33:47.6206311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_ops.h 2025-06-01T21:33:47.6211440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander.h 2025-06-01T21:33:47.6215692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6221215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_native.h 2025-06-01T21:33:47.6226351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_ops.h 2025-06-01T21:33:47.6231555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot.h 2025-06-01T21:33:47.6242967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6267244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_native.h 2025-06-01T21:33:47.6272923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_ops.h 2025-06-01T21:33:47.6278547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm.h 2025-06-01T21:33:47.6284109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6307204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h 2025-06-01T21:33:47.6311023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h 2025-06-01T21:33:47.6314976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta.h 2025-06-01T21:33:47.6319265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h 2025-06-01T21:33:47.6322885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_native.h 2025-06-01T21:33:47.6326663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_ops.h 2025-06-01T21:33:47.6330837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear.h 2025-06-01T21:33:47.6334454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward.h 2025-06-01T21:33:47.6338533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6343027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_native.h 2025-06-01T21:33:47.6346993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_ops.h 2025-06-01T21:33:47.6350812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6354668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6358411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_native.h 2025-06-01T21:33:47.6362298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_ops.h 2025-06-01T21:33:47.6366280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace.h 2025-06-01T21:33:47.6369814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6373815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cpu_dispatch.h 2025-06-01T21:33:47.6377669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cuda_dispatch.h 2025-06-01T21:33:47.6381480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_meta_dispatch.h 2025-06-01T21:33:47.6385223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_native.h 2025-06-01T21:33:47.6389081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_ops.h 2025-06-01T21:33:47.6392871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log.h 2025-06-01T21:33:47.6396313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10.h 2025-06-01T21:33:47.6400609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6404212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cpu_dispatch.h 2025-06-01T21:33:47.6407921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cuda_dispatch.h 2025-06-01T21:33:47.6411669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta.h 2025-06-01T21:33:47.6415450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta_dispatch.h 2025-06-01T21:33:47.6419367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_native.h 2025-06-01T21:33:47.6423228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_ops.h 2025-06-01T21:33:47.6426931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p.h 2025-06-01T21:33:47.6430563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6434337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cpu_dispatch.h 2025-06-01T21:33:47.6438307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cuda_dispatch.h 2025-06-01T21:33:47.6442013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta.h 2025-06-01T21:33:47.6445793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta_dispatch.h 2025-06-01T21:33:47.6449573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_native.h 2025-06-01T21:33:47.6453497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_ops.h 2025-06-01T21:33:47.6457335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2.h 2025-06-01T21:33:47.6461169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6464847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cpu_dispatch.h 2025-06-01T21:33:47.6468500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cuda_dispatch.h 2025-06-01T21:33:47.6472093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta.h 2025-06-01T21:33:47.6475816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta_dispatch.h 2025-06-01T21:33:47.6479493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_native.h 2025-06-01T21:33:47.6483363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_ops.h 2025-06-01T21:33:47.6487283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp.h 2025-06-01T21:33:47.6490562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h 2025-06-01T21:33:47.6494572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6498163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h 2025-06-01T21:33:47.6501987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h 2025-06-01T21:33:47.6506245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta.h 2025-06-01T21:33:47.6509912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta_dispatch.h 2025-06-01T21:33:47.6514203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_native.h 2025-06-01T21:33:47.6517937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_ops.h 2025-06-01T21:33:47.6521902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6525620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cpu_dispatch.h 2025-06-01T21:33:47.6529409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cuda_dispatch.h 2025-06-01T21:33:47.6533133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta.h 2025-06-01T21:33:47.6536893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta_dispatch.h 2025-06-01T21:33:47.6540948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_native.h 2025-06-01T21:33:47.6545524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_ops.h 2025-06-01T21:33:47.6549911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp.h 2025-06-01T21:33:47.6554704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6557761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6561525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_native.h 2025-06-01T21:33:47.6566211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_ops.h 2025-06-01T21:33:47.6572272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet.h 2025-06-01T21:33:47.6575482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6579796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_native.h 2025-06-01T21:33:47.6584033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_ops.h 2025-06-01T21:33:47.6587488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and.h 2025-06-01T21:33:47.6591884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6595774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cpu_dispatch.h 2025-06-01T21:33:47.6599832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cuda_dispatch.h 2025-06-01T21:33:47.6603780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_native.h 2025-06-01T21:33:47.6607610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_ops.h 2025-06-01T21:33:47.6612327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not.h 2025-06-01T21:33:47.6615452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6619465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cpu_dispatch.h 2025-06-01T21:33:47.6624102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cuda_dispatch.h 2025-06-01T21:33:47.6627399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_native.h 2025-06-01T21:33:47.6631879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_ops.h 2025-06-01T21:33:47.6635944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or.h 2025-06-01T21:33:47.6640504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6643842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cpu_dispatch.h 2025-06-01T21:33:47.6647781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cuda_dispatch.h 2025-06-01T21:33:47.6654073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_native.h 2025-06-01T21:33:47.6660276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_ops.h 2025-06-01T21:33:47.6665817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor.h 2025-06-01T21:33:47.6672054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6677418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cpu_dispatch.h 2025-06-01T21:33:47.6682198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cuda_dispatch.h 2025-06-01T21:33:47.6686642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_native.h 2025-06-01T21:33:47.6691683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_ops.h 2025-06-01T21:33:47.6696725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit.h 2025-06-01T21:33:47.6702201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward.h 2025-06-01T21:33:47.6714104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6714951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cpu_dispatch.h 2025-06-01T21:33:47.6716583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cuda_dispatch.h 2025-06-01T21:33:47.6728006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta.h 2025-06-01T21:33:47.6731093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta_dispatch.h 2025-06-01T21:33:47.6735764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_native.h 2025-06-01T21:33:47.6740384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_ops.h 2025-06-01T21:33:47.6744187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cpu_dispatch.h 2025-06-01T21:33:47.6748171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cuda_dispatch.h 2025-06-01T21:33:47.6752152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_meta_dispatch.h 2025-06-01T21:33:47.6756308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_native.h 2025-06-01T21:33:47.6759957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_ops.h 2025-06-01T21:33:47.6766589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace.h 2025-06-01T21:33:47.6771881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6777718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cpu_dispatch.h 2025-06-01T21:33:47.6782530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cuda_dispatch.h 2025-06-01T21:33:47.6786374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_meta_dispatch.h 2025-06-01T21:33:47.6792225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_native.h 2025-06-01T21:33:47.6796074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_ops.h 2025-06-01T21:33:47.6799904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp.h 2025-06-01T21:33:47.6805578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6810204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6814220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6818455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_native.h 2025-06-01T21:33:47.6822139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_ops.h 2025-06-01T21:33:47.6826033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.6829715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cpu_dispatch.h 2025-06-01T21:33:47.6833990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cuda_dispatch.h 2025-06-01T21:33:47.6839154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta.h 2025-06-01T21:33:47.6842701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta_dispatch.h 2025-06-01T21:33:47.6847052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_native.h 2025-06-01T21:33:47.6850685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal.h 2025-06-01T21:33:47.6854595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6858908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cpu_dispatch.h 2025-06-01T21:33:47.6862787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cuda_dispatch.h 2025-06-01T21:33:47.6866851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_meta_dispatch.h 2025-06-01T21:33:47.6870665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_native.h 2025-06-01T21:33:47.6874743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_ops.h 2025-06-01T21:33:47.6878552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_ops.h 2025-06-01T21:33:47.6882234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid.h 2025-06-01T21:33:47.6885722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward.h 2025-06-01T21:33:47.6889544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h 2025-06-01T21:33:47.6895015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h 2025-06-01T21:33:47.6899669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_native.h 2025-06-01T21:33:47.6903723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_ops.h 2025-06-01T21:33:47.6907687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6911439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward.h 2025-06-01T21:33:47.6915754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h 2025-06-01T21:33:47.6920121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h 2025-06-01T21:33:47.6924319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_native.h 2025-06-01T21:33:47.6928280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_ops.h 2025-06-01T21:33:47.6932135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_native.h 2025-06-01T21:33:47.6935996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_ops.h 2025-06-01T21:33:47.6939910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax.h 2025-06-01T21:33:47.6943791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6947670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.6951794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_native.h 2025-06-01T21:33:47.6955561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_ops.h 2025-06-01T21:33:47.6959435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift.h 2025-06-01T21:33:47.6963048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.6966777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cpu_dispatch.h 2025-06-01T21:33:47.6970472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cuda_dispatch.h 2025-06-01T21:33:47.6975488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_meta_dispatch.h 2025-06-01T21:33:47.6980876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_native.h 2025-06-01T21:33:47.6984351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_ops.h 2025-06-01T21:33:47.6988195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm.h 2025-06-01T21:33:47.6994337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell.h 2025-06-01T21:33:47.6999964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7005147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_native.h 2025-06-01T21:33:47.7009015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_ops.h 2025-06-01T21:33:47.7014370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7019812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward.h 2025-06-01T21:33:47.7025100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7030518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_native.h 2025-06-01T21:33:47.7035481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_ops.h 2025-06-01T21:33:47.7040703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_native.h 2025-06-01T21:33:47.7046612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_ops.h 2025-06-01T21:33:47.7050300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt.h 2025-06-01T21:33:47.7056437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7061620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cpu_dispatch.h 2025-06-01T21:33:47.7066684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cuda_dispatch.h 2025-06-01T21:33:47.7072132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta.h 2025-06-01T21:33:47.7077224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta_dispatch.h 2025-06-01T21:33:47.7082282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_native.h 2025-06-01T21:33:47.7088902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_ops.h 2025-06-01T21:33:47.7095031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve.h 2025-06-01T21:33:47.7100559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7106160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_native.h 2025-06-01T21:33:47.7111522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_ops.h 2025-06-01T21:33:47.7115436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack.h 2025-06-01T21:33:47.7120736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7125829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h 2025-06-01T21:33:47.7131027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h 2025-06-01T21:33:47.7136467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta.h 2025-06-01T21:33:47.7141810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta_dispatch.h 2025-06-01T21:33:47.7145889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_native.h 2025-06-01T21:33:47.7151032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_ops.h 2025-06-01T21:33:47.7156236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss.h 2025-06-01T21:33:47.7162163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7167338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_native.h 2025-06-01T21:33:47.7172711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_ops.h 2025-06-01T21:33:47.7177806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill.h 2025-06-01T21:33:47.7183154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7188705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cpu_dispatch.h 2025-06-01T21:33:47.7195071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cuda_dispatch.h 2025-06-01T21:33:47.7199168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_meta_dispatch.h 2025-06-01T21:33:47.7204354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_native.h 2025-06-01T21:33:47.7210706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_ops.h 2025-06-01T21:33:47.7216117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter.h 2025-06-01T21:33:47.7221271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward.h 2025-06-01T21:33:47.7226682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7231914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_native.h 2025-06-01T21:33:47.7238159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_ops.h 2025-06-01T21:33:47.7254214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7260133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h 2025-06-01T21:33:47.7265891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h 2025-06-01T21:33:47.7271333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_meta_dispatch.h 2025-06-01T21:33:47.7275399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_native.h 2025-06-01T21:33:47.7281021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_ops.h 2025-06-01T21:33:47.7284979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select.h 2025-06-01T21:33:47.7290893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward.h 2025-06-01T21:33:47.7295212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7299193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_native.h 2025-06-01T21:33:47.7303126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_ops.h 2025-06-01T21:33:47.7308763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cpu_dispatch.h 2025-06-01T21:33:47.7312964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cuda_dispatch.h 2025-06-01T21:33:47.7316935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_native.h 2025-06-01T21:33:47.7320934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_ops.h 2025-06-01T21:33:47.7324640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul.h 2025-06-01T21:33:47.7328107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward.h 2025-06-01T21:33:47.7332464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7337616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_native.h 2025-06-01T21:33:47.7341602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_ops.h 2025-06-01T21:33:47.7345970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7349988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_native.h 2025-06-01T21:33:47.7353817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_ops.h 2025-06-01T21:33:47.7357964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp.h 2025-06-01T21:33:47.7362344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward.h 2025-06-01T21:33:47.7366455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7370128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_native.h 2025-06-01T21:33:47.7373919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_ops.h 2025-06-01T21:33:47.7378625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7382304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_native.h 2025-06-01T21:33:47.7386068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_ops.h 2025-06-01T21:33:47.7389845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H.h 2025-06-01T21:33:47.7393465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7398886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_native.h 2025-06-01T21:33:47.7402856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_ops.h 2025-06-01T21:33:47.7406850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power.h 2025-06-01T21:33:47.7410860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7414799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_native.h 2025-06-01T21:33:47.7418685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_ops.h 2025-06-01T21:33:47.7422559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max.h 2025-06-01T21:33:47.7426193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum.h 2025-06-01T21:33:47.7430321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7434008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cpu_dispatch.h 2025-06-01T21:33:47.7438012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cuda_dispatch.h 2025-06-01T21:33:47.7442353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta.h 2025-06-01T21:33:47.7460770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta_dispatch.h 2025-06-01T21:33:47.7464644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_native.h 2025-06-01T21:33:47.7468437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_ops.h 2025-06-01T21:33:47.7472444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7476276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7480374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cpu_dispatch.h 2025-06-01T21:33:47.7484055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cuda_dispatch.h 2025-06-01T21:33:47.7487665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta.h 2025-06-01T21:33:47.7491147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta_dispatch.h 2025-06-01T21:33:47.7494772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_native.h 2025-06-01T21:33:47.7500068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_ops.h 2025-06-01T21:33:47.7503925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d.h 2025-06-01T21:33:47.7508253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7512030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_native.h 2025-06-01T21:33:47.7516138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_ops.h 2025-06-01T21:33:47.7519839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices.h 2025-06-01T21:33:47.7523817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7527579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_native.h 2025-06-01T21:33:47.7531705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_ops.h 2025-06-01T21:33:47.7535557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d.h 2025-06-01T21:33:47.7539485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward.h 2025-06-01T21:33:47.7543524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7547280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_native.h 2025-06-01T21:33:47.7551103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_ops.h 2025-06-01T21:33:47.7555185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7558973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_native.h 2025-06-01T21:33:47.7563410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_ops.h 2025-06-01T21:33:47.7567348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices.h 2025-06-01T21:33:47.7571362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward.h 2025-06-01T21:33:47.7575502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7579435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h 2025-06-01T21:33:47.7583643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h 2025-06-01T21:33:47.7587744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h 2025-06-01T21:33:47.7591666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h 2025-06-01T21:33:47.7595921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h 2025-06-01T21:33:47.7601447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h 2025-06-01T21:33:47.7607030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7612510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h 2025-06-01T21:33:47.7617874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h 2025-06-01T21:33:47.7623969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta.h 2025-06-01T21:33:47.7629356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h 2025-06-01T21:33:47.7633750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_native.h 2025-06-01T21:33:47.7639214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_ops.h 2025-06-01T21:33:47.7644310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d.h 2025-06-01T21:33:47.7649708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7655268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_native.h 2025-06-01T21:33:47.7660693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_ops.h 2025-06-01T21:33:47.7665929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices.h 2025-06-01T21:33:47.7671227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward.h 2025-06-01T21:33:47.7677388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h 2025-06-01T21:33:47.7682980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h 2025-06-01T21:33:47.7687822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h 2025-06-01T21:33:47.7692573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h 2025-06-01T21:33:47.7697885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h 2025-06-01T21:33:47.7703399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h 2025-06-01T21:33:47.7708738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_native.h 2025-06-01T21:33:47.7713941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_ops.h 2025-06-01T21:33:47.7719060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d.h 2025-06-01T21:33:47.7724098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h 2025-06-01T21:33:47.7728033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h 2025-06-01T21:33:47.7733264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_native.h 2025-06-01T21:33:47.7739641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_ops.h 2025-06-01T21:33:47.7745200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d.h 2025-06-01T21:33:47.7772366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h 2025-06-01T21:33:47.7778069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h 2025-06-01T21:33:47.7783791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_native.h 2025-06-01T21:33:47.7789861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_ops.h 2025-06-01T21:33:47.7795413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean.h 2025-06-01T21:33:47.7799324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7803366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7808992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7812798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cpu_dispatch.h 2025-06-01T21:33:47.7816584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cuda_dispatch.h 2025-06-01T21:33:47.7822207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta.h 2025-06-01T21:33:47.7826126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta_dispatch.h 2025-06-01T21:33:47.7830272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_native.h 2025-06-01T21:33:47.7834079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_ops.h 2025-06-01T21:33:47.7837718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median.h 2025-06-01T21:33:47.7841415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7845519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7849202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cpu_dispatch.h 2025-06-01T21:33:47.7854719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cuda_dispatch.h 2025-06-01T21:33:47.7858649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_native.h 2025-06-01T21:33:47.7862499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_ops.h 2025-06-01T21:33:47.7867295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid.h 2025-06-01T21:33:47.7871030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7874810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_native.h 2025-06-01T21:33:47.7878448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_ops.h 2025-06-01T21:33:47.7882113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH.h 2025-06-01T21:33:47.7885787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7889393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_native.h 2025-06-01T21:33:47.7893147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_ops.h 2025-06-01T21:33:47.7898459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min.h 2025-06-01T21:33:47.7902175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum.h 2025-06-01T21:33:47.7905888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7910874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cpu_dispatch.h 2025-06-01T21:33:47.7914741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cuda_dispatch.h 2025-06-01T21:33:47.7918546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta.h 2025-06-01T21:33:47.7922343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta_dispatch.h 2025-06-01T21:33:47.7926135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_native.h 2025-06-01T21:33:47.7930147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_ops.h 2025-06-01T21:33:47.7934160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.7937995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.7941777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cpu_dispatch.h 2025-06-01T21:33:47.7946189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cuda_dispatch.h 2025-06-01T21:33:47.7950065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta.h 2025-06-01T21:33:47.7953509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta_dispatch.h 2025-06-01T21:33:47.7957245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_native.h 2025-06-01T21:33:47.7960862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_ops.h 2025-06-01T21:33:47.7964264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm.h 2025-06-01T21:33:47.7968039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward.h 2025-06-01T21:33:47.7972619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7976400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h 2025-06-01T21:33:47.7980356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_native.h 2025-06-01T21:33:47.7984437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h 2025-06-01T21:33:47.7988532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.7992353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h 2025-06-01T21:33:47.7996256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_native.h 2025-06-01T21:33:47.8000717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_ops.h 2025-06-01T21:33:47.8004684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution.h 2025-06-01T21:33:47.8008513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu.h 2025-06-01T21:33:47.8013992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h 2025-06-01T21:33:47.8019416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_native.h 2025-06-01T21:33:47.8024761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h 2025-06-01T21:33:47.8030188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8035399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h 2025-06-01T21:33:47.8040848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_native.h 2025-06-01T21:33:47.8046143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_ops.h 2025-06-01T21:33:47.8052593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu.h 2025-06-01T21:33:47.8059371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h 2025-06-01T21:33:47.8064702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_native.h 2025-06-01T21:33:47.8069948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_ops.h 2025-06-01T21:33:47.8074025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose.h 2025-06-01T21:33:47.8080111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8085938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h 2025-06-01T21:33:47.8091233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_native.h 2025-06-01T21:33:47.8096534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_ops.h 2025-06-01T21:33:47.8101938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution.h 2025-06-01T21:33:47.8107703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8113093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h 2025-06-01T21:33:47.8118413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_native.h 2025-06-01T21:33:47.8123795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h 2025-06-01T21:33:47.8129005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn.h 2025-06-01T21:33:47.8134611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward.h 2025-06-01T21:33:47.8139892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8144337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h 2025-06-01T21:33:47.8149596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_native.h 2025-06-01T21:33:47.8154844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_ops.h 2025-06-01T21:33:47.8160265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8165555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h 2025-06-01T21:33:47.8171300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_native.h 2025-06-01T21:33:47.8176334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_ops.h 2025-06-01T21:33:47.8181524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish.h 2025-06-01T21:33:47.8185566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward.h 2025-06-01T21:33:47.8191346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8196964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cpu_dispatch.h 2025-06-01T21:33:47.8202191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cuda_dispatch.h 2025-06-01T21:33:47.8207232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_native.h 2025-06-01T21:33:47.8212918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_ops.h 2025-06-01T21:33:47.8218317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.8223362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cpu_dispatch.h 2025-06-01T21:33:47.8227198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cuda_dispatch.h 2025-06-01T21:33:47.8232272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta.h 2025-06-01T21:33:47.8237391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta_dispatch.h 2025-06-01T21:33:47.8242545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_native.h 2025-06-01T21:33:47.8263150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_ops.h 2025-06-01T21:33:47.8268483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h 2025-06-01T21:33:47.8272441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h 2025-06-01T21:33:47.8278019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8283517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h 2025-06-01T21:33:47.8289068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h 2025-06-01T21:33:47.8293605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h 2025-06-01T21:33:47.8299318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h 2025-06-01T21:33:47.8303379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution.h 2025-06-01T21:33:47.8307807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8312012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_native.h 2025-06-01T21:33:47.8317738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_ops.h 2025-06-01T21:33:47.8321816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear.h 2025-06-01T21:33:47.8325655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward.h 2025-06-01T21:33:47.8330187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8334165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input.h 2025-06-01T21:33:47.8338437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8342346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h 2025-06-01T21:33:47.8347833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h 2025-06-01T21:33:47.8351659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_native.h 2025-06-01T21:33:47.8355455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_ops.h 2025-06-01T21:33:47.8359232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights.h 2025-06-01T21:33:47.8363636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8367529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h 2025-06-01T21:33:47.8371625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h 2025-06-01T21:33:47.8375598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8379554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_native.h 2025-06-01T21:33:47.8383430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_ops.h 2025-06-01T21:33:47.8387234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d.h 2025-06-01T21:33:47.8391118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h 2025-06-01T21:33:47.8395576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8399411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h 2025-06-01T21:33:47.8404843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h 2025-06-01T21:33:47.8410195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8415336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_native.h 2025-06-01T21:33:47.8420733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h 2025-06-01T21:33:47.8426305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d.h 2025-06-01T21:33:47.8431523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h 2025-06-01T21:33:47.8437513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8442808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h 2025-06-01T21:33:47.8447077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h 2025-06-01T21:33:47.8452509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8458040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_native.h 2025-06-01T21:33:47.8463289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h 2025-06-01T21:33:47.8468594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h 2025-06-01T21:33:47.8474030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8479242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h 2025-06-01T21:33:47.8484530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h 2025-06-01T21:33:47.8490101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h 2025-06-01T21:33:47.8496024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8501623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h 2025-06-01T21:33:47.8505652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h 2025-06-01T21:33:47.8510914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer.h 2025-06-01T21:33:47.8516252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h 2025-06-01T21:33:47.8522366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8527832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h 2025-06-01T21:33:47.8533329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h 2025-06-01T21:33:47.8538555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h 2025-06-01T21:33:47.8543861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8549265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h 2025-06-01T21:33:47.8555013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_native.h 2025-06-01T21:33:47.8560624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h 2025-06-01T21:33:47.8564523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm.h 2025-06-01T21:33:47.8569645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.8574705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cpu_dispatch.h 2025-06-01T21:33:47.8579885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cuda_dispatch.h 2025-06-01T21:33:47.8584942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta.h 2025-06-01T21:33:47.8589963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta_dispatch.h 2025-06-01T21:33:47.8593955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_native.h 2025-06-01T21:33:47.8598896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_ops.h 2025-06-01T21:33:47.8603648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode.h 2025-06-01T21:33:47.8608682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8613691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8617528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cpu_dispatch.h 2025-06-01T21:33:47.8622734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cuda_dispatch.h 2025-06-01T21:33:47.8628023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_native.h 2025-06-01T21:33:47.8633014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_ops.h 2025-06-01T21:33:47.8637798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis.h 2025-06-01T21:33:47.8641532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8646751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_native.h 2025-06-01T21:33:47.8651845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_ops.h 2025-06-01T21:33:47.8656976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim.h 2025-06-01T21:33:47.8663360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8668712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_native.h 2025-06-01T21:33:47.8673951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_ops.h 2025-06-01T21:33:47.8678946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward.h 2025-06-01T21:33:47.8682972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8688127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_native.h 2025-06-01T21:33:47.8693447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_ops.h 2025-06-01T21:33:47.8700118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward.h 2025-06-01T21:33:47.8705547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8729248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h 2025-06-01T21:33:47.8734870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h 2025-06-01T21:33:47.8740414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss.h 2025-06-01T21:33:47.8745347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward.h 2025-06-01T21:33:47.8751164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h 2025-06-01T21:33:47.8755294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h 2025-06-01T21:33:47.8760622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_native.h 2025-06-01T21:33:47.8765454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_ops.h 2025-06-01T21:33:47.8770793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.8774439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cpu_dispatch.h 2025-06-01T21:33:47.8778601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cuda_dispatch.h 2025-06-01T21:33:47.8782513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta.h 2025-06-01T21:33:47.8786431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta_dispatch.h 2025-06-01T21:33:47.8790384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_native.h 2025-06-01T21:33:47.8794230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_ops.h 2025-06-01T21:33:47.8797953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort.h 2025-06-01T21:33:47.8801513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8805103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_native.h 2025-06-01T21:33:47.8809071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_ops.h 2025-06-01T21:33:47.8812841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT.h 2025-06-01T21:33:47.8816369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8820084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_native.h 2025-06-01T21:33:47.8823699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_ops.h 2025-06-01T21:33:47.8827109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul.h 2025-06-01T21:33:47.8830641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss.h 2025-06-01T21:33:47.8835185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward.h 2025-06-01T21:33:47.8838954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h 2025-06-01T21:33:47.8843048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h 2025-06-01T21:33:47.8846620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h 2025-06-01T21:33:47.8850358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h 2025-06-01T21:33:47.8854266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8859097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward.h 2025-06-01T21:33:47.8864694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h 2025-06-01T21:33:47.8868675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h 2025-06-01T21:33:47.8872615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h 2025-06-01T21:33:47.8876443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h 2025-06-01T21:33:47.8880804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_native.h 2025-06-01T21:33:47.8884553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_ops.h 2025-06-01T21:33:47.8888574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial.h 2025-06-01T21:33:47.8892284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cpu_dispatch.h 2025-06-01T21:33:47.8896079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cuda_dispatch.h 2025-06-01T21:33:47.8899973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_native.h 2025-06-01T21:33:47.8904646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_ops.h 2025-06-01T21:33:47.8908665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply.h 2025-06-01T21:33:47.8912454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.8916226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_native.h 2025-06-01T21:33:47.8919823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_ops.h 2025-06-01T21:33:47.8923520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss.h 2025-06-01T21:33:47.8927195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward.h 2025-06-01T21:33:47.8931073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h 2025-06-01T21:33:47.8935404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h 2025-06-01T21:33:47.8939435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_native.h 2025-06-01T21:33:47.8943484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_ops.h 2025-06-01T21:33:47.8947817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h 2025-06-01T21:33:47.8951597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h 2025-06-01T21:33:47.8955351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_native.h 2025-06-01T21:33:47.8959394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_ops.h 2025-06-01T21:33:47.8963383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.8967339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.8971131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cpu_dispatch.h 2025-06-01T21:33:47.8974637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cuda_dispatch.h 2025-06-01T21:33:47.8978280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta.h 2025-06-01T21:33:47.8981858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta_dispatch.h 2025-06-01T21:33:47.8985503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_native.h 2025-06-01T21:33:47.9005851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_ops.h 2025-06-01T21:33:47.9009210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv.h 2025-06-01T21:33:47.9012815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma.h 2025-06-01T21:33:47.9016369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.9020109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h 2025-06-01T21:33:47.9023873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h 2025-06-01T21:33:47.9027548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_native.h 2025-06-01T21:33:47.9031428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_ops.h 2025-06-01T21:33:47.9035425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.9039403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_native.h 2025-06-01T21:33:47.9043302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_ops.h 2025-06-01T21:33:47.9046689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean.h 2025-06-01T21:33:47.9050259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.9053827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_native.h 2025-06-01T21:33:47.9058091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_ops.h 2025-06-01T21:33:47.9063296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian.h 2025-06-01T21:33:47.9068486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.9073804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.9077603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cpu_dispatch.h 2025-06-01T21:33:47.9082756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cuda_dispatch.h 2025-06-01T21:33:47.9088218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_native.h 2025-06-01T21:33:47.9093323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_ops.h 2025-06-01T21:33:47.9098314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile.h 2025-06-01T21:33:47.9103466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.9107489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_native.h 2025-06-01T21:33:47.9112658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_ops.h 2025-06-01T21:33:47.9117608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum.h 2025-06-01T21:33:47.9122378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cpu_dispatch.h 2025-06-01T21:33:47.9127392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cuda_dispatch.h 2025-06-01T21:33:47.9132446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_native.h 2025-06-01T21:33:47.9136663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_ops.h 2025-06-01T21:33:47.9142884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num.h 2025-06-01T21:33:47.9147496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.9152727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h 2025-06-01T21:33:47.9157859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h 2025-06-01T21:33:47.9162925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_native.h 2025-06-01T21:33:47.9168451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_ops.h 2025-06-01T21:33:47.9173647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow.h 2025-06-01T21:33:47.9177553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.9182796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy.h 2025-06-01T21:33:47.9188181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:47.9193219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h 2025-06-01T21:33:47.9198857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_native.h 2025-06-01T21:33:47.9204156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_ops.h 2025-06-01T21:33:47.9209589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_native.h 2025-06-01T21:33:47.9213480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_ops.h 2025-06-01T21:33:47.9218955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm.h 2025-06-01T21:33:47.9224242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward.h 2025-06-01T21:33:47.9229632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:47.9234831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h 2025-06-01T21:33:47.9239913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h 2025-06-01T21:33:47.9245084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_native.h 2025-06-01T21:33:47.9265898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_ops.h 2025-06-01T21:33:47.9270024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h 2025-06-01T21:33:47.9275659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h 2025-06-01T21:33:47.9281249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_native.h 2025-06-01T21:33:47.9286862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_ops.h 2025-06-01T21:33:47.9291881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle.h 2025-06-01T21:33:47.9295963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:47.9301833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h 2025-06-01T21:33:47.9305965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_native.h 2025-06-01T21:33:47.9309906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_ops.h 2025-06-01T21:33:47.9313889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout.h 2025-06-01T21:33:47.9318953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward.h 2025-06-01T21:33:48.0477239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0482372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h 2025-06-01T21:33:48.0486436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h 2025-06-01T21:33:48.0492320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_native.h 2025-06-01T21:33:48.0497574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_ops.h 2025-06-01T21:33:48.0503164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0508436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cpu_dispatch.h 2025-06-01T21:33:48.0513908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cuda_dispatch.h 2025-06-01T21:33:48.0519199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_native.h 2025-06-01T21:33:48.0524456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_ops.h 2025-06-01T21:33:48.0530137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm.h 2025-06-01T21:33:48.0535473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward.h 2025-06-01T21:33:48.0539972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0545336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h 2025-06-01T21:33:48.0555403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h 2025-06-01T21:33:48.0560771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_native.h 2025-06-01T21:33:48.0566027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_ops.h 2025-06-01T21:33:48.0571353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0576484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h 2025-06-01T21:33:48.0582353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h 2025-06-01T21:33:48.0586420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_native.h 2025-06-01T21:33:48.0591763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_ops.h 2025-06-01T21:33:48.0597161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm.h 2025-06-01T21:33:48.0602310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward.h 2025-06-01T21:33:48.0607973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0613164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h 2025-06-01T21:33:48.0618476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h 2025-06-01T21:33:48.0624261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_native.h 2025-06-01T21:33:48.0628281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_ops.h 2025-06-01T21:33:48.0633879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0638837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h 2025-06-01T21:33:48.0644243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h 2025-06-01T21:33:48.0649597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_native.h 2025-06-01T21:33:48.0654677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_ops.h 2025-06-01T21:33:48.0660066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm.h 2025-06-01T21:33:48.0665417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0669361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_native.h 2025-06-01T21:33:48.0674626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_ops.h 2025-06-01T21:33:48.0680003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne.h 2025-06-01T21:33:48.0684831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg.h 2025-06-01T21:33:48.0689883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative.h 2025-06-01T21:33:48.0694785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.0698638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_native.h 2025-06-01T21:33:48.0703656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_ops.h 2025-06-01T21:33:48.0708947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.0713902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cpu_dispatch.h 2025-06-01T21:33:48.0719081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cuda_dispatch.h 2025-06-01T21:33:48.0724030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta.h 2025-06-01T21:33:48.0727676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta_dispatch.h 2025-06-01T21:33:48.0733150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_native.h 2025-06-01T21:33:48.0738416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_ops.h 2025-06-01T21:33:48.0743341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor.h 2025-06-01T21:33:48.0748506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.0753730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_native.h 2025-06-01T21:33:48.0761943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_ops.h 2025-06-01T21:33:48.0765815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty.h 2025-06-01T21:33:48.0771301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0776687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_native.h 2025-06-01T21:33:48.0782449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_ops.h 2025-06-01T21:33:48.0788581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided.h 2025-06-01T21:33:48.0792826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.0798354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0802256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_native.h 2025-06-01T21:33:48.0806079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_ops.h 2025-06-01T21:33:48.0809811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full.h 2025-06-01T21:33:48.0817484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0859396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_native.h 2025-06-01T21:33:48.0864745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_ops.h 2025-06-01T21:33:48.0868967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones.h 2025-06-01T21:33:48.0874128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0879609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_native.h 2025-06-01T21:33:48.0884990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_ops.h 2025-06-01T21:33:48.0888745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros.h 2025-06-01T21:33:48.0892563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.0898426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_native.h 2025-06-01T21:33:48.0902153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_ops.h 2025-06-01T21:33:48.0905868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter.h 2025-06-01T21:33:48.0911383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.0916331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cpu_dispatch.h 2025-06-01T21:33:48.0920343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cuda_dispatch.h 2025-06-01T21:33:48.0924449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta.h 2025-06-01T21:33:48.0928928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta_dispatch.h 2025-06-01T21:33:48.0932734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_native.h 2025-06-01T21:33:48.0937775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_ops.h 2025-06-01T21:33:48.0942367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.0946002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cpu_dispatch.h 2025-06-01T21:33:48.0949745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cuda_dispatch.h 2025-06-01T21:33:48.0953407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta.h 2025-06-01T21:33:48.0956835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta_dispatch.h 2025-06-01T21:33:48.0960632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_native.h 2025-06-01T21:33:48.0964434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_ops.h 2025-06-01T21:33:48.0967847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss.h 2025-06-01T21:33:48.0971277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d.h 2025-06-01T21:33:48.0975223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward.h 2025-06-01T21:33:48.0980004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h 2025-06-01T21:33:48.0983869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h 2025-06-01T21:33:48.0987619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_native.h 2025-06-01T21:33:48.0991738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_ops.h 2025-06-01T21:33:48.0995682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.0999580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward.h 2025-06-01T21:33:48.1003471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h 2025-06-01T21:33:48.1007474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h 2025-06-01T21:33:48.1011145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_native.h 2025-06-01T21:33:48.1015123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_ops.h 2025-06-01T21:33:48.1019508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_native.h 2025-06-01T21:33:48.1023462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_ops.h 2025-06-01T21:33:48.1027230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward.h 2025-06-01T21:33:48.1031247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1035611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h 2025-06-01T21:33:48.1039479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h 2025-06-01T21:33:48.1043459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta.h 2025-06-01T21:33:48.1047321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h 2025-06-01T21:33:48.1051141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_native.h 2025-06-01T21:33:48.1054898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_ops.h 2025-06-01T21:33:48.1058879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1062690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward.h 2025-06-01T21:33:48.1066764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1070802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h 2025-06-01T21:33:48.1074745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h 2025-06-01T21:33:48.1078583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta.h 2025-06-01T21:33:48.1082447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h 2025-06-01T21:33:48.1086690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_native.h 2025-06-01T21:33:48.1090645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_ops.h 2025-06-01T21:33:48.1094733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_native.h 2025-06-01T21:33:48.1098817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd.h 2025-06-01T21:33:48.1102801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1106620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_native.h 2025-06-01T21:33:48.1125522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_ops.h 2025-06-01T21:33:48.1129473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_ops.h 2025-06-01T21:33:48.1134814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero.h 2025-06-01T21:33:48.1138653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cpu_dispatch.h 2025-06-01T21:33:48.1144304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cuda_dispatch.h 2025-06-01T21:33:48.1149472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_native.h 2025-06-01T21:33:48.1154536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy.h 2025-06-01T21:33:48.1159792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1165594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_native.h 2025-06-01T21:33:48.1170720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_ops.h 2025-06-01T21:33:48.1175658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_ops.h 2025-06-01T21:33:48.1180543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static.h 2025-06-01T21:33:48.1185841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h 2025-06-01T21:33:48.1191027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h 2025-06-01T21:33:48.1196214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_native.h 2025-06-01T21:33:48.1201332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_ops.h 2025-06-01T21:33:48.1206571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm.h 2025-06-01T21:33:48.1210850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal.h 2025-06-01T21:33:48.1214962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1220627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cpu_dispatch.h 2025-06-01T21:33:48.1225838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cuda_dispatch.h 2025-06-01T21:33:48.1230927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_meta_dispatch.h 2025-06-01T21:33:48.1236028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_native.h 2025-06-01T21:33:48.1241159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_ops.h 2025-06-01T21:33:48.1245489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1250535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1255829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1261048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cpu_dispatch.h 2025-06-01T21:33:48.1281227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cuda_dispatch.h 2025-06-01T21:33:48.1297662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim.h 2025-06-01T21:33:48.1303171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1308508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_native.h 2025-06-01T21:33:48.1312475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_ops.h 2025-06-01T21:33:48.1318110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta.h 2025-06-01T21:33:48.1323607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta_dispatch.h 2025-06-01T21:33:48.1327356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_native.h 2025-06-01T21:33:48.1333076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_ops.h 2025-06-01T21:33:48.1336603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal.h 2025-06-01T21:33:48.1340634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1344352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_native.h 2025-06-01T21:33:48.1350088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_ops.h 2025-06-01T21:33:48.1353976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm.h 2025-06-01T21:33:48.1357835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1361727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_native.h 2025-06-01T21:33:48.1365322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_ops.h 2025-06-01T21:33:48.1369207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T.h 2025-06-01T21:33:48.1373073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1376775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_native.h 2025-06-01T21:33:48.1382034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_ops.h 2025-06-01T21:33:48.1386856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones.h 2025-06-01T21:33:48.1390411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1394014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like.h 2025-06-01T21:33:48.1398760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1402292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_native.h 2025-06-01T21:33:48.1406048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_ops.h 2025-06-01T21:33:48.1409918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_native.h 2025-06-01T21:33:48.1413721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_ops.h 2025-06-01T21:33:48.1417136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot.h 2025-06-01T21:33:48.1422065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1425753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_native.h 2025-06-01T21:33:48.1429491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_ops.h 2025-06-01T21:33:48.1433243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or.h 2025-06-01T21:33:48.1436572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr.h 2025-06-01T21:33:48.1440161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1444002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_native.h 2025-06-01T21:33:48.1448382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_ops.h 2025-06-01T21:33:48.1452638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr.h 2025-06-01T21:33:48.1456418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cpu_dispatch.h 2025-06-01T21:33:48.1460221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cuda_dispatch.h 2025-06-01T21:33:48.1464115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_native.h 2025-06-01T21:33:48.1467926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_ops.h 2025-06-01T21:33:48.1471843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1475627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_native.h 2025-06-01T21:33:48.1479445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_ops.h 2025-06-01T21:33:48.1482858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer.h 2025-06-01T21:33:48.1486503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1490495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_native.h 2025-06-01T21:33:48.1494205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_ops.h 2025-06-01T21:33:48.1498437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr.h 2025-06-01T21:33:48.1502226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1505736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_native.h 2025-06-01T21:33:48.1509620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_ops.h 2025-06-01T21:33:48.1513397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad.h 2025-06-01T21:33:48.1516947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1520521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_native.h 2025-06-01T21:33:48.1524264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_ops.h 2025-06-01T21:33:48.1527827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence.h 2025-06-01T21:33:48.1531811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1535666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_native.h 2025-06-01T21:33:48.1539495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_ops.h 2025-06-01T21:33:48.1543179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance.h 2025-06-01T21:33:48.1546986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1550830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_native.h 2025-06-01T21:33:48.1554596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_ops.h 2025-06-01T21:33:48.1558702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist.h 2025-06-01T21:33:48.1562348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1566252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_native.h 2025-06-01T21:33:48.1569894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_ops.h 2025-06-01T21:33:48.1574120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute.h 2025-06-01T21:33:48.1579316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1584150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy.h 2025-06-01T21:33:48.1589401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1594758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1600518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_native.h 2025-06-01T21:33:48.1604570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_ops.h 2025-06-01T21:33:48.1609665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_native.h 2025-06-01T21:33:48.1614766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_ops.h 2025-06-01T21:33:48.1619970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse.h 2025-06-01T21:33:48.1624897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1628412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_native.h 2025-06-01T21:33:48.1633537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_ops.h 2025-06-01T21:33:48.1638893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory.h 2025-06-01T21:33:48.1644190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1649123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_native.h 2025-06-01T21:33:48.1654313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_ops.h 2025-06-01T21:33:48.1657921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle.h 2025-06-01T21:33:48.1693724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1699611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1705075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h 2025-06-01T21:33:48.1710518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_native.h 2025-06-01T21:33:48.1716032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_ops.h 2025-06-01T21:33:48.1720546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle.h 2025-06-01T21:33:48.1726681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1730803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1734672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h 2025-06-01T21:33:48.1738501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_native.h 2025-06-01T21:33:48.1744123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_ops.h 2025-06-01T21:33:48.1748037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson.h 2025-06-01T21:33:48.1751677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1755307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cpu_dispatch.h 2025-06-01T21:33:48.1759270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cuda_dispatch.h 2025-06-01T21:33:48.1762977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_native.h 2025-06-01T21:33:48.1766737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss.h 2025-06-01T21:33:48.1770706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1776103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_native.h 2025-06-01T21:33:48.1780059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_ops.h 2025-06-01T21:33:48.1783902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_ops.h 2025-06-01T21:33:48.1787833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar.h 2025-06-01T21:33:48.1791864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1795620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cpu_dispatch.h 2025-06-01T21:33:48.1799638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cuda_dispatch.h 2025-06-01T21:33:48.1803463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_native.h 2025-06-01T21:33:48.1807435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_ops.h 2025-06-01T21:33:48.1811395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma.h 2025-06-01T21:33:48.1816739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1820872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1824622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cpu_dispatch.h 2025-06-01T21:33:48.1829655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cuda_dispatch.h 2025-06-01T21:33:48.1834152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta.h 2025-06-01T21:33:48.1838596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta_dispatch.h 2025-06-01T21:33:48.1842531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_native.h 2025-06-01T21:33:48.1846473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_ops.h 2025-06-01T21:33:48.1850240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive.h 2025-06-01T21:33:48.1854201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1857883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_native.h 2025-06-01T21:33:48.1861830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_ops.h 2025-06-01T21:33:48.1865497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow.h 2025-06-01T21:33:48.1869196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1872779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cpu_dispatch.h 2025-06-01T21:33:48.1876638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cuda_dispatch.h 2025-06-01T21:33:48.1880315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta.h 2025-06-01T21:33:48.1884032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta_dispatch.h 2025-06-01T21:33:48.1887712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_native.h 2025-06-01T21:33:48.1891297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_ops.h 2025-06-01T21:33:48.1894716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu.h 2025-06-01T21:33:48.1898270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1902137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_native.h 2025-06-01T21:33:48.1905880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_ops.h 2025-06-01T21:33:48.1909892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod.h 2025-06-01T21:33:48.1913860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.1917551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1922275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1926065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cpu_dispatch.h 2025-06-01T21:33:48.1929761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cuda_dispatch.h 2025-06-01T21:33:48.1933844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta.h 2025-06-01T21:33:48.1938009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta_dispatch.h 2025-06-01T21:33:48.1941861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_native.h 2025-06-01T21:33:48.1945818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_ops.h 2025-06-01T21:33:48.1949249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types.h 2025-06-01T21:33:48.1953046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1956780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_native.h 2025-06-01T21:33:48.1960640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_ops.h 2025-06-01T21:33:48.1964608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put.h 2025-06-01T21:33:48.1968373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.1972198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cpu_dispatch.h 2025-06-01T21:33:48.1975816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cuda_dispatch.h 2025-06-01T21:33:48.1979534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_meta_dispatch.h 2025-06-01T21:33:48.1983251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_native.h 2025-06-01T21:33:48.1986935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_ops.h 2025-06-01T21:33:48.1990270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr.h 2025-06-01T21:33:48.1994101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.1997668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_native.h 2025-06-01T21:33:48.2001326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_ops.h 2025-06-01T21:33:48.2004749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme.h 2025-06-01T21:33:48.2008211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_native.h 2025-06-01T21:33:48.2012099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_ops.h 2025-06-01T21:33:48.2015899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile.h 2025-06-01T21:33:48.2019546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2023420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_native.h 2025-06-01T21:33:48.2027063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_ops.h 2025-06-01T21:33:48.2030781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm.h 2025-06-01T21:33:48.2035071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2038811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_native.h 2025-06-01T21:33:48.2042974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_ops.h 2025-06-01T21:33:48.2046804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell.h 2025-06-01T21:33:48.2051072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2055376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_native.h 2025-06-01T21:33:48.2059550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_ops.h 2025-06-01T21:33:48.2063458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell.h 2025-06-01T21:33:48.2067388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2071099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_native.h 2025-06-01T21:33:48.2075096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_ops.h 2025-06-01T21:33:48.2080763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d.h 2025-06-01T21:33:48.2086077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2089724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_native.h 2025-06-01T21:33:48.2093555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_ops.h 2025-06-01T21:33:48.2097312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d.h 2025-06-01T21:33:48.2101586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2105407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_native.h 2025-06-01T21:33:48.2109267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_ops.h 2025-06-01T21:33:48.2113099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d.h 2025-06-01T21:33:48.2117076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2120818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_native.h 2025-06-01T21:33:48.2124627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_ops.h 2025-06-01T21:33:48.2128789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell.h 2025-06-01T21:33:48.2132775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2136483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h 2025-06-01T21:33:48.2140212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h 2025-06-01T21:33:48.2144015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell.h 2025-06-01T21:33:48.2147923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2151794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h 2025-06-01T21:33:48.2156897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h 2025-06-01T21:33:48.2160989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel.h 2025-06-01T21:33:48.2164967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2168708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h 2025-06-01T21:33:48.2172595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h 2025-06-01T21:33:48.2176515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_native.h 2025-06-01T21:33:48.2180498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_ops.h 2025-06-01T21:33:48.2184567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor.h 2025-06-01T21:33:48.2188455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2192164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h 2025-06-01T21:33:48.2195916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h 2025-06-01T21:33:48.2199984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic.h 2025-06-01T21:33:48.2203936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2207811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h 2025-06-01T21:33:48.2211594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h 2025-06-01T21:33:48.2215874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h 2025-06-01T21:33:48.2220359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h 2025-06-01T21:33:48.2224091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_native.h 2025-06-01T21:33:48.2228011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_ops.h 2025-06-01T21:33:48.2231722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis.h 2025-06-01T21:33:48.2235328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_native.h 2025-06-01T21:33:48.2238975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_ops.h 2025-06-01T21:33:48.2242616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales.h 2025-06-01T21:33:48.2246834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2250909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_native.h 2025-06-01T21:33:48.2272751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_ops.h 2025-06-01T21:33:48.2276726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points.h 2025-06-01T21:33:48.2284226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2315112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_native.h 2025-06-01T21:33:48.2316428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_ops.h 2025-06-01T21:33:48.2325752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale.h 2025-06-01T21:33:48.2329160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_native.h 2025-06-01T21:33:48.2365781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_ops.h 2025-06-01T21:33:48.2370581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point.h 2025-06-01T21:33:48.2375880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_native.h 2025-06-01T21:33:48.2381359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_ops.h 2025-06-01T21:33:48.2386677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg.h 2025-06-01T21:33:48.2390799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2394575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_native.h 2025-06-01T21:33:48.2399974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_ops.h 2025-06-01T21:33:48.2403661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand.h 2025-06-01T21:33:48.2407161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint.h 2025-06-01T21:33:48.2410845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2416391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like.h 2025-06-01T21:33:48.2420446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2425677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_native.h 2025-06-01T21:33:48.2429542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_ops.h 2025-06-01T21:33:48.2433373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_native.h 2025-06-01T21:33:48.2437069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_ops.h 2025-06-01T21:33:48.2442417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn.h 2025-06-01T21:33:48.2446005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2450091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2454706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like.h 2025-06-01T21:33:48.2458978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2462826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-06-01T21:33:48.2466558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_native.h 2025-06-01T21:33:48.2470918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_ops.h 2025-06-01T21:33:48.2475079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_native.h 2025-06-01T21:33:48.2478888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_ops.h 2025-06-01T21:33:48.2482676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random.h 2025-06-01T21:33:48.2486241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2490259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cpu_dispatch.h 2025-06-01T21:33:48.2493863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cuda_dispatch.h 2025-06-01T21:33:48.2498306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_meta_dispatch.h 2025-06-01T21:33:48.2502147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_native.h 2025-06-01T21:33:48.2505810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_ops.h 2025-06-01T21:33:48.2509414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm.h 2025-06-01T21:33:48.2513175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2516863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cpu_dispatch.h 2025-06-01T21:33:48.2520597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cuda_dispatch.h 2025-06-01T21:33:48.2524391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_native.h 2025-06-01T21:33:48.2527965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_ops.h 2025-06-01T21:33:48.2531833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2535425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2539233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like.h 2025-06-01T21:33:48.2543705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2547508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_native.h 2025-06-01T21:33:48.2551234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_ops.h 2025-06-01T21:33:48.2555011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_native.h 2025-06-01T21:33:48.2558642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_ops.h 2025-06-01T21:33:48.2562787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range.h 2025-06-01T21:33:48.2566832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2570709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cpu_dispatch.h 2025-06-01T21:33:48.2574379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cuda_dispatch.h 2025-06-01T21:33:48.2578069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_meta_dispatch.h 2025-06-01T21:33:48.2581912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_native.h 2025-06-01T21:33:48.2585606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_ops.h 2025-06-01T21:33:48.2589562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel.h 2025-06-01T21:33:48.2604852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2605584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_native.h 2025-06-01T21:33:48.2606132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_ops.h 2025-06-01T21:33:48.2606767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real.h 2025-06-01T21:33:48.2609999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2613490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_native.h 2025-06-01T21:33:48.2616989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_ops.h 2025-06-01T21:33:48.2620566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal.h 2025-06-01T21:33:48.2624482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.2628085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cpu_dispatch.h 2025-06-01T21:33:48.2632063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cuda_dispatch.h 2025-06-01T21:33:48.2636029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta.h 2025-06-01T21:33:48.2639811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta_dispatch.h 2025-06-01T21:33:48.2643529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_native.h 2025-06-01T21:33:48.2647298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_ops.h 2025-06-01T21:33:48.2651330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream.h 2025-06-01T21:33:48.2655005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_cuda_dispatch.h 2025-06-01T21:33:48.2659094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_native.h 2025-06-01T21:33:48.2662835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_ops.h 2025-06-01T21:33:48.2666848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names.h 2025-06-01T21:33:48.2670775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2674857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_native.h 2025-06-01T21:33:48.2678904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_ops.h 2025-06-01T21:33:48.2682984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d.h 2025-06-01T21:33:48.2686696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward.h 2025-06-01T21:33:48.2690826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.2694539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h 2025-06-01T21:33:48.2699831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h 2025-06-01T21:33:48.2705121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta.h 2025-06-01T21:33:48.2709216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h 2025-06-01T21:33:48.2714904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_native.h 2025-06-01T21:33:48.2720162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_ops.h 2025-06-01T21:33:48.2725550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.2730942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h 2025-06-01T21:33:48.2736000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h 2025-06-01T21:33:48.2741690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta.h 2025-06-01T21:33:48.2747146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h 2025-06-01T21:33:48.2753044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_native.h 2025-06-01T21:33:48.2758263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_ops.h 2025-06-01T21:33:48.2762319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d.h 2025-06-01T21:33:48.2767612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward.h 2025-06-01T21:33:48.2773165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h 2025-06-01T21:33:48.2814385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h 2025-06-01T21:33:48.2820369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_native.h 2025-06-01T21:33:48.2825943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_ops.h 2025-06-01T21:33:48.2831561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h 2025-06-01T21:33:48.2837594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h 2025-06-01T21:33:48.2841701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_native.h 2025-06-01T21:33:48.2845533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_ops.h 2025-06-01T21:33:48.2851650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d.h 2025-06-01T21:33:48.2855551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward.h 2025-06-01T21:33:48.2859742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.2865406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h 2025-06-01T21:33:48.2869439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h 2025-06-01T21:33:48.2873410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta.h 2025-06-01T21:33:48.2877567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h 2025-06-01T21:33:48.2881696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_native.h 2025-06-01T21:33:48.2885486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_ops.h 2025-06-01T21:33:48.2889773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.2893439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h 2025-06-01T21:33:48.2899327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h 2025-06-01T21:33:48.2903263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta.h 2025-06-01T21:33:48.2907133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h 2025-06-01T21:33:48.2910987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_native.h 2025-06-01T21:33:48.2915080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_ops.h 2025-06-01T21:33:48.2918769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu.h 2025-06-01T21:33:48.2922886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6.h 2025-06-01T21:33:48.2926826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.2930711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_native.h 2025-06-01T21:33:48.2934483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_ops.h 2025-06-01T21:33:48.2951905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2956330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cpu_dispatch.h 2025-06-01T21:33:48.2960567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cuda_dispatch.h 2025-06-01T21:33:48.2964393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_meta_dispatch.h 2025-06-01T21:33:48.2967991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_native.h 2025-06-01T21:33:48.2971736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_ops.h 2025-06-01T21:33:48.2975333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder.h 2025-06-01T21:33:48.2979345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.2983090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.2986875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cpu_dispatch.h 2025-06-01T21:33:48.2990633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cuda_dispatch.h 2025-06-01T21:33:48.2994389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta.h 2025-06-01T21:33:48.2998355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta_dispatch.h 2025-06-01T21:33:48.3002147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_native.h 2025-06-01T21:33:48.3006476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_ops.h 2025-06-01T21:33:48.3010523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename.h 2025-06-01T21:33:48.3014084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3017703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_native.h 2025-06-01T21:33:48.3021434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_ops.h 2025-06-01T21:33:48.3025139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm.h 2025-06-01T21:33:48.3028803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3032635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cpu_dispatch.h 2025-06-01T21:33:48.3036288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cuda_dispatch.h 2025-06-01T21:33:48.3039971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta.h 2025-06-01T21:33:48.3043658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta_dispatch.h 2025-06-01T21:33:48.3047322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_native.h 2025-06-01T21:33:48.3051958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_ops.h 2025-06-01T21:33:48.3055767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat.h 2025-06-01T21:33:48.3059923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3063583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave.h 2025-06-01T21:33:48.3068115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3072402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3076039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h 2025-06-01T21:33:48.3079804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h 2025-06-01T21:33:48.3085142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_native.h 2025-06-01T21:33:48.3090312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_ops.h 2025-06-01T21:33:48.3095418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_native.h 2025-06-01T21:33:48.3100845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_ops.h 2025-06-01T21:33:48.3104918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d.h 2025-06-01T21:33:48.3110247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward.h 2025-06-01T21:33:48.3151466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3157031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h 2025-06-01T21:33:48.3162363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h 2025-06-01T21:33:48.3167842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta.h 2025-06-01T21:33:48.3173224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h 2025-06-01T21:33:48.3177245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_native.h 2025-06-01T21:33:48.3181688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_ops.h 2025-06-01T21:33:48.3187185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3190987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h 2025-06-01T21:33:48.3194950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h 2025-06-01T21:33:48.3200473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta.h 2025-06-01T21:33:48.3204634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h 2025-06-01T21:33:48.3208682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_native.h 2025-06-01T21:33:48.3212530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_ops.h 2025-06-01T21:33:48.3216889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d.h 2025-06-01T21:33:48.3221210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward.h 2025-06-01T21:33:48.3224999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h 2025-06-01T21:33:48.3228832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h 2025-06-01T21:33:48.3234142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_native.h 2025-06-01T21:33:48.3238204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_ops.h 2025-06-01T21:33:48.3242310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3246315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h 2025-06-01T21:33:48.3250309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h 2025-06-01T21:33:48.3254291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta.h 2025-06-01T21:33:48.3258103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h 2025-06-01T21:33:48.3262362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_native.h 2025-06-01T21:33:48.3269464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_ops.h 2025-06-01T21:33:48.3273353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d.h 2025-06-01T21:33:48.3277382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward.h 2025-06-01T21:33:48.3281224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h 2025-06-01T21:33:48.3286841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h 2025-06-01T21:33:48.3290980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_native.h 2025-06-01T21:33:48.3295302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_ops.h 2025-06-01T21:33:48.3299514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3303472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h 2025-06-01T21:33:48.3307409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h 2025-06-01T21:33:48.3311226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta.h 2025-06-01T21:33:48.3315468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h 2025-06-01T21:33:48.3320159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_native.h 2025-06-01T21:33:48.3324118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_ops.h 2025-06-01T21:33:48.3327938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad.h 2025-06-01T21:33:48.3331894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3335761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_native.h 2025-06-01T21:33:48.3339778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_ops.h 2025-06-01T21:33:48.3344638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape.h 2025-06-01T21:33:48.3348066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as.h 2025-06-01T21:33:48.3351922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h 2025-06-01T21:33:48.3355701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3359437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_native.h 2025-06-01T21:33:48.3363182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_ops.h 2025-06-01T21:33:48.3367712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h 2025-06-01T21:33:48.3371999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3375754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_native.h 2025-06-01T21:33:48.3379808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_ops.h 2025-06-01T21:33:48.3383575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize.h 2025-06-01T21:33:48.3424897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as.h 2025-06-01T21:33:48.3430320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3435673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_native.h 2025-06-01T21:33:48.3441071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_ops.h 2025-06-01T21:33:48.3446241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse.h 2025-06-01T21:33:48.3451603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3456816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h 2025-06-01T21:33:48.3461151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_native.h 2025-06-01T21:33:48.3467222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_ops.h 2025-06-01T21:33:48.3472091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3476015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cpu_dispatch.h 2025-06-01T21:33:48.3479852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cuda_dispatch.h 2025-06-01T21:33:48.3483662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_meta_dispatch.h 2025-06-01T21:33:48.3488021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_native.h 2025-06-01T21:33:48.3491740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_ops.h 2025-06-01T21:33:48.3495498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj.h 2025-06-01T21:33:48.3499432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3503370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_native.h 2025-06-01T21:33:48.3507120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_ops.h 2025-06-01T21:33:48.3511502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg.h 2025-06-01T21:33:48.3516117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3520033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_native.h 2025-06-01T21:33:48.3523799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_ops.h 2025-06-01T21:33:48.3527602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type.h 2025-06-01T21:33:48.3532920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3537089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_native.h 2025-06-01T21:33:48.3540788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_ops.h 2025-06-01T21:33:48.3544424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad.h 2025-06-01T21:33:48.3564104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3567834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_native.h 2025-06-01T21:33:48.3571571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_ops.h 2025-06-01T21:33:48.3575595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad.h 2025-06-01T21:33:48.3579582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3583775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_native.h 2025-06-01T21:33:48.3589055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_ops.h 2025-06-01T21:33:48.3594205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm.h 2025-06-01T21:33:48.3598278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3603499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_native.h 2025-06-01T21:33:48.3608996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_ops.h 2025-06-01T21:33:48.3614325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu.h 2025-06-01T21:33:48.3619351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell.h 2025-06-01T21:33:48.3624683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3630124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_native.h 2025-06-01T21:33:48.3635243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_ops.h 2025-06-01T21:33:48.3639542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3644587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_native.h 2025-06-01T21:33:48.3649889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_ops.h 2025-06-01T21:33:48.3654988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh.h 2025-06-01T21:33:48.3660091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell.h 2025-06-01T21:33:48.3665344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3670376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_native.h 2025-06-01T21:33:48.3674409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_ops.h 2025-06-01T21:33:48.3679701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3685178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_native.h 2025-06-01T21:33:48.3690504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_ops.h 2025-06-01T21:33:48.3695568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll.h 2025-06-01T21:33:48.3700609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3705712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cpu_dispatch.h 2025-06-01T21:33:48.3709787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cuda_dispatch.h 2025-06-01T21:33:48.3714948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_native.h 2025-06-01T21:33:48.3719908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_ops.h 2025-06-01T21:33:48.3724862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90.h 2025-06-01T21:33:48.3729870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3734485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_native.h 2025-06-01T21:33:48.3738782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_ops.h 2025-06-01T21:33:48.3743801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round.h 2025-06-01T21:33:48.3749348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3754299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cpu_dispatch.h 2025-06-01T21:33:48.3759357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cuda_dispatch.h 2025-06-01T21:33:48.3764575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta.h 2025-06-01T21:33:48.3768484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta_dispatch.h 2025-06-01T21:33:48.3773950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_native.h 2025-06-01T21:33:48.3796693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_ops.h 2025-06-01T21:33:48.3802359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices.h 2025-06-01T21:33:48.3808022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3812990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy.h 2025-06-01T21:33:48.3818730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3823260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3827106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_native.h 2025-06-01T21:33:48.3832519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_ops.h 2025-06-01T21:33:48.3836408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_native.h 2025-06-01T21:33:48.3840174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_ops.h 2025-06-01T21:33:48.3845576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack.h 2025-06-01T21:33:48.3849800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3854400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_native.h 2025-06-01T21:33:48.3858154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_ops.h 2025-06-01T21:33:48.3861978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu.h 2025-06-01T21:33:48.3865734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.3869426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_native.h 2025-06-01T21:33:48.3873107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_ops.h 2025-06-01T21:33:48.3878248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise.h 2025-06-01T21:33:48.3883133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward.h 2025-06-01T21:33:48.3887495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3891804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_native.h 2025-06-01T21:33:48.3895579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h 2025-06-01T21:33:48.3899758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3903698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h 2025-06-01T21:33:48.3907908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h 2025-06-01T21:33:48.3911893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h 2025-06-01T21:33:48.3915632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_native.h 2025-06-01T21:33:48.3919442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_ops.h 2025-06-01T21:33:48.3923496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift.h 2025-06-01T21:33:48.3927109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3931896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cpu_dispatch.h 2025-06-01T21:33:48.3935120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cuda_dispatch.h 2025-06-01T21:33:48.3939606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_meta_dispatch.h 2025-06-01T21:33:48.3943587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_native.h 2025-06-01T21:33:48.3947396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_ops.h 2025-06-01T21:33:48.3951410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt.h 2025-06-01T21:33:48.3955259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.3959077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cpu_dispatch.h 2025-06-01T21:33:48.3963155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cuda_dispatch.h 2025-06-01T21:33:48.3967160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta.h 2025-06-01T21:33:48.3970944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta_dispatch.h 2025-06-01T21:33:48.3974961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_native.h 2025-06-01T21:33:48.3978696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_ops.h 2025-06-01T21:33:48.3983335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub.h 2025-06-01T21:33:48.3987093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.3992082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cpu_dispatch.h 2025-06-01T21:33:48.3997301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cuda_dispatch.h 2025-06-01T21:33:48.4002721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_native.h 2025-06-01T21:33:48.4008629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_ops.h 2025-06-01T21:33:48.4013466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor.h 2025-06-01T21:33:48.4019427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4023430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_native.h 2025-06-01T21:33:48.4028514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_ops.h 2025-06-01T21:33:48.4033648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention.h 2025-06-01T21:33:48.4039913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4044865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_native.h 2025-06-01T21:33:48.4050092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_ops.h 2025-06-01T21:33:48.4055501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter.h 2025-06-01T21:33:48.4060288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add.h 2025-06-01T21:33:48.4064480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4070082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4075223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cpu_dispatch.h 2025-06-01T21:33:48.4080563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cuda_dispatch.h 2025-06-01T21:33:48.4085832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta.h 2025-06-01T21:33:48.4091378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta_dispatch.h 2025-06-01T21:33:48.4096676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_native.h 2025-06-01T21:33:48.4102655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_ops.h 2025-06-01T21:33:48.4107885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4111937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4117216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cpu_dispatch.h 2025-06-01T21:33:48.4122320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cuda_dispatch.h 2025-06-01T21:33:48.4127696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta.h 2025-06-01T21:33:48.4132910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta_dispatch.h 2025-06-01T21:33:48.4138366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_native.h 2025-06-01T21:33:48.4144459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_ops.h 2025-06-01T21:33:48.4149579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce.h 2025-06-01T21:33:48.4155077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4159364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h 2025-06-01T21:33:48.4164539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h 2025-06-01T21:33:48.4170036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta.h 2025-06-01T21:33:48.4175679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h 2025-06-01T21:33:48.4181014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_native.h 2025-06-01T21:33:48.4186378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_ops.h 2025-06-01T21:33:48.4191629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted.h 2025-06-01T21:33:48.4196852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cpu_dispatch.h 2025-06-01T21:33:48.4202004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cuda_dispatch.h 2025-06-01T21:33:48.4206399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_native.h 2025-06-01T21:33:48.4211950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_ops.h 2025-06-01T21:33:48.4217116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce.h 2025-06-01T21:33:48.4222672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4227928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h 2025-06-01T21:33:48.4233170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h 2025-06-01T21:33:48.4238216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_native.h 2025-06-01T21:33:48.4242044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_ops.h 2025-06-01T21:33:48.4247477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select.h 2025-06-01T21:33:48.4252719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward.h 2025-06-01T21:33:48.4258050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4263378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4268390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_native.h 2025-06-01T21:33:48.4274033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_ops.h 2025-06-01T21:33:48.4280608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4286240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4291921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy.h 2025-06-01T21:33:48.4296257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4300492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4306152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_native.h 2025-06-01T21:33:48.4310051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_ops.h 2025-06-01T21:33:48.4313988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_native.h 2025-06-01T21:33:48.4319452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_ops.h 2025-06-01T21:33:48.4323604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter.h 2025-06-01T21:33:48.4327674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4331607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4335550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_native.h 2025-06-01T21:33:48.4339737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_ops.h 2025-06-01T21:33:48.4344023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu.h 2025-06-01T21:33:48.4347878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4353368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_native.h 2025-06-01T21:33:48.4357305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_ops.h 2025-06-01T21:33:48.4361041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set.h 2025-06-01T21:33:48.4364756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4368448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4372286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cpu_dispatch.h 2025-06-01T21:33:48.4376243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cuda_dispatch.h 2025-06-01T21:33:48.4380176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data.h 2025-06-01T21:33:48.4383762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4387451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_native.h 2025-06-01T21:33:48.4391132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_ops.h 2025-06-01T21:33:48.4395333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_meta_dispatch.h 2025-06-01T21:33:48.4399216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_native.h 2025-06-01T21:33:48.4403036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_ops.h 2025-06-01T21:33:48.4407958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn.h 2025-06-01T21:33:48.4411856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4415491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cpu_dispatch.h 2025-06-01T21:33:48.4419247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cuda_dispatch.h 2025-06-01T21:33:48.4423129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta.h 2025-06-01T21:33:48.4426613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta_dispatch.h 2025-06-01T21:33:48.4430407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_native.h 2025-06-01T21:33:48.4434310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_ops.h 2025-06-01T21:33:48.4439040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid.h 2025-06-01T21:33:48.4442815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward.h 2025-06-01T21:33:48.4446891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4451063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h 2025-06-01T21:33:48.4455323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h 2025-06-01T21:33:48.4459374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta.h 2025-06-01T21:33:48.4463522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h 2025-06-01T21:33:48.4467458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_native.h 2025-06-01T21:33:48.4471307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_ops.h 2025-06-01T21:33:48.4475614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4479831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cpu_dispatch.h 2025-06-01T21:33:48.4483880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cuda_dispatch.h 2025-06-01T21:33:48.4487767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta.h 2025-06-01T21:33:48.4491943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta_dispatch.h 2025-06-01T21:33:48.4495969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_native.h 2025-06-01T21:33:48.4500003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_ops.h 2025-06-01T21:33:48.4503848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign.h 2025-06-01T21:33:48.4507391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit.h 2025-06-01T21:33:48.4511788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4515459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cpu_dispatch.h 2025-06-01T21:33:48.4519330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cuda_dispatch.h 2025-06-01T21:33:48.4523340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta.h 2025-06-01T21:33:48.4527225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta_dispatch.h 2025-06-01T21:33:48.4531085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_native.h 2025-06-01T21:33:48.4534844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_ops.h 2025-06-01T21:33:48.4538847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4542514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cpu_dispatch.h 2025-06-01T21:33:48.4546415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cuda_dispatch.h 2025-06-01T21:33:48.4550084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta.h 2025-06-01T21:33:48.4553951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta_dispatch.h 2025-06-01T21:33:48.4558364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_native.h 2025-06-01T21:33:48.4562141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_ops.h 2025-06-01T21:33:48.4565723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu.h 2025-06-01T21:33:48.4569286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward.h 2025-06-01T21:33:48.4573240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4577275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4581762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cpu_dispatch.h 2025-06-01T21:33:48.4585946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cuda_dispatch.h 2025-06-01T21:33:48.4589948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta.h 2025-06-01T21:33:48.4595320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta_dispatch.h 2025-06-01T21:33:48.4600906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_native.h 2025-06-01T21:33:48.4606822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_ops.h 2025-06-01T21:33:48.4612395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4617971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cpu_dispatch.h 2025-06-01T21:33:48.4622228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cuda_dispatch.h 2025-06-01T21:33:48.4627897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta.h 2025-06-01T21:33:48.4633041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta_dispatch.h 2025-06-01T21:33:48.4638468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_native.h 2025-06-01T21:33:48.4643761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_ops.h 2025-06-01T21:33:48.4648626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin.h 2025-06-01T21:33:48.4653657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc.h 2025-06-01T21:33:48.4657712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4663420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cpu_dispatch.h 2025-06-01T21:33:48.4668620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cuda_dispatch.h 2025-06-01T21:33:48.4674154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta.h 2025-06-01T21:33:48.4679397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta_dispatch.h 2025-06-01T21:33:48.4684599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_native.h 2025-06-01T21:33:48.4689737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_ops.h 2025-06-01T21:33:48.4694613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh.h 2025-06-01T21:33:48.4698697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4704014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cpu_dispatch.h 2025-06-01T21:33:48.4709160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cuda_dispatch.h 2025-06-01T21:33:48.4714643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta.h 2025-06-01T21:33:48.4720048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta_dispatch.h 2025-06-01T21:33:48.4725288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_native.h 2025-06-01T21:33:48.4730285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_ops.h 2025-06-01T21:33:48.4734447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4739863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cpu_dispatch.h 2025-06-01T21:33:48.4745187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cuda_dispatch.h 2025-06-01T21:33:48.4750239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta.h 2025-06-01T21:33:48.4755216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta_dispatch.h 2025-06-01T21:33:48.4760460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_native.h 2025-06-01T21:33:48.4765768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_ops.h 2025-06-01T21:33:48.4802436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size.h 2025-06-01T21:33:48.4808032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4814262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_native.h 2025-06-01T21:33:48.4819926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_ops.h 2025-06-01T21:33:48.4825082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice.h 2025-06-01T21:33:48.4828966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward.h 2025-06-01T21:33:48.4833064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4838741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_native.h 2025-06-01T21:33:48.4843034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_ops.h 2025-06-01T21:33:48.4847103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4853140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy.h 2025-06-01T21:33:48.4857517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4861579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4865564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_native.h 2025-06-01T21:33:48.4869426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_ops.h 2025-06-01T21:33:48.4873518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse.h 2025-06-01T21:33:48.4877796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4883028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_native.h 2025-06-01T21:33:48.4887270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_ops.h 2025-06-01T21:33:48.4891147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_native.h 2025-06-01T21:33:48.4895041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_ops.h 2025-06-01T21:33:48.4899061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter.h 2025-06-01T21:33:48.4903095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.4907333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4911200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_native.h 2025-06-01T21:33:48.4915174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_ops.h 2025-06-01T21:33:48.4919084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet.h 2025-06-01T21:33:48.4922799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4926765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_native.h 2025-06-01T21:33:48.4931064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_ops.h 2025-06-01T21:33:48.4935509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d.h 2025-06-01T21:33:48.4939665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.4945053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward.h 2025-06-01T21:33:48.4950276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h 2025-06-01T21:33:48.4955501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_native.h 2025-06-01T21:33:48.4960701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_ops.h 2025-06-01T21:33:48.4964764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_native.h 2025-06-01T21:33:48.4970217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_ops.h 2025-06-01T21:33:48.4975531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d.h 2025-06-01T21:33:48.4981086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.4986275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h 2025-06-01T21:33:48.4991507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h 2025-06-01T21:33:48.4997291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_native.h 2025-06-01T21:33:48.5002611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_ops.h 2025-06-01T21:33:48.5007972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d.h 2025-06-01T21:33:48.5012293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5017396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h 2025-06-01T21:33:48.5022767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h 2025-06-01T21:33:48.5028036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_native.h 2025-06-01T21:33:48.5033442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_ops.h 2025-06-01T21:33:48.5038824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d.h 2025-06-01T21:33:48.5044472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5049932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h 2025-06-01T21:33:48.5055441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h 2025-06-01T21:33:48.5061338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta.h 2025-06-01T21:33:48.5066766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h 2025-06-01T21:33:48.5071247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_native.h 2025-06-01T21:33:48.5076882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_ops.h 2025-06-01T21:33:48.5082419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d.h 2025-06-01T21:33:48.5087823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h 2025-06-01T21:33:48.5093788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h 2025-06-01T21:33:48.5099438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_native.h 2025-06-01T21:33:48.5105223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_ops.h 2025-06-01T21:33:48.5110455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm.h 2025-06-01T21:33:48.5115840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5121181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_native.h 2025-06-01T21:33:48.5125272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_ops.h 2025-06-01T21:33:48.5133903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss.h 2025-06-01T21:33:48.5137772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward.h 2025-06-01T21:33:48.5142394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5146308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h 2025-06-01T21:33:48.5150028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h 2025-06-01T21:33:48.5154180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_native.h 2025-06-01T21:33:48.5158039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h 2025-06-01T21:33:48.5162332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5166727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h 2025-06-01T21:33:48.5170870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h 2025-06-01T21:33:48.5174864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta.h 2025-06-01T21:33:48.5180015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h 2025-06-01T21:33:48.5183413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_native.h 2025-06-01T21:33:48.5188398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_ops.h 2025-06-01T21:33:48.5192455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax.h 2025-06-01T21:33:48.5197241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5200698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5204863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_native.h 2025-06-01T21:33:48.5209057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_ops.h 2025-06-01T21:33:48.5214336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus.h 2025-06-01T21:33:48.5217250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward.h 2025-06-01T21:33:48.5221936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5226453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h 2025-06-01T21:33:48.5231296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h 2025-06-01T21:33:48.5234210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta.h 2025-06-01T21:33:48.5238331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta_dispatch.h 2025-06-01T21:33:48.5243017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_native.h 2025-06-01T21:33:48.5246681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_ops.h 2025-06-01T21:33:48.5251612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5255703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cpu_dispatch.h 2025-06-01T21:33:48.5260707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cuda_dispatch.h 2025-06-01T21:33:48.5263484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta.h 2025-06-01T21:33:48.5269317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta_dispatch.h 2025-06-01T21:33:48.5274453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_native.h 2025-06-01T21:33:48.5279905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_ops.h 2025-06-01T21:33:48.5285030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink.h 2025-06-01T21:33:48.5290503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward.h 2025-06-01T21:33:48.5294734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5299839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h 2025-06-01T21:33:48.5306645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h 2025-06-01T21:33:48.5312145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta.h 2025-06-01T21:33:48.5317836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h 2025-06-01T21:33:48.5323716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_native.h 2025-06-01T21:33:48.5328211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_ops.h 2025-06-01T21:33:48.5333704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5337754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cpu_dispatch.h 2025-06-01T21:33:48.5341732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cuda_dispatch.h 2025-06-01T21:33:48.5345442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta.h 2025-06-01T21:33:48.5351160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta_dispatch.h 2025-06-01T21:33:48.5355829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_native.h 2025-06-01T21:33:48.5359673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_ops.h 2025-06-01T21:33:48.5363743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss.h 2025-06-01T21:33:48.5367486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward.h 2025-06-01T21:33:48.5371426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5375260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_native.h 2025-06-01T21:33:48.5381472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_ops.h 2025-06-01T21:33:48.5385769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5390111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_native.h 2025-06-01T21:33:48.5394241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_ops.h 2025-06-01T21:33:48.5398054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort.h 2025-06-01T21:33:48.5402076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5406235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5410308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5414135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cpu_dispatch.h 2025-06-01T21:33:48.5418873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cuda_dispatch.h 2025-06-01T21:33:48.5422906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta.h 2025-06-01T21:33:48.5426602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta_dispatch.h 2025-06-01T21:33:48.5430609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_native.h 2025-06-01T21:33:48.5434234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_ops.h 2025-06-01T21:33:48.5439663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor.h 2025-06-01T21:33:48.5443286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5447802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_native.h 2025-06-01T21:33:48.5452701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_ops.h 2025-06-01T21:33:48.5458195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor.h 2025-06-01T21:33:48.5462386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5466723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_native.h 2025-06-01T21:33:48.5470740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_ops.h 2025-06-01T21:33:48.5474761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor.h 2025-06-01T21:33:48.5478992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5483190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_native.h 2025-06-01T21:33:48.5487274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_ops.h 2025-06-01T21:33:48.5491391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor.h 2025-06-01T21:33:48.5495741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5500155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5504153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_native.h 2025-06-01T21:33:48.5508394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_ops.h 2025-06-01T21:33:48.5512110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor.h 2025-06-01T21:33:48.5516360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5520410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_native.h 2025-06-01T21:33:48.5524557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_ops.h 2025-06-01T21:33:48.5529459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor.h 2025-06-01T21:33:48.5533671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.5538085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_native.h 2025-06-01T21:33:48.5542990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_ops.h 2025-06-01T21:33:48.5548092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim.h 2025-06-01T21:33:48.5551418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5555488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_native.h 2025-06-01T21:33:48.5559333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_ops.h 2025-06-01T21:33:48.5563436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask.h 2025-06-01T21:33:48.5567441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5571374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_native.h 2025-06-01T21:33:48.5575606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_ops.h 2025-06-01T21:33:48.5579775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize.h 2025-06-01T21:33:48.5583811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear.h 2025-06-01T21:33:48.5588035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5592162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h 2025-06-01T21:33:48.5596294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_native.h 2025-06-01T21:33:48.5600379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_ops.h 2025-06-01T21:33:48.5606395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5612448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_meta_dispatch.h 2025-06-01T21:33:48.5617756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_native.h 2025-06-01T21:33:48.5623134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_ops.h 2025-06-01T21:33:48.5628377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm.h 2025-06-01T21:33:48.5634803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_native.h 2025-06-01T21:33:48.5640603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_ops.h 2025-06-01T21:33:48.5645984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai.h 2025-06-01T21:33:48.5652038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5657583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h 2025-06-01T21:33:48.5663507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h 2025-06-01T21:33:48.5667289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta.h 2025-06-01T21:33:48.5672881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h 2025-06-01T21:33:48.5678163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_native.h 2025-06-01T21:33:48.5683385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_ops.h 2025-06-01T21:33:48.5688729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0.h 2025-06-01T21:33:48.5694284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5699877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h 2025-06-01T21:33:48.5705525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h 2025-06-01T21:33:48.5728616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta.h 2025-06-01T21:33:48.5733969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h 2025-06-01T21:33:48.5739527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_native.h 2025-06-01T21:33:48.5743551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_ops.h 2025-06-01T21:33:48.5749115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1.h 2025-06-01T21:33:48.5754646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5760213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h 2025-06-01T21:33:48.5765670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h 2025-06-01T21:33:48.5770948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta.h 2025-06-01T21:33:48.5776202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h 2025-06-01T21:33:48.5781534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_native.h 2025-06-01T21:33:48.5786850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_ops.h 2025-06-01T21:33:48.5791055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0.h 2025-06-01T21:33:48.5798725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5824353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h 2025-06-01T21:33:48.5829207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h 2025-06-01T21:33:48.5835046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta.h 2025-06-01T21:33:48.5840808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h 2025-06-01T21:33:48.5846821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_native.h 2025-06-01T21:33:48.5850508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_ops.h 2025-06-01T21:33:48.5856479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1.h 2025-06-01T21:33:48.5860843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5864735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h 2025-06-01T21:33:48.5869315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h 2025-06-01T21:33:48.5874779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta.h 2025-06-01T21:33:48.5879057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h 2025-06-01T21:33:48.5882980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_native.h 2025-06-01T21:33:48.5886836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_ops.h 2025-06-01T21:33:48.5890986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t.h 2025-06-01T21:33:48.5895218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5900788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5904838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h 2025-06-01T21:33:48.5908950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h 2025-06-01T21:33:48.5912795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h 2025-06-01T21:33:48.5916838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h 2025-06-01T21:33:48.5921556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h 2025-06-01T21:33:48.5926081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h 2025-06-01T21:33:48.5929944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u.h 2025-06-01T21:33:48.5934667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5938827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5942878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h 2025-06-01T21:33:48.5947009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h 2025-06-01T21:33:48.5951341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h 2025-06-01T21:33:48.5955386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h 2025-06-01T21:33:48.5959565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h 2025-06-01T21:33:48.5963572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h 2025-06-01T21:33:48.5967713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v.h 2025-06-01T21:33:48.5971890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.5975842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.5980166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h 2025-06-01T21:33:48.5984191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h 2025-06-01T21:33:48.5988472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h 2025-06-01T21:33:48.5992612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h 2025-06-01T21:33:48.5996585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h 2025-06-01T21:33:48.6000505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h 2025-06-01T21:33:48.6005858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w.h 2025-06-01T21:33:48.6010107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6014497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.6019516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h 2025-06-01T21:33:48.6023657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h 2025-06-01T21:33:48.6027610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h 2025-06-01T21:33:48.6032445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h 2025-06-01T21:33:48.6052097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h 2025-06-01T21:33:48.6056461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h 2025-06-01T21:33:48.6060246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma.h 2025-06-01T21:33:48.6064569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6068598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_native.h 2025-06-01T21:33:48.6072694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_ops.h 2025-06-01T21:33:48.6076543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr.h 2025-06-01T21:33:48.6081289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6085617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cpu_dispatch.h 2025-06-01T21:33:48.6089553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cuda_dispatch.h 2025-06-01T21:33:48.6093502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta.h 2025-06-01T21:33:48.6097397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta_dispatch.h 2025-06-01T21:33:48.6101477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_native.h 2025-06-01T21:33:48.6106727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_ops.h 2025-06-01T21:33:48.6111901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf.h 2025-06-01T21:33:48.6115959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc.h 2025-06-01T21:33:48.6121333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx.h 2025-06-01T21:33:48.6126811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6131911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h 2025-06-01T21:33:48.6137272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h 2025-06-01T21:33:48.6142661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta.h 2025-06-01T21:33:48.6148123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta_dispatch.h 2025-06-01T21:33:48.6154203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_native.h 2025-06-01T21:33:48.6159907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_ops.h 2025-06-01T21:33:48.6165710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6171086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_native.h 2025-06-01T21:33:48.6177675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_ops.h 2025-06-01T21:33:48.6183140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv.h 2025-06-01T21:33:48.6187292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6192606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_native.h 2025-06-01T21:33:48.6198271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_ops.h 2025-06-01T21:33:48.6203611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6209133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_native.h 2025-06-01T21:33:48.6214257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_ops.h 2025-06-01T21:33:48.6219420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2.h 2025-06-01T21:33:48.6224955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6230163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_native.h 2025-06-01T21:33:48.6234194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_ops.h 2025-06-01T21:33:48.6239447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit.h 2025-06-01T21:33:48.6244951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6250663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_native.h 2025-06-01T21:33:48.6256121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_ops.h 2025-06-01T21:33:48.6261860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1.h 2025-06-01T21:33:48.6267409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6272568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_native.h 2025-06-01T21:33:48.6277750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_ops.h 2025-06-01T21:33:48.6283744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc.h 2025-06-01T21:33:48.6289324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc.h 2025-06-01T21:33:48.6294672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6322694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_native.h 2025-06-01T21:33:48.6328715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_ops.h 2025-06-01T21:33:48.6332985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6338902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_native.h 2025-06-01T21:33:48.6344530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_ops.h 2025-06-01T21:33:48.6350421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln.h 2025-06-01T21:33:48.6354476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6360221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_native.h 2025-06-01T21:33:48.6364162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_ops.h 2025-06-01T21:33:48.6368312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h.h 2025-06-01T21:33:48.6372319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he.h 2025-06-01T21:33:48.6378494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6382859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.6386958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h 2025-06-01T21:33:48.6390910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h 2025-06-01T21:33:48.6395151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h 2025-06-01T21:33:48.6399451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h 2025-06-01T21:33:48.6403184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_native.h 2025-06-01T21:33:48.6408596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h 2025-06-01T21:33:48.6412899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6417030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.6421865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h 2025-06-01T21:33:48.6426635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h 2025-06-01T21:33:48.6430662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h 2025-06-01T21:33:48.6434695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h 2025-06-01T21:33:48.6438643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_native.h 2025-06-01T21:33:48.6443183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h 2025-06-01T21:33:48.6447548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0.h 2025-06-01T21:33:48.6452980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e.h 2025-06-01T21:33:48.6456932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6461021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cpu_dispatch.h 2025-06-01T21:33:48.6466546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cuda_dispatch.h 2025-06-01T21:33:48.6470565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta.h 2025-06-01T21:33:48.6474432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta_dispatch.h 2025-06-01T21:33:48.6478592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_native.h 2025-06-01T21:33:48.6482748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_ops.h 2025-06-01T21:33:48.6486921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6490777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_native.h 2025-06-01T21:33:48.6494861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_ops.h 2025-06-01T21:33:48.6499010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1.h 2025-06-01T21:33:48.6503013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e.h 2025-06-01T21:33:48.6507438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6511328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cpu_dispatch.h 2025-06-01T21:33:48.6515544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cuda_dispatch.h 2025-06-01T21:33:48.6519444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta.h 2025-06-01T21:33:48.6523332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta_dispatch.h 2025-06-01T21:33:48.6527351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_native.h 2025-06-01T21:33:48.6531386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_ops.h 2025-06-01T21:33:48.6536511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6540224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cpu_dispatch.h 2025-06-01T21:33:48.6544342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cuda_dispatch.h 2025-06-01T21:33:48.6548205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta.h 2025-06-01T21:33:48.6552065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta_dispatch.h 2025-06-01T21:33:48.6556324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_native.h 2025-06-01T21:33:48.6560343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_ops.h 2025-06-01T21:33:48.6566268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l.h 2025-06-01T21:33:48.6571842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6577607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.6582867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h 2025-06-01T21:33:48.6588191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h 2025-06-01T21:33:48.6593750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h 2025-06-01T21:33:48.6600011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h 2025-06-01T21:33:48.6605527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h 2025-06-01T21:33:48.6609690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h 2025-06-01T21:33:48.6614974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p.h 2025-06-01T21:33:48.6620627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6626982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.6632280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h 2025-06-01T21:33:48.6637837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h 2025-06-01T21:33:48.6643798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h 2025-06-01T21:33:48.6650277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h 2025-06-01T21:33:48.6655564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_native.h 2025-06-01T21:33:48.6661217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h 2025-06-01T21:33:48.6666442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p.h 2025-06-01T21:33:48.6671905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6677423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_native.h 2025-06-01T21:33:48.6682792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_ops.h 2025-06-01T21:33:48.6688289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit.h 2025-06-01T21:33:48.6693720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6698521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_native.h 2025-06-01T21:33:48.6703434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_ops.h 2025-06-01T21:33:48.6708745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp.h 2025-06-01T21:33:48.6714436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6719857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_native.h 2025-06-01T21:33:48.6724904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_ops.h 2025-06-01T21:33:48.6730180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr.h 2025-06-01T21:33:48.6735983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6741186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h 2025-06-01T21:33:48.6745282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h 2025-06-01T21:33:48.6750679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta.h 2025-06-01T21:33:48.6756985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h 2025-06-01T21:33:48.6762058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_native.h 2025-06-01T21:33:48.6767110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_ops.h 2025-06-01T21:33:48.6772418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax.h 2025-06-01T21:33:48.6778001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6784363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_native.h 2025-06-01T21:33:48.6789979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_ops.h 2025-06-01T21:33:48.6795298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0.h 2025-06-01T21:33:48.6810540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6816569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h 2025-06-01T21:33:48.6822406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h 2025-06-01T21:33:48.6828260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta.h 2025-06-01T21:33:48.6834222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h 2025-06-01T21:33:48.6838706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_native.h 2025-06-01T21:33:48.6842708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_ops.h 2025-06-01T21:33:48.6848597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1.h 2025-06-01T21:33:48.6853145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6857568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h 2025-06-01T21:33:48.6863619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h 2025-06-01T21:33:48.6867797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta.h 2025-06-01T21:33:48.6871723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h 2025-06-01T21:33:48.6876216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_native.h 2025-06-01T21:33:48.6880197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_ops.h 2025-06-01T21:33:48.6884358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0.h 2025-06-01T21:33:48.6888921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6894705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h 2025-06-01T21:33:48.6899114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h 2025-06-01T21:33:48.6903354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta.h 2025-06-01T21:33:48.6908233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h 2025-06-01T21:33:48.6912961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_native.h 2025-06-01T21:33:48.6917169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_ops.h 2025-06-01T21:33:48.6921235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1.h 2025-06-01T21:33:48.6925488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6929642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h 2025-06-01T21:33:48.6933905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h 2025-06-01T21:33:48.6938429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta.h 2025-06-01T21:33:48.6942849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h 2025-06-01T21:33:48.6947078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_native.h 2025-06-01T21:33:48.6952875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_ops.h 2025-06-01T21:33:48.6958943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln.h 2025-06-01T21:33:48.6963223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.6967995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_native.h 2025-06-01T21:33:48.6972149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_ops.h 2025-06-01T21:33:48.6976140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr.h 2025-06-01T21:33:48.6980689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri.h 2025-06-01T21:33:48.6985088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.6989306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h 2025-06-01T21:33:48.6993536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h 2025-06-01T21:33:48.6997522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta.h 2025-06-01T21:33:48.7001798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta_dispatch.h 2025-06-01T21:33:48.7005986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_native.h 2025-06-01T21:33:48.7010153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_ops.h 2025-06-01T21:33:48.7015116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7019586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_native.h 2025-06-01T21:33:48.7023805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_ops.h 2025-06-01T21:33:48.7028026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma.h 2025-06-01T21:33:48.7032272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7036173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_native.h 2025-06-01T21:33:48.7040339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_ops.h 2025-06-01T21:33:48.7044565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi.h 2025-06-01T21:33:48.7048859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7052873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_native.h 2025-06-01T21:33:48.7057109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_ops.h 2025-06-01T21:33:48.7061238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round.h 2025-06-01T21:33:48.7065272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7069128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_native.h 2025-06-01T21:33:48.7074547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_ops.h 2025-06-01T21:33:48.7078630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h 2025-06-01T21:33:48.7083083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7087902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h 2025-06-01T21:33:48.7092488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h 2025-06-01T21:33:48.7096726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h 2025-06-01T21:33:48.7100955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h 2025-06-01T21:33:48.7104879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h 2025-06-01T21:33:48.7108782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h 2025-06-01T21:33:48.7113561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h 2025-06-01T21:33:48.7118272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7122381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h 2025-06-01T21:33:48.7126570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h 2025-06-01T21:33:48.7130495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h 2025-06-01T21:33:48.7134425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h 2025-06-01T21:33:48.7138658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h 2025-06-01T21:33:48.7142756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h 2025-06-01T21:33:48.7146809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h 2025-06-01T21:33:48.7150757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7154951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7159107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h 2025-06-01T21:33:48.7163076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h 2025-06-01T21:33:48.7166884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h 2025-06-01T21:33:48.7170853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h 2025-06-01T21:33:48.7174754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h 2025-06-01T21:33:48.7179055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h 2025-06-01T21:33:48.7183270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h 2025-06-01T21:33:48.7187827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7191669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7196082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h 2025-06-01T21:33:48.7200012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h 2025-06-01T21:33:48.7203922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h 2025-06-01T21:33:48.7208360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h 2025-06-01T21:33:48.7212638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h 2025-06-01T21:33:48.7216647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h 2025-06-01T21:33:48.7220595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h 2025-06-01T21:33:48.7224804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7229127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7233080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h 2025-06-01T21:33:48.7237828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h 2025-06-01T21:33:48.7241968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h 2025-06-01T21:33:48.7246007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h 2025-06-01T21:33:48.7249919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h 2025-06-01T21:33:48.7253785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h 2025-06-01T21:33:48.7257907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h 2025-06-01T21:33:48.7262396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7266229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7270473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h 2025-06-01T21:33:48.7275185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h 2025-06-01T21:33:48.7279470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h 2025-06-01T21:33:48.7284473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h 2025-06-01T21:33:48.7307194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h 2025-06-01T21:33:48.7311463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h 2025-06-01T21:33:48.7323790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc.h 2025-06-01T21:33:48.7366505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7372364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_native.h 2025-06-01T21:33:48.7378029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_ops.h 2025-06-01T21:33:48.7383978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax.h 2025-06-01T21:33:48.7389910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7394498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_native.h 2025-06-01T21:33:48.7400698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_ops.h 2025-06-01T21:33:48.7404957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0.h 2025-06-01T21:33:48.7409218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7414926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h 2025-06-01T21:33:48.7419502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h 2025-06-01T21:33:48.7423696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h 2025-06-01T21:33:48.7427729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h 2025-06-01T21:33:48.7431821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_native.h 2025-06-01T21:33:48.7436047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h 2025-06-01T21:33:48.7440020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py.h 2025-06-01T21:33:48.7444320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7451056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7455373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h 2025-06-01T21:33:48.7460952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h 2025-06-01T21:33:48.7465680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta.h 2025-06-01T21:33:48.7469955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h 2025-06-01T21:33:48.7473712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_native.h 2025-06-01T21:33:48.7477983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_ops.h 2025-06-01T21:33:48.7481712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy.h 2025-06-01T21:33:48.7485996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7490012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_native.h 2025-06-01T21:33:48.7494184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_ops.h 2025-06-01T21:33:48.7498157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta.h 2025-06-01T21:33:48.7504217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7508650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7512917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cpu_dispatch.h 2025-06-01T21:33:48.7517299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cuda_dispatch.h 2025-06-01T21:33:48.7521334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta.h 2025-06-01T21:33:48.7525801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta_dispatch.h 2025-06-01T21:33:48.7530146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_native.h 2025-06-01T21:33:48.7534285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_ops.h 2025-06-01T21:33:48.7538383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split.h 2025-06-01T21:33:48.7542468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7546708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7550300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy.h 2025-06-01T21:33:48.7554822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7559014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7563278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_native.h 2025-06-01T21:33:48.7567647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_ops.h 2025-06-01T21:33:48.7571810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_native.h 2025-06-01T21:33:48.7575675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_ops.h 2025-06-01T21:33:48.7579628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes.h 2025-06-01T21:33:48.7583690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7587713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy.h 2025-06-01T21:33:48.7592516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7597026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7600934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h 2025-06-01T21:33:48.7606363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_native.h 2025-06-01T21:33:48.7612775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_ops.h 2025-06-01T21:33:48.7617923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_native.h 2025-06-01T21:33:48.7623456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_ops.h 2025-06-01T21:33:48.7628916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt.h 2025-06-01T21:33:48.7634031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7637875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cpu_dispatch.h 2025-06-01T21:33:48.7643269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cuda_dispatch.h 2025-06-01T21:33:48.7648731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta.h 2025-06-01T21:33:48.7653966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta_dispatch.h 2025-06-01T21:33:48.7659320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_native.h 2025-06-01T21:33:48.7664480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_ops.h 2025-06-01T21:33:48.7669697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square.h 2025-06-01T21:33:48.7674908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7678923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_native.h 2025-06-01T21:33:48.7683985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_ops.h 2025-06-01T21:33:48.7689497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze.h 2025-06-01T21:33:48.7694745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7700392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7705793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy.h 2025-06-01T21:33:48.7711184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7716300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7720360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_native.h 2025-06-01T21:33:48.7725746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_ops.h 2025-06-01T21:33:48.7731332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_native.h 2025-06-01T21:33:48.7736506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_ops.h 2025-06-01T21:33:48.7741641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm.h 2025-06-01T21:33:48.7747355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7752192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h 2025-06-01T21:33:48.7756016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h 2025-06-01T21:33:48.7761777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_native.h 2025-06-01T21:33:48.7767294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_ops.h 2025-06-01T21:33:48.7773120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack.h 2025-06-01T21:33:48.7778430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7783360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_native.h 2025-06-01T21:33:48.7788328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_ops.h 2025-06-01T21:33:48.7793610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std.h 2025-06-01T21:33:48.7797220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7803859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cpu_dispatch.h 2025-06-01T21:33:48.7808047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cuda_dispatch.h 2025-06-01T21:33:48.7811872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean.h 2025-06-01T21:33:48.7815883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7820185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7824453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cpu_dispatch.h 2025-06-01T21:33:48.7828409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cuda_dispatch.h 2025-06-01T21:33:48.7832743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_native.h 2025-06-01T21:33:48.7836857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_ops.h 2025-06-01T21:33:48.7840798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_native.h 2025-06-01T21:33:48.7844622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_ops.h 2025-06-01T21:33:48.7848171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft.h 2025-06-01T21:33:48.7851836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7857790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_native.h 2025-06-01T21:33:48.7861741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_ops.h 2025-06-01T21:33:48.7865251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride.h 2025-06-01T21:33:48.7870757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7874640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_native.h 2025-06-01T21:33:48.7884395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_ops.h 2025-06-01T21:33:48.7887664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub.h 2025-06-01T21:33:48.7892925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract.h 2025-06-01T21:33:48.7896560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7900322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_native.h 2025-06-01T21:33:48.7904161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_ops.h 2025-06-01T21:33:48.7908453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7912346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7916125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cpu_dispatch.h 2025-06-01T21:33:48.7920344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cuda_dispatch.h 2025-06-01T21:33:48.7923890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta.h 2025-06-01T21:33:48.7927484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta_dispatch.h 2025-06-01T21:33:48.7931113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_native.h 2025-06-01T21:33:48.7934759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_ops.h 2025-06-01T21:33:48.7938154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum.h 2025-06-01T21:33:48.7941932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.7946777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.7950554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7954185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cpu_dispatch.h 2025-06-01T21:33:48.7970288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cuda_dispatch.h 2025-06-01T21:33:48.7970712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta.h 2025-06-01T21:33:48.7970959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta_dispatch.h 2025-06-01T21:33:48.7971178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_native.h 2025-06-01T21:33:48.7974104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_ops.h 2025-06-01T21:33:48.7977515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size.h 2025-06-01T21:33:48.7981676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.7985449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_native.h 2025-06-01T21:33:48.7989134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_ops.h 2025-06-01T21:33:48.7992870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd.h 2025-06-01T21:33:48.7996474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8000476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_native.h 2025-06-01T21:33:48.8004115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_ops.h 2025-06-01T21:33:48.8007477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes.h 2025-06-01T21:33:48.8011008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8014646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_native.h 2025-06-01T21:33:48.8018293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_ops.h 2025-06-01T21:33:48.8022263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims.h 2025-06-01T21:33:48.8026012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8029774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_native.h 2025-06-01T21:33:48.8033360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_ops.h 2025-06-01T21:33:48.8037267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range.h 2025-06-01T21:33:48.8042011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8046025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size.h 2025-06-01T21:33:48.8050397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8055392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_native.h 2025-06-01T21:33:48.8059447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h 2025-06-01T21:33:48.8063528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_native.h 2025-06-01T21:33:48.8067518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_ops.h 2025-06-01T21:33:48.8071842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel.h 2025-06-01T21:33:48.8076311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8080761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_native.h 2025-06-01T21:33:48.8084084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_ops.h 2025-06-01T21:33:48.8087970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size.h 2025-06-01T21:33:48.8091716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8095418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_native.h 2025-06-01T21:33:48.8100195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_ops.h 2025-06-01T21:33:48.8103965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset.h 2025-06-01T21:33:48.8107863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8111995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_native.h 2025-06-01T21:33:48.8115938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_ops.h 2025-06-01T21:33:48.8122496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride.h 2025-06-01T21:33:48.8129251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8136177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_native.h 2025-06-01T21:33:48.8140511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_ops.h 2025-06-01T21:33:48.8144445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t.h 2025-06-01T21:33:48.8148466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take.h 2025-06-01T21:33:48.8153386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim.h 2025-06-01T21:33:48.8157964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8162726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_native.h 2025-06-01T21:33:48.8167077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_ops.h 2025-06-01T21:33:48.8172392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cpu_dispatch.h 2025-06-01T21:33:48.8175730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cuda_dispatch.h 2025-06-01T21:33:48.8181018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_native.h 2025-06-01T21:33:48.8185920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_ops.h 2025-06-01T21:33:48.8191186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan.h 2025-06-01T21:33:48.8195783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh.h 2025-06-01T21:33:48.8199692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward.h 2025-06-01T21:33:48.8204876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8209338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h 2025-06-01T21:33:48.8213314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h 2025-06-01T21:33:48.8216786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta.h 2025-06-01T21:33:48.8220924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta_dispatch.h 2025-06-01T21:33:48.8224882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_native.h 2025-06-01T21:33:48.8228449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_ops.h 2025-06-01T21:33:48.8232963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8237019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cpu_dispatch.h 2025-06-01T21:33:48.8240406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cuda_dispatch.h 2025-06-01T21:33:48.8244153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta.h 2025-06-01T21:33:48.8248223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta_dispatch.h 2025-06-01T21:33:48.8251726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_native.h 2025-06-01T21:33:48.8256055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_ops.h 2025-06-01T21:33:48.8260037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8263652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cpu_dispatch.h 2025-06-01T21:33:48.8267854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cuda_dispatch.h 2025-06-01T21:33:48.8271506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta.h 2025-06-01T21:33:48.8274919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta_dispatch.h 2025-06-01T21:33:48.8279094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_native.h 2025-06-01T21:33:48.8282821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_ops.h 2025-06-01T21:33:48.8286410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor.h 2025-06-01T21:33:48.8290280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot.h 2025-06-01T21:33:48.8294680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8299033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_native.h 2025-06-01T21:33:48.8302664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_ops.h 2025-06-01T21:33:48.8306538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split.h 2025-06-01T21:33:48.8311059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8314792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_native.h 2025-06-01T21:33:48.8318855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_ops.h 2025-06-01T21:33:48.8322669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d.h 2025-06-01T21:33:48.8326676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8330389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_native.h 2025-06-01T21:33:48.8334363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_ops.h 2025-06-01T21:33:48.8338119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold.h 2025-06-01T21:33:48.8358130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward.h 2025-06-01T21:33:48.8362166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8367939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h 2025-06-01T21:33:48.8371960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h 2025-06-01T21:33:48.8375757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta.h 2025-06-01T21:33:48.8379680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta_dispatch.h 2025-06-01T21:33:48.8385386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_native.h 2025-06-01T21:33:48.8389470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_ops.h 2025-06-01T21:33:48.8393859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8397483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cpu_dispatch.h 2025-06-01T21:33:48.8401263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cuda_dispatch.h 2025-06-01T21:33:48.8404984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta.h 2025-06-01T21:33:48.8408776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta_dispatch.h 2025-06-01T21:33:48.8415016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_native.h 2025-06-01T21:33:48.8419040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_ops.h 2025-06-01T21:33:48.8422766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile.h 2025-06-01T21:33:48.8426872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8430514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_native.h 2025-06-01T21:33:48.8434139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_ops.h 2025-06-01T21:33:48.8437721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to.h 2025-06-01T21:33:48.8441142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk.h 2025-06-01T21:33:48.8445042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8448856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cpu_dispatch.h 2025-06-01T21:33:48.8452622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cuda_dispatch.h 2025-06-01T21:33:48.8456336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta.h 2025-06-01T21:33:48.8460157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta_dispatch.h 2025-06-01T21:33:48.8463834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_native.h 2025-06-01T21:33:48.8468554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_ops.h 2025-06-01T21:33:48.8472139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8476327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense.h 2025-06-01T21:33:48.8479898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward.h 2025-06-01T21:33:48.8483802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8501512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_native.h 2025-06-01T21:33:48.8505181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_ops.h 2025-06-01T21:33:48.8508965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8512754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_native.h 2025-06-01T21:33:48.8516661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_ops.h 2025-06-01T21:33:48.8520340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn.h 2025-06-01T21:33:48.8524023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward.h 2025-06-01T21:33:48.8527919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8531710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_native.h 2025-06-01T21:33:48.8535462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_ops.h 2025-06-01T21:33:48.8539988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8544097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h 2025-06-01T21:33:48.8548249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_native.h 2025-06-01T21:33:48.8551985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_ops.h 2025-06-01T21:33:48.8555623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_native.h 2025-06-01T21:33:48.8559216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_ops.h 2025-06-01T21:33:48.8563014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor.h 2025-06-01T21:33:48.8566883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8571163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_native.h 2025-06-01T21:33:48.8574947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_ops.h 2025-06-01T21:33:48.8578801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse.h 2025-06-01T21:33:48.8582615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc.h 2025-06-01T21:33:48.8586753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8590522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_native.h 2025-06-01T21:33:48.8594287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_ops.h 2025-06-01T21:33:48.8598262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr.h 2025-06-01T21:33:48.8602961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8606758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_native.h 2025-06-01T21:33:48.8610516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_ops.h 2025-06-01T21:33:48.8614919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8618819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc.h 2025-06-01T21:33:48.8624261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8629613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_native.h 2025-06-01T21:33:48.8635509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_ops.h 2025-06-01T21:33:48.8640573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr.h 2025-06-01T21:33:48.8644747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8650043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_native.h 2025-06-01T21:33:48.8655234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_ops.h 2025-06-01T21:33:48.8660517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_native.h 2025-06-01T21:33:48.8666470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_ops.h 2025-06-01T21:33:48.8671697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace.h 2025-06-01T21:33:48.8676522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward.h 2025-06-01T21:33:48.8682010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8686801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_native.h 2025-06-01T21:33:48.8691219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_ops.h 2025-06-01T21:33:48.8696687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8702054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cpu_dispatch.h 2025-06-01T21:33:48.8707250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cuda_dispatch.h 2025-06-01T21:33:48.8712842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_native.h 2025-06-01T21:33:48.8717997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_ops.h 2025-06-01T21:33:48.8723085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose.h 2025-06-01T21:33:48.8727102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8732280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8737619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy.h 2025-06-01T21:33:48.8743109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8748907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8754076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_native.h 2025-06-01T21:33:48.8759210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_ops.h 2025-06-01T21:33:48.8764701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_native.h 2025-06-01T21:33:48.8768413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_ops.h 2025-06-01T21:33:48.8773868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid.h 2025-06-01T21:33:48.8779203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8784745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_native.h 2025-06-01T21:33:48.8789967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_ops.h 2025-06-01T21:33:48.8795093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz.h 2025-06-01T21:33:48.8800190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8805722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_native.h 2025-06-01T21:33:48.8811248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_ops.h 2025-06-01T21:33:48.8815630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve.h 2025-06-01T21:33:48.8819736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8823371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h 2025-06-01T21:33:48.8827512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h 2025-06-01T21:33:48.8831748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta.h 2025-06-01T21:33:48.8835530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta_dispatch.h 2025-06-01T21:33:48.8840056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_native.h 2025-06-01T21:33:48.8844451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_ops.h 2025-06-01T21:33:48.8848223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril.h 2025-06-01T21:33:48.8851881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8855457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cpu_dispatch.h 2025-06-01T21:33:48.8859609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cuda_dispatch.h 2025-06-01T21:33:48.8863670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices.h 2025-06-01T21:33:48.8870019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8873814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cpu_dispatch.h 2025-06-01T21:33:48.8879389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cuda_dispatch.h 2025-06-01T21:33:48.8883451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_native.h 2025-06-01T21:33:48.8887399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_ops.h 2025-06-01T21:33:48.8891062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta.h 2025-06-01T21:33:48.8896520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta_dispatch.h 2025-06-01T21:33:48.8900399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_native.h 2025-06-01T21:33:48.8904662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_ops.h 2025-06-01T21:33:48.8908150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss.h 2025-06-01T21:33:48.8912140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8915902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_native.h 2025-06-01T21:33:48.8920030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_ops.h 2025-06-01T21:33:48.8925159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu.h 2025-06-01T21:33:48.8929136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.8932901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cpu_dispatch.h 2025-06-01T21:33:48.8936622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cuda_dispatch.h 2025-06-01T21:33:48.8940554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices.h 2025-06-01T21:33:48.8944357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.8948091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cpu_dispatch.h 2025-06-01T21:33:48.8951902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cuda_dispatch.h 2025-06-01T21:33:48.8955677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_native.h 2025-06-01T21:33:48.8959719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_ops.h 2025-06-01T21:33:48.8963613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta.h 2025-06-01T21:33:48.8967341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta_dispatch.h 2025-06-01T21:33:48.8971952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_native.h 2025-06-01T21:33:48.8975672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_ops.h 2025-06-01T21:33:48.8979294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide.h 2025-06-01T21:33:48.8983166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.8987245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_native.h 2025-06-01T21:33:48.8990919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_ops.h 2025-06-01T21:33:48.8994702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc.h 2025-06-01T21:33:48.8998970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9002934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cpu_dispatch.h 2025-06-01T21:33:48.9006486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cuda_dispatch.h 2025-06-01T21:33:48.9010252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta.h 2025-06-01T21:33:48.9014330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta_dispatch.h 2025-06-01T21:33:48.9018435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_native.h 2025-06-01T21:33:48.9022252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_ops.h 2025-06-01T21:33:48.9026005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as.h 2025-06-01T21:33:48.9029618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9034325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_native.h 2025-06-01T21:33:48.9037972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_ops.h 2025-06-01T21:33:48.9041874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9046226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy.h 2025-06-01T21:33:48.9050102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9053794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9057391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_native.h 2025-06-01T21:33:48.9061538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_ops.h 2025-06-01T21:33:48.9065263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_native.h 2025-06-01T21:33:48.9068643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_ops.h 2025-06-01T21:33:48.9072103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind.h 2025-06-01T21:33:48.9075651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9079617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9083587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy.h 2025-06-01T21:33:48.9087943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9091820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9095607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_native.h 2025-06-01T21:33:48.9099544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_ops.h 2025-06-01T21:33:48.9103598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_native.h 2025-06-01T21:33:48.9107359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_ops.h 2025-06-01T21:33:48.9111201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten.h 2025-06-01T21:33:48.9115036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9118876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors.h 2025-06-01T21:33:48.9122790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9127962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_native.h 2025-06-01T21:33:48.9132193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_ops.h 2025-06-01T21:33:48.9137929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_native.h 2025-06-01T21:33:48.9143558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_ops.h 2025-06-01T21:33:48.9148664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold.h 2025-06-01T21:33:48.9153813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward.h 2025-06-01T21:33:48.9159002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9164143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h 2025-06-01T21:33:48.9169630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h 2025-06-01T21:33:48.9173558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_native.h 2025-06-01T21:33:48.9178863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_ops.h 2025-06-01T21:33:48.9183997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy.h 2025-06-01T21:33:48.9189548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9194777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9200101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_native.h 2025-06-01T21:33:48.9205299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_ops.h 2025-06-01T21:33:48.9211076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cpu_dispatch.h 2025-06-01T21:33:48.9215088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cuda_dispatch.h 2025-06-01T21:33:48.9220374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_meta_dispatch.h 2025-06-01T21:33:48.9225463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_native.h 2025-06-01T21:33:48.9230715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_ops.h 2025-06-01T21:33:48.9236211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform.h 2025-06-01T21:33:48.9241437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9246686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cpu_dispatch.h 2025-06-01T21:33:48.9250509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cuda_dispatch.h 2025-06-01T21:33:48.9255605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_meta_dispatch.h 2025-06-01T21:33:48.9260826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_native.h 2025-06-01T21:33:48.9265919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_ops.h 2025-06-01T21:33:48.9271231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive.h 2025-06-01T21:33:48.9276524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9282405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h 2025-06-01T21:33:48.9287742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h 2025-06-01T21:33:48.9292035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_native.h 2025-06-01T21:33:48.9297206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_ops.h 2025-06-01T21:33:48.9302481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim.h 2025-06-01T21:33:48.9307777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9313338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive.h 2025-06-01T21:33:48.9334081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9339612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h 2025-06-01T21:33:48.9345244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h 2025-06-01T21:33:48.9350886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_native.h 2025-06-01T21:33:48.9354972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_ops.h 2025-06-01T21:33:48.9360806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cpu_dispatch.h 2025-06-01T21:33:48.9364931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cuda_dispatch.h 2025-06-01T21:33:48.9370520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_native.h 2025-06-01T21:33:48.9374414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_ops.h 2025-06-01T21:33:48.9378319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk.h 2025-06-01T21:33:48.9382312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9387929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_native.h 2025-06-01T21:33:48.9391925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_ops.h 2025-06-01T21:33:48.9396092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split.h 2025-06-01T21:33:48.9400011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9403822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_native.h 2025-06-01T21:33:48.9407881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_ops.h 2025-06-01T21:33:48.9411777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes.h 2025-06-01T21:33:48.9417177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9422215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_native.h 2025-06-01T21:33:48.9426957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h 2025-06-01T21:33:48.9430741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze.h 2025-06-01T21:33:48.9434834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9438505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy.h 2025-06-01T21:33:48.9442485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9446580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9450411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_native.h 2025-06-01T21:33:48.9454265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_ops.h 2025-06-01T21:33:48.9458286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_native.h 2025-06-01T21:33:48.9462221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_ops.h 2025-06-01T21:33:48.9466029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d.h 2025-06-01T21:33:48.9470399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward.h 2025-06-01T21:33:48.9474891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9480021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h 2025-06-01T21:33:48.9485464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h 2025-06-01T21:33:48.9489770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h 2025-06-01T21:33:48.9493873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h 2025-06-01T21:33:48.9498127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h 2025-06-01T21:33:48.9502216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h 2025-06-01T21:33:48.9506697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9510964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9514787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h 2025-06-01T21:33:48.9518846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h 2025-06-01T21:33:48.9523198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta.h 2025-06-01T21:33:48.9527155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h 2025-06-01T21:33:48.9531412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_native.h 2025-06-01T21:33:48.9535313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_ops.h 2025-06-01T21:33:48.9539353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d.h 2025-06-01T21:33:48.9543914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward.h 2025-06-01T21:33:48.9548200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9551960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h 2025-06-01T21:33:48.9555911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h 2025-06-01T21:33:48.9559742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h 2025-06-01T21:33:48.9563645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h 2025-06-01T21:33:48.9567729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h 2025-06-01T21:33:48.9571597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h 2025-06-01T21:33:48.9575713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9581385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9586771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9592222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h 2025-06-01T21:33:48.9597616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h 2025-06-01T21:33:48.9602796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta.h 2025-06-01T21:33:48.9608016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h 2025-06-01T21:33:48.9613771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_native.h 2025-06-01T21:33:48.9618706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_ops.h 2025-06-01T21:33:48.9622159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d.h 2025-06-01T21:33:48.9627527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward.h 2025-06-01T21:33:48.9631762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9635871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h 2025-06-01T21:33:48.9639830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h 2025-06-01T21:33:48.9644564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta.h 2025-06-01T21:33:48.9648774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h 2025-06-01T21:33:48.9652899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_native.h 2025-06-01T21:33:48.9675610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_ops.h 2025-06-01T21:33:48.9681020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9686371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9691908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h 2025-06-01T21:33:48.9697536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h 2025-06-01T21:33:48.9703280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta.h 2025-06-01T21:33:48.9708514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h 2025-06-01T21:33:48.9713900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_native.h 2025-06-01T21:33:48.9719073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_ops.h 2025-06-01T21:33:48.9723099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d.h 2025-06-01T21:33:48.9728776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward.h 2025-06-01T21:33:48.9734290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9739658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h 2025-06-01T21:33:48.9745082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h 2025-06-01T21:33:48.9750301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h 2025-06-01T21:33:48.9755610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h 2025-06-01T21:33:48.9761687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_native.h 2025-06-01T21:33:48.9766941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h 2025-06-01T21:33:48.9772411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9776570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9782097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h 2025-06-01T21:33:48.9789937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h 2025-06-01T21:33:48.9793955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta.h 2025-06-01T21:33:48.9799356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h 2025-06-01T21:33:48.9804842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_native.h 2025-06-01T21:33:48.9810084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_ops.h 2025-06-01T21:33:48.9815452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d.h 2025-06-01T21:33:48.9821308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward.h 2025-06-01T21:33:48.9829676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9840500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h 2025-06-01T21:33:48.9846174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h 2025-06-01T21:33:48.9852057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h 2025-06-01T21:33:48.9857687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h 2025-06-01T21:33:48.9862121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_native.h 2025-06-01T21:33:48.9867774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h 2025-06-01T21:33:48.9871896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9877638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:48.9881800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9886051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h 2025-06-01T21:33:48.9892183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h 2025-06-01T21:33:48.9896244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta.h 2025-06-01T21:33:48.9900286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h 2025-06-01T21:33:48.9904326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_native.h 2025-06-01T21:33:48.9908193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_ops.h 2025-06-01T21:33:48.9912413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d.h 2025-06-01T21:33:48.9916306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward.h 2025-06-01T21:33:48.9920423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9925785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h 2025-06-01T21:33:48.9930000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h 2025-06-01T21:33:48.9933998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h 2025-06-01T21:33:48.9938352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h 2025-06-01T21:33:48.9942462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_native.h 2025-06-01T21:33:48.9946535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h 2025-06-01T21:33:48.9950650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9954854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:48.9958976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h 2025-06-01T21:33:48.9962911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h 2025-06-01T21:33:48.9966759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta.h 2025-06-01T21:33:48.9970739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h 2025-06-01T21:33:48.9974655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_native.h 2025-06-01T21:33:48.9980449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_ops.h 2025-06-01T21:33:48.9984711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d.h 2025-06-01T21:33:48.9988701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward.h 2025-06-01T21:33:48.9993608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:48.9997740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h 2025-06-01T21:33:49.0002027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h 2025-06-01T21:33:49.0005956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h 2025-06-01T21:33:49.0010163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h 2025-06-01T21:33:49.0014103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h 2025-06-01T21:33:49.0018011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h 2025-06-01T21:33:49.0022301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.0026371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0030487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h 2025-06-01T21:33:49.0034457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h 2025-06-01T21:33:49.0038332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta.h 2025-06-01T21:33:49.0042593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h 2025-06-01T21:33:49.0046569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_native.h 2025-06-01T21:33:49.0050681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_ops.h 2025-06-01T21:33:49.0054813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values.h 2025-06-01T21:33:49.0058542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0062263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy.h 2025-06-01T21:33:49.0066323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.0070157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0074135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_native.h 2025-06-01T21:33:49.0079873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_ops.h 2025-06-01T21:33:49.0085124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_native.h 2025-06-01T21:33:49.0089211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_ops.h 2025-06-01T21:33:49.0094953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward.h 2025-06-01T21:33:49.0100422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0105698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_native.h 2025-06-01T21:33:49.0111368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h 2025-06-01T21:33:49.0116709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander.h 2025-06-01T21:33:49.0121681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0126715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_native.h 2025-06-01T21:33:49.0130959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_ops.h 2025-06-01T21:33:49.0136396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var.h 2025-06-01T21:33:49.0141449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0146449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cpu_dispatch.h 2025-06-01T21:33:49.0152098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cuda_dispatch.h 2025-06-01T21:33:49.0156554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean.h 2025-06-01T21:33:49.0160074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0164298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0168139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cpu_dispatch.h 2025-06-01T21:33:49.0172079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cuda_dispatch.h 2025-06-01T21:33:49.0176254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_native.h 2025-06-01T21:33:49.0180500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_ops.h 2025-06-01T21:33:49.0184178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_native.h 2025-06-01T21:33:49.0187626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_ops.h 2025-06-01T21:33:49.0191065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot.h 2025-06-01T21:33:49.0194661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0198467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cpu_dispatch.h 2025-06-01T21:33:49.0202466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cuda_dispatch.h 2025-06-01T21:33:49.0206314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_native.h 2025-06-01T21:33:49.0210346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_ops.h 2025-06-01T21:33:49.0214057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view.h 2025-06-01T21:33:49.0218031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as.h 2025-06-01T21:33:49.0221947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex.h 2025-06-01T21:33:49.0225764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy.h 2025-06-01T21:33:49.0229968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.0234207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0238057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_native.h 2025-06-01T21:33:49.0242071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_ops.h 2025-06-01T21:33:49.0245708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h 2025-06-01T21:33:49.0249684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h 2025-06-01T21:33:49.0255910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_meta_dispatch.h 2025-06-01T21:33:49.0262117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_native.h 2025-06-01T21:33:49.0267319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_ops.h 2025-06-01T21:33:49.0272825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0277076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_native.h 2025-06-01T21:33:49.0282128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_ops.h 2025-06-01T21:33:49.0287274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real.h 2025-06-01T21:33:49.0292407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy.h 2025-06-01T21:33:49.0297886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.0303610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0309046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_native.h 2025-06-01T21:33:49.0314511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_ops.h 2025-06-01T21:33:49.0318472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cpu_dispatch.h 2025-06-01T21:33:49.0323864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cuda_dispatch.h 2025-06-01T21:33:49.0345190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_meta_dispatch.h 2025-06-01T21:33:49.0351181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_native.h 2025-06-01T21:33:49.0357026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_ops.h 2025-06-01T21:33:49.0363238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0368583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy.h 2025-06-01T21:33:49.0372624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.0378287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0382241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_native.h 2025-06-01T21:33:49.0386075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_ops.h 2025-06-01T21:33:49.0390044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cpu_dispatch.h 2025-06-01T21:33:49.0395560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cuda_dispatch.h 2025-06-01T21:33:49.0399821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_meta_dispatch.h 2025-06-01T21:33:49.0403785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_native.h 2025-06-01T21:33:49.0407817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_ops.h 2025-06-01T21:33:49.0410948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit.h 2025-06-01T21:33:49.0414618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0418275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_native.h 2025-06-01T21:33:49.0422146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_ops.h 2025-06-01T21:33:49.0427561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack.h 2025-06-01T21:33:49.0431249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0434923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_native.h 2025-06-01T21:33:49.0438589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_ops.h 2025-06-01T21:33:49.0442530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where.h 2025-06-01T21:33:49.0446106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0449776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cpu_dispatch.h 2025-06-01T21:33:49.0453716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cuda_dispatch.h 2025-06-01T21:33:49.0457511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_native.h 2025-06-01T21:33:49.0461340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_ops.h 2025-06-01T21:33:49.0465002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy.h 2025-06-01T21:33:49.0468816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.0472690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0476855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cpu_dispatch.h 2025-06-01T21:33:49.0482876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cuda_dispatch.h 2025-06-01T21:33:49.0486864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta.h 2025-06-01T21:33:49.0490926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta_dispatch.h 2025-06-01T21:33:49.0494603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_native.h 2025-06-01T21:33:49.0499947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_ops.h 2025-06-01T21:33:49.0504378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor.h 2025-06-01T21:33:49.0508071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0511712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_native.h 2025-06-01T21:33:49.0515562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_ops.h 2025-06-01T21:33:49.0518964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero.h 2025-06-01T21:33:49.0522509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros.h 2025-06-01T21:33:49.0526200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0529836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like.h 2025-06-01T21:33:49.0533779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0537788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-06-01T21:33:49.0541921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_native.h 2025-06-01T21:33:49.0545738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_ops.h 2025-06-01T21:33:49.0550375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_native.h 2025-06-01T21:33:49.0553504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_ops.h 2025-06-01T21:33:49.0557438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0561214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cpu_dispatch.h 2025-06-01T21:33:49.0564885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cuda_dispatch.h 2025-06-01T21:33:49.0568737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_meta_dispatch.h 2025-06-01T21:33:49.0572631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_native.h 2025-06-01T21:33:49.0576255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_ops.h 2025-06-01T21:33:49.0579817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d.h 2025-06-01T21:33:49.0585089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h 2025-06-01T21:33:49.0589134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0593744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h 2025-06-01T21:33:49.0598996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h 2025-06-01T21:33:49.0603233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h 2025-06-01T21:33:49.0607088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h 2025-06-01T21:33:49.0611087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0614984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h 2025-06-01T21:33:49.0619097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h 2025-06-01T21:33:49.0623144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h 2025-06-01T21:33:49.0627126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h 2025-06-01T21:33:49.0630897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d.h 2025-06-01T21:33:49.0634709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h 2025-06-01T21:33:49.0638859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0642825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-06-01T21:33:49.0646861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-06-01T21:33:49.0650775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h 2025-06-01T21:33:49.0654647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h 2025-06-01T21:33:49.0658747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0662864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h 2025-06-01T21:33:49.0667449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h 2025-06-01T21:33:49.0671467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h 2025-06-01T21:33:49.0675467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h 2025-06-01T21:33:49.0679569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation.h 2025-06-01T21:33:49.0683681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.0687940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h 2025-06-01T21:33:49.0691946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h 2025-06-01T21:33:49.0695831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta.h 2025-06-01T21:33:49.0699871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h 2025-06-01T21:33:49.0703725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_native.h 2025-06-01T21:33:49.0707646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_ops.h 2025-06-01T21:33:49.0711450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim.h 2025-06-01T21:33:49.0716820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0720895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_native.h 2025-06-01T21:33:49.0724720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_ops.h 2025-06-01T21:33:49.0728584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu.h 2025-06-01T21:33:49.0732557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0736829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_cpu_dispatch.h 2025-06-01T21:33:49.0741032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_meta_dispatch.h 2025-06-01T21:33:49.0744922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_native.h 2025-06-01T21:33:49.0748963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_ops.h 2025-06-01T21:33:49.0752836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax.h 2025-06-01T21:33:49.0763649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0764962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cpu_dispatch.h 2025-06-01T21:33:49.0768242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cuda_dispatch.h 2025-06-01T21:33:49.0771867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_native.h 2025-06-01T21:33:49.0775694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_ops.h 2025-06-01T21:33:49.0779877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h 2025-06-01T21:33:49.0785852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0789931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h 2025-06-01T21:33:49.0793861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h 2025-06-01T21:33:49.0799080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h 2025-06-01T21:33:49.0803291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h 2025-06-01T21:33:49.0807138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale.h 2025-06-01T21:33:49.0810972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0814907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h 2025-06-01T21:33:49.0818679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h 2025-06-01T21:33:49.0822630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h 2025-06-01T21:33:49.0826987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_native.h 2025-06-01T21:33:49.0830876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_ops.h 2025-06-01T21:33:49.0849246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async.h 2025-06-01T21:33:49.0853091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cpu_dispatch.h 2025-06-01T21:33:49.0856881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cuda_dispatch.h 2025-06-01T21:33:49.0860741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_native.h 2025-06-01T21:33:49.0864612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_ops.h 2025-06-01T21:33:49.0868958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar.h 2025-06-01T21:33:49.0873540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0877838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_native.h 2025-06-01T21:33:49.0881690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_ops.h 2025-06-01T21:33:49.0925404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata.h 2025-06-01T21:33:49.0931519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.0937099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h 2025-06-01T21:33:49.0943113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_native.h 2025-06-01T21:33:49.0948798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_ops.h 2025-06-01T21:33:49.0952949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision.h 2025-06-01T21:33:49.0956887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0962467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_native.h 2025-06-01T21:33:49.0966376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_ops.h 2025-06-01T21:33:49.0970436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision.h 2025-06-01T21:33:49.0975895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0980137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h 2025-06-01T21:33:49.0984066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h 2025-06-01T21:33:49.0988903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward.h 2025-06-01T21:33:49.0993150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.0996905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_native.h 2025-06-01T21:33:49.1000670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_ops.h 2025-06-01T21:33:49.1004454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index.h 2025-06-01T21:33:49.1008240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward.h 2025-06-01T21:33:49.1012359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1015962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h 2025-06-01T21:33:49.1020148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h 2025-06-01T21:33:49.1040234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1044046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_native.h 2025-06-01T21:33:49.1047934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_ops.h 2025-06-01T21:33:49.1052064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update.h 2025-06-01T21:33:49.1056408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1060379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_native.h 2025-06-01T21:33:49.1064274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_ops.h 2025-06-01T21:33:49.1068192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update.h 2025-06-01T21:33:49.1072356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1076964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h 2025-06-01T21:33:49.1081900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h 2025-06-01T21:33:49.1085743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_native.h 2025-06-01T21:33:49.1089608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_ops.h 2025-06-01T21:33:49.1093292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte.h 2025-06-01T21:33:49.1097133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1100940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_native.h 2025-06-01T21:33:49.1104805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_ops.h 2025-06-01T21:33:49.1108884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char.h 2025-06-01T21:33:49.1112861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1117275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_native.h 2025-06-01T21:33:49.1121174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_ops.h 2025-06-01T21:33:49.1124913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double.h 2025-06-01T21:33:49.1128815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1132692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_native.h 2025-06-01T21:33:49.1136684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_ops.h 2025-06-01T21:33:49.1140627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float.h 2025-06-01T21:33:49.1146208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1151363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_native.h 2025-06-01T21:33:49.1156860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_ops.h 2025-06-01T21:33:49.1161745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half.h 2025-06-01T21:33:49.1167169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1173087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_native.h 2025-06-01T21:33:49.1177372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_ops.h 2025-06-01T21:33:49.1182292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int.h 2025-06-01T21:33:49.1187625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1192825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_native.h 2025-06-01T21:33:49.1198397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_ops.h 2025-06-01T21:33:49.1203900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long.h 2025-06-01T21:33:49.1209278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1214638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_native.h 2025-06-01T21:33:49.1220303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_ops.h 2025-06-01T21:33:49.1224231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short.h 2025-06-01T21:33:49.1229787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1234791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_native.h 2025-06-01T21:33:49.1239930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_ops.h 2025-06-01T21:33:49.1245203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward.h 2025-06-01T21:33:49.1250639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1255819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h 2025-06-01T21:33:49.1261449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h 2025-06-01T21:33:49.1265504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_native.h 2025-06-01T21:33:49.1270756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_ops.h 2025-06-01T21:33:49.1276151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward.h 2025-06-01T21:33:49.1281485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1287089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h 2025-06-01T21:33:49.1292217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h 2025-06-01T21:33:49.1297453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_native.h 2025-06-01T21:33:49.1302735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_ops.h 2025-06-01T21:33:49.1306755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper.h 2025-06-01T21:33:49.1312124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1317421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h 2025-06-01T21:33:49.1322670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h 2025-06-01T21:33:49.1328059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_native.h 2025-06-01T21:33:49.1335595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_ops.h 2025-06-01T21:33:49.1354047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor.h 2025-06-01T21:33:49.1359432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1365169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h 2025-06-01T21:33:49.1370259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h 2025-06-01T21:33:49.1374197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat.h 2025-06-01T21:33:49.1379879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1383700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h 2025-06-01T21:33:49.1389448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_native.h 2025-06-01T21:33:49.1393926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_ops.h 2025-06-01T21:33:49.1399076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce.h 2025-06-01T21:33:49.1403048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced.h 2025-06-01T21:33:49.1406892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1410769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_meta_dispatch.h 2025-06-01T21:33:49.1414657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_native.h 2025-06-01T21:33:49.1418525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_ops.h 2025-06-01T21:33:49.1423557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1427557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_native.h 2025-06-01T21:33:49.1431527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_ops.h 2025-06-01T21:33:49.1437032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination.h 2025-06-01T21:33:49.1441329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h 2025-06-01T21:33:49.1445176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h 2025-06-01T21:33:49.1448943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_native.h 2025-06-01T21:33:49.1452977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_ops.h 2025-06-01T21:33:49.1456773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj.h 2025-06-01T21:33:49.1460629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1465022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy.h 2025-06-01T21:33:49.1469034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.1472891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1476978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_native.h 2025-06-01T21:33:49.1480847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_ops.h 2025-06-01T21:33:49.1484645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_native.h 2025-06-01T21:33:49.1488856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_ops.h 2025-06-01T21:33:49.1494470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical.h 2025-06-01T21:33:49.1498351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1502379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_native.h 2025-06-01T21:33:49.1506040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_ops.h 2025-06-01T21:33:49.1510170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h 2025-06-01T21:33:49.1514747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.1518588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h 2025-06-01T21:33:49.1522573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h 2025-06-01T21:33:49.1526448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h 2025-06-01T21:33:49.1531768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h 2025-06-01T21:33:49.1536233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h 2025-06-01T21:33:49.1540520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h 2025-06-01T21:33:49.1544543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h 2025-06-01T21:33:49.1549292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.1553613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h 2025-06-01T21:33:49.1557702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h 2025-06-01T21:33:49.1562119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h 2025-06-01T21:33:49.1566292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h 2025-06-01T21:33:49.1570299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h 2025-06-01T21:33:49.1574441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h 2025-06-01T21:33:49.1578400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack.h 2025-06-01T21:33:49.1582452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h 2025-06-01T21:33:49.1586516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h 2025-06-01T21:33:49.1590513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h 2025-06-01T21:33:49.1596189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h 2025-06-01T21:33:49.1601793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h 2025-06-01T21:33:49.1607231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h 2025-06-01T21:33:49.1613432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h 2025-06-01T21:33:49.1618865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution.h 2025-06-01T21:33:49.1624283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1629741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1635083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward.h 2025-06-01T21:33:49.1640650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1645702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_native.h 2025-06-01T21:33:49.1649883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_ops.h 2025-06-01T21:33:49.1655084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode.h 2025-06-01T21:33:49.1660857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.1699422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_native.h 2025-06-01T21:33:49.1705004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_ops.h 2025-06-01T21:33:49.1711226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_native.h 2025-06-01T21:33:49.1716956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_ops.h 2025-06-01T21:33:49.1722607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d.h 2025-06-01T21:33:49.1727102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h 2025-06-01T21:33:49.1732771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_native.h 2025-06-01T21:33:49.1736683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_ops.h 2025-06-01T21:33:49.1740608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from.h 2025-06-01T21:33:49.1744360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize.h 2025-06-01T21:33:49.1749995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1753896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_native.h 2025-06-01T21:33:49.1757849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_ops.h 2025-06-01T21:33:49.1762120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1767173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_native.h 2025-06-01T21:33:49.1770675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_ops.h 2025-06-01T21:33:49.1774606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress.h 2025-06-01T21:33:49.1779000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h 2025-06-01T21:33:49.1782496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_native.h 2025-06-01T21:33:49.1786197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_ops.h 2025-06-01T21:33:49.1790221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm.h 2025-06-01T21:33:49.1794283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h 2025-06-01T21:33:49.1798186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_native.h 2025-06-01T21:33:49.1802036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_ops.h 2025-06-01T21:33:49.1805808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search.h 2025-06-01T21:33:49.1810893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h 2025-06-01T21:33:49.1815751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h 2025-06-01T21:33:49.1820070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h 2025-06-01T21:33:49.1824279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss.h 2025-06-01T21:33:49.1828580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward.h 2025-06-01T21:33:49.1832596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1836452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h 2025-06-01T21:33:49.1840317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h 2025-06-01T21:33:49.1844255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_native.h 2025-06-01T21:33:49.1848383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_ops.h 2025-06-01T21:33:49.1852586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1856518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h 2025-06-01T21:33:49.1860677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h 2025-06-01T21:33:49.1864595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h 2025-06-01T21:33:49.1868379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_native.h 2025-06-01T21:33:49.1872161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_ops.h 2025-06-01T21:33:49.1876178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward.h 2025-06-01T21:33:49.1880066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h 2025-06-01T21:33:49.1883860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_native.h 2025-06-01T21:33:49.1887634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_ops.h 2025-06-01T21:33:49.1891579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss.h 2025-06-01T21:33:49.1895621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1900366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h 2025-06-01T21:33:49.1904361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_native.h 2025-06-01T21:33:49.1908724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h 2025-06-01T21:33:49.1912584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state.h 2025-06-01T21:33:49.1916632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1920603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h 2025-06-01T21:33:49.1924839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h 2025-06-01T21:33:49.1929234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h 2025-06-01T21:33:49.1933106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn.h 2025-06-01T21:33:49.1937026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward.h 2025-06-01T21:33:49.1941325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1945297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h 2025-06-01T21:33:49.1949634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_native.h 2025-06-01T21:33:49.1953793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h 2025-06-01T21:33:49.1957970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1961796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h 2025-06-01T21:33:49.1965652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h 2025-06-01T21:33:49.1969664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.1977797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h 2025-06-01T21:33:49.1988877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h 2025-06-01T21:33:49.1993853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h 2025-06-01T21:33:49.1999154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_native.h 2025-06-01T21:33:49.2005019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_ops.h 2025-06-01T21:33:49.2009972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache.h 2025-06-01T21:33:49.2014828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.2019473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h 2025-06-01T21:33:49.2025243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h 2025-06-01T21:33:49.2030672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h 2025-06-01T21:33:49.2036412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.2041651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h 2025-06-01T21:33:49.2046918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h 2025-06-01T21:33:49.2052767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size.h 2025-06-01T21:33:49.2058434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.2063895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h 2025-06-01T21:33:49.2068963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h 2025-06-01T21:33:49.2074153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h 2025-06-01T21:33:49.2078836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.2086440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h 2025-06-01T21:33:49.2091324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h 2025-06-01T21:33:49.2096094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper.h 2025-06-01T21:33:49.2101303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h 2025-06-01T21:33:49.2106511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h 2025-06-01T21:33:49.2111880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_native.h 2025-06-01T21:33:49.2117166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_ops.h 2025-06-01T21:33:49.2122375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper.h 2025-06-01T21:33:49.2127537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h 2025-06-01T21:33:49.2152357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h 2025-06-01T21:33:49.2157448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_native.h 2025-06-01T21:33:49.2162632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_ops.h 2025-06-01T21:33:49.2167318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap.h 2025-06-01T21:33:49.2172641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.2177742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_native.h 2025-06-01T21:33:49.2183025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h 2025-06-01T21:33:49.2188200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI.h 2025-06-01T21:33:49.2193260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_native.h 2025-06-01T21:33:49.2198206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_ops.h 2025-06-01T21:33:49.2202138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV.h 2025-06-01T21:33:49.2207658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_native.h 2025-06-01T21:33:49.2212723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_ops.h 2025-06-01T21:33:49.2218011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange.h 2025-06-01T21:33:49.2223333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.2228356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_native.h 2025-06-01T21:33:49.2233469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_ops.h 2025-06-01T21:33:49.2237344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad.h 2025-06-01T21:33:49.2242583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2247937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h 2025-06-01T21:33:49.2253133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h 2025-06-01T21:33:49.2258413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_native.h 2025-06-01T21:33:49.2262454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_ops.h 2025-06-01T21:33:49.2266399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h 2025-06-01T21:33:49.2271633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h 2025-06-01T21:33:49.2275762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h 2025-06-01T21:33:49.2279549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h 2025-06-01T21:33:49.2284754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h 2025-06-01T21:33:49.2288885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h 2025-06-01T21:33:49.2292747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h 2025-06-01T21:33:49.2296678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h 2025-06-01T21:33:49.2301193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor.h 2025-06-01T21:33:49.2305284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2308990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h 2025-06-01T21:33:49.2313074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h 2025-06-01T21:33:49.2318130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h 2025-06-01T21:33:49.2322073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_native.h 2025-06-01T21:33:49.2326718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_ops.h 2025-06-01T21:33:49.2330720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward.h 2025-06-01T21:33:49.2334714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h 2025-06-01T21:33:49.2338895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_native.h 2025-06-01T21:33:49.2342786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_ops.h 2025-06-01T21:33:49.2346663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward.h 2025-06-01T21:33:49.2350681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h 2025-06-01T21:33:49.2354637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_native.h 2025-06-01T21:33:49.2358570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_ops.h 2025-06-01T21:33:49.2362528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag.h 2025-06-01T21:33:49.2366330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward.h 2025-06-01T21:33:49.2375466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h 2025-06-01T21:33:49.2417335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h 2025-06-01T21:33:49.2423437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_native.h 2025-06-01T21:33:49.2428913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_ops.h 2025-06-01T21:33:49.2433242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2438956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h 2025-06-01T21:33:49.2444573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h 2025-06-01T21:33:49.2448966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward.h 2025-06-01T21:33:49.2454983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2459091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h 2025-06-01T21:33:49.2463073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h 2025-06-01T21:33:49.2468506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h 2025-06-01T21:33:49.2472635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h 2025-06-01T21:33:49.2477876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only.h 2025-06-01T21:33:49.2482085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2486011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h 2025-06-01T21:33:49.2489944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h 2025-06-01T21:33:49.2494911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_native.h 2025-06-01T21:33:49.2498914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h 2025-06-01T21:33:49.2503160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_native.h 2025-06-01T21:33:49.2507080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_ops.h 2025-06-01T21:33:49.2511076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h 2025-06-01T21:33:49.2515235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2519376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h 2025-06-01T21:33:49.2523623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h 2025-06-01T21:33:49.2527489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h 2025-06-01T21:33:49.2531475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h 2025-06-01T21:33:49.2535311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward.h 2025-06-01T21:33:49.2539570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.2543928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h 2025-06-01T21:33:49.2547842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h 2025-06-01T21:33:49.2551690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized.h 2025-06-01T21:33:49.2555718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2559567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h 2025-06-01T21:33:49.2563724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_native.h 2025-06-01T21:33:49.2569445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_ops.h 2025-06-01T21:33:49.2573159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h 2025-06-01T21:33:49.2577138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2581117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h 2025-06-01T21:33:49.2585111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h 2025-06-01T21:33:49.2589299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h 2025-06-01T21:33:49.2593157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist.h 2025-06-01T21:33:49.2597869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2601632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_native.h 2025-06-01T21:33:49.2605604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_ops.h 2025-06-01T21:33:49.2609632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h 2025-06-01T21:33:49.2613708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h 2025-06-01T21:33:49.2617845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h 2025-06-01T21:33:49.2621867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h 2025-06-01T21:33:49.2625906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h 2025-06-01T21:33:49.2630715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h 2025-06-01T21:33:49.2635042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2639052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h 2025-06-01T21:33:49.2643068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h 2025-06-01T21:33:49.2647567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h 2025-06-01T21:33:49.2653543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h 2025-06-01T21:33:49.2660326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h 2025-06-01T21:33:49.2665915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h 2025-06-01T21:33:49.2671480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h 2025-06-01T21:33:49.2677272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h 2025-06-01T21:33:49.2682688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h 2025-06-01T21:33:49.2688058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h 2025-06-01T21:33:49.2693528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2699085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h 2025-06-01T21:33:49.2703416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h 2025-06-01T21:33:49.2708872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h 2025-06-01T21:33:49.2714432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h 2025-06-01T21:33:49.2720177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h 2025-06-01T21:33:49.2725915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2731248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h 2025-06-01T21:33:49.2736730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h 2025-06-01T21:33:49.2742728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h 2025-06-01T21:33:49.2746943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h 2025-06-01T21:33:49.2751268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c.h 2025-06-01T21:33:49.2754509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h 2025-06-01T21:33:49.2759379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h 2025-06-01T21:33:49.2763689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_native.h 2025-06-01T21:33:49.2767338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_ops.h 2025-06-01T21:33:49.2771437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r.h 2025-06-01T21:33:49.2775026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h 2025-06-01T21:33:49.2779334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h 2025-06-01T21:33:49.2783219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_native.h 2025-06-01T21:33:49.2786919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_ops.h 2025-06-01T21:33:49.2790665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c.h 2025-06-01T21:33:49.2794319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h 2025-06-01T21:33:49.2798648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h 2025-06-01T21:33:49.2802455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_native.h 2025-06-01T21:33:49.2806832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_ops.h 2025-06-01T21:33:49.2810797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h 2025-06-01T21:33:49.2814588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h 2025-06-01T21:33:49.2818377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h 2025-06-01T21:33:49.2822304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h 2025-06-01T21:33:49.2826356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h 2025-06-01T21:33:49.2830294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward.h 2025-06-01T21:33:49.2834211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h 2025-06-01T21:33:49.2838660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_native.h 2025-06-01T21:33:49.2842543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_ops.h 2025-06-01T21:33:49.2847288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward.h 2025-06-01T21:33:49.2851306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h 2025-06-01T21:33:49.2855651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_native.h 2025-06-01T21:33:49.2859746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_ops.h 2025-06-01T21:33:49.2863876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar.h 2025-06-01T21:33:49.2867895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2871770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_cpu_dispatch.h 2025-06-01T21:33:49.2875694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_native.h 2025-06-01T21:33:49.2879463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_ops.h 2025-06-01T21:33:49.2883531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs.h 2025-06-01T21:33:49.2887517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2893437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h 2025-06-01T21:33:49.2898145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_native.h 2025-06-01T21:33:49.2902106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_ops.h 2025-06-01T21:33:49.2905949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos.h 2025-06-01T21:33:49.2911643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2916015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h 2025-06-01T21:33:49.2920226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_native.h 2025-06-01T21:33:49.2924051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_ops.h 2025-06-01T21:33:49.2927957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add.h 2025-06-01T21:33:49.2931863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv.h 2025-06-01T21:33:49.2935958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2940181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h 2025-06-01T21:33:49.2945495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_native.h 2025-06-01T21:33:49.2949551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_ops.h 2025-06-01T21:33:49.2953392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul.h 2025-06-01T21:33:49.2957347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2961228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h 2025-06-01T21:33:49.2965413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_native.h 2025-06-01T21:33:49.2969316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_ops.h 2025-06-01T21:33:49.2973505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2977998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h 2025-06-01T21:33:49.2981999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_native.h 2025-06-01T21:33:49.2986087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_ops.h 2025-06-01T21:33:49.2990030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin.h 2025-06-01T21:33:49.2994112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.2999667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h 2025-06-01T21:33:49.3005066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_native.h 2025-06-01T21:33:49.3010421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_ops.h 2025-06-01T21:33:49.3015746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan.h 2025-06-01T21:33:49.3019962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3025199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h 2025-06-01T21:33:49.3030740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_native.h 2025-06-01T21:33:49.3035944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_ops.h 2025-06-01T21:33:49.3041262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil.h 2025-06-01T21:33:49.3047356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3051947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h 2025-06-01T21:33:49.3057192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_native.h 2025-06-01T21:33:49.3061797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_ops.h 2025-06-01T21:33:49.3067275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max.h 2025-06-01T21:33:49.3072862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3078370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h 2025-06-01T21:33:49.3083759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_native.h 2025-06-01T21:33:49.3089068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_ops.h 2025-06-01T21:33:49.3094267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min.h 2025-06-01T21:33:49.3099746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3104970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h 2025-06-01T21:33:49.3110927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_native.h 2025-06-01T21:33:49.3116560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_ops.h 2025-06-01T21:33:49.3120621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy.h 2025-06-01T21:33:49.3126094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3131398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h 2025-06-01T21:33:49.3136748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_native.h 2025-06-01T21:33:49.3142292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_ops.h 2025-06-01T21:33:49.3147925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos.h 2025-06-01T21:33:49.3153079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh.h 2025-06-01T21:33:49.3158403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3163548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h 2025-06-01T21:33:49.3167615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_native.h 2025-06-01T21:33:49.3172827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_ops.h 2025-06-01T21:33:49.3178319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3183871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h 2025-06-01T21:33:49.3189141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_native.h 2025-06-01T21:33:49.3194412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_ops.h 2025-06-01T21:33:49.3199561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div.h 2025-06-01T21:33:49.3204849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3209022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h 2025-06-01T21:33:49.3214275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_native.h 2025-06-01T21:33:49.3220688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_ops.h 2025-06-01T21:33:49.3226435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf.h 2025-06-01T21:33:49.3230494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc.h 2025-06-01T21:33:49.3234666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3238812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h 2025-06-01T21:33:49.3242902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_native.h 2025-06-01T21:33:49.3247419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_ops.h 2025-06-01T21:33:49.3251703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3255713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h 2025-06-01T21:33:49.3259839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_native.h 2025-06-01T21:33:49.3263726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_ops.h 2025-06-01T21:33:49.3267611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp.h 2025-06-01T21:33:49.3271850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1.h 2025-06-01T21:33:49.3276069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3280401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h 2025-06-01T21:33:49.3284358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_native.h 2025-06-01T21:33:49.3288757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_ops.h 2025-06-01T21:33:49.3292974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3297172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h 2025-06-01T21:33:49.3301165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_native.h 2025-06-01T21:33:49.3305630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_ops.h 2025-06-01T21:33:49.3309618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor.h 2025-06-01T21:33:49.3313649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3317625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h 2025-06-01T21:33:49.3321736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_native.h 2025-06-01T21:33:49.3339106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_ops.h 2025-06-01T21:33:49.3339495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac.h 2025-06-01T21:33:49.3339878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3340181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h 2025-06-01T21:33:49.3342749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_native.h 2025-06-01T21:33:49.3346917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_ops.h 2025-06-01T21:33:49.3351575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp.h 2025-06-01T21:33:49.3356264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3375819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h 2025-06-01T21:33:49.3380086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_native.h 2025-06-01T21:33:49.3383750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_ops.h 2025-06-01T21:33:49.3387479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma.h 2025-06-01T21:33:49.3391505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3396911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h 2025-06-01T21:33:49.3401558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_native.h 2025-06-01T21:33:49.3407626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_ops.h 2025-06-01T21:33:49.3411813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log.h 2025-06-01T21:33:49.3415791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10.h 2025-06-01T21:33:49.3420166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3424485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h 2025-06-01T21:33:49.3428499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_native.h 2025-06-01T21:33:49.3432457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_ops.h 2025-06-01T21:33:49.3436268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p.h 2025-06-01T21:33:49.3440441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3444309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h 2025-06-01T21:33:49.3448215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_native.h 2025-06-01T21:33:49.3452186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_ops.h 2025-06-01T21:33:49.3455985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2.h 2025-06-01T21:33:49.3461501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3465407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h 2025-06-01T21:33:49.3469496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_native.h 2025-06-01T21:33:49.3473448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_ops.h 2025-06-01T21:33:49.3477634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3482047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h 2025-06-01T21:33:49.3485972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_native.h 2025-06-01T21:33:49.3491077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_ops.h 2025-06-01T21:33:49.3495211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max.h 2025-06-01T21:33:49.3499505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum.h 2025-06-01T21:33:49.3503213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3507059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h 2025-06-01T21:33:49.3510960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_native.h 2025-06-01T21:33:49.3514847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_ops.h 2025-06-01T21:33:49.3519101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3523110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h 2025-06-01T21:33:49.3526818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_native.h 2025-06-01T21:33:49.3530641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_ops.h 2025-06-01T21:33:49.3534393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum.h 2025-06-01T21:33:49.3538507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3542612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h 2025-06-01T21:33:49.3546658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_native.h 2025-06-01T21:33:49.3550547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_ops.h 2025-06-01T21:33:49.3554547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul.h 2025-06-01T21:33:49.3558481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3562565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h 2025-06-01T21:33:49.3567080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_native.h 2025-06-01T21:33:49.3570947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_ops.h 2025-06-01T21:33:49.3574707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg.h 2025-06-01T21:33:49.3579018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3588962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h 2025-06-01T21:33:49.3590171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_native.h 2025-06-01T21:33:49.3596842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_ops.h 2025-06-01T21:33:49.3602785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm.h 2025-06-01T21:33:49.3608856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3615002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h 2025-06-01T21:33:49.3621706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_native.h 2025-06-01T21:33:49.3627731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_ops.h 2025-06-01T21:33:49.3633826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow.h 2025-06-01T21:33:49.3640052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3646374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h 2025-06-01T21:33:49.3652492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_native.h 2025-06-01T21:33:49.3659219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_ops.h 2025-06-01T21:33:49.3665427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal.h 2025-06-01T21:33:49.3671157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3674949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h 2025-06-01T21:33:49.3678949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_native.h 2025-06-01T21:33:49.3683567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_ops.h 2025-06-01T21:33:49.3688058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round.h 2025-06-01T21:33:49.3692010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3696369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h 2025-06-01T21:33:49.3700439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_native.h 2025-06-01T21:33:49.3704729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_ops.h 2025-06-01T21:33:49.3708563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt.h 2025-06-01T21:33:49.3712520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3716576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h 2025-06-01T21:33:49.3720658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_native.h 2025-06-01T21:33:49.3724476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_ops.h 2025-06-01T21:33:49.3728687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid.h 2025-06-01T21:33:49.3732883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3736727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h 2025-06-01T21:33:49.3740722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_native.h 2025-06-01T21:33:49.3744929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_ops.h 2025-06-01T21:33:49.3749126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign.h 2025-06-01T21:33:49.3768047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3773475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h 2025-06-01T21:33:49.3778953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_native.h 2025-06-01T21:33:49.3784476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_ops.h 2025-06-01T21:33:49.3789819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin.h 2025-06-01T21:33:49.3795191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh.h 2025-06-01T21:33:49.3800789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3806148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h 2025-06-01T21:33:49.3811972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_native.h 2025-06-01T21:33:49.3816321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_ops.h 2025-06-01T21:33:49.3821775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3827090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h 2025-06-01T21:33:49.3832413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_native.h 2025-06-01T21:33:49.3837996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_ops.h 2025-06-01T21:33:49.3843159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt.h 2025-06-01T21:33:49.3875775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3881427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h 2025-06-01T21:33:49.3887202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_native.h 2025-06-01T21:33:49.3893150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_ops.h 2025-06-01T21:33:49.3897027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub.h 2025-06-01T21:33:49.3903484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3907460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h 2025-06-01T21:33:49.3913194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_native.h 2025-06-01T21:33:49.3917188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_ops.h 2025-06-01T21:33:49.3921165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan.h 2025-06-01T21:33:49.3926626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh.h 2025-06-01T21:33:49.3931135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3935345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h 2025-06-01T21:33:49.3939337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_native.h 2025-06-01T21:33:49.3943248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_ops.h 2025-06-01T21:33:49.3947339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3951208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h 2025-06-01T21:33:49.3955346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_native.h 2025-06-01T21:33:49.3961038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_ops.h 2025-06-01T21:33:49.3965156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc.h 2025-06-01T21:33:49.3969246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3973190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h 2025-06-01T21:33:49.3977067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_native.h 2025-06-01T21:33:49.3981091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_ops.h 2025-06-01T21:33:49.3985027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero.h 2025-06-01T21:33:49.3989046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.3993116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h 2025-06-01T21:33:49.3997030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_native.h 2025-06-01T21:33:49.4001060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_ops.h 2025-06-01T21:33:49.4006204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async.h 2025-06-01T21:33:49.4010129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h 2025-06-01T21:33:49.4014640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_native.h 2025-06-01T21:33:49.4018516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_ops.h 2025-06-01T21:33:49.4022653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar.h 2025-06-01T21:33:49.4026748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4030771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_native.h 2025-06-01T21:33:49.4034976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_ops.h 2025-06-01T21:33:49.4038771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range.h 2025-06-01T21:33:49.4042909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4047098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h 2025-06-01T21:33:49.4051350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4055509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h 2025-06-01T21:33:49.4059698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h 2025-06-01T21:33:49.4064072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_native.h 2025-06-01T21:33:49.4068023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h 2025-06-01T21:33:49.4071972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad.h 2025-06-01T21:33:49.4076144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4080115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h 2025-06-01T21:33:49.4083911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_native.h 2025-06-01T21:33:49.4087983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_ops.h 2025-06-01T21:33:49.4091890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam.h 2025-06-01T21:33:49.4096990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw.h 2025-06-01T21:33:49.4101204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4105687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h 2025-06-01T21:33:49.4109430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h 2025-06-01T21:33:49.4113810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_native.h 2025-06-01T21:33:49.4117638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_ops.h 2025-06-01T21:33:49.4121819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4126501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h 2025-06-01T21:33:49.4130540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h 2025-06-01T21:33:49.4134430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_native.h 2025-06-01T21:33:49.4138356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_ops.h 2025-06-01T21:33:49.4142708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout.h 2025-06-01T21:33:49.4146782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4150869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h 2025-06-01T21:33:49.4154806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_native.h 2025-06-01T21:33:49.4160101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_ops.h 2025-06-01T21:33:49.4164299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h 2025-06-01T21:33:49.4170083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4175217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h 2025-06-01T21:33:49.4180914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h 2025-06-01T21:33:49.4186389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h 2025-06-01T21:33:49.4191988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h 2025-06-01T21:33:49.4196868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm.h 2025-06-01T21:33:49.4202194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_native.h 2025-06-01T21:33:49.4207335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_ops.h 2025-06-01T21:33:49.4211969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice.h 2025-06-01T21:33:49.4217460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h 2025-06-01T21:33:49.4222975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h 2025-06-01T21:33:49.4228253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h 2025-06-01T21:33:49.4233555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_native.h 2025-06-01T21:33:49.4239589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_ops.h 2025-06-01T21:33:49.4245074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd.h 2025-06-01T21:33:49.4250588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4255817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h 2025-06-01T21:33:49.4261161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h 2025-06-01T21:33:49.4266442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_native.h 2025-06-01T21:33:49.4270446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_ops.h 2025-06-01T21:33:49.4275640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal.h 2025-06-01T21:33:49.4280819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4286175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy.h 2025-06-01T21:33:49.4291667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4296968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4302333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_native.h 2025-06-01T21:33:49.4307910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_ops.h 2025-06-01T21:33:49.4311964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_native.h 2025-06-01T21:33:49.4317329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_ops.h 2025-06-01T21:33:49.4322595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward.h 2025-06-01T21:33:49.4328087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.4333130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_native.h 2025-06-01T21:33:49.4338487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_ops.h 2025-06-01T21:33:49.4344379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h 2025-06-01T21:33:49.4349536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h 2025-06-01T21:33:49.4354151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.4377929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h 2025-06-01T21:33:49.4382099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h 2025-06-01T21:33:49.4390085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4394603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h 2025-06-01T21:33:49.4400605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h 2025-06-01T21:33:49.4404804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm.h 2025-06-01T21:33:49.4410402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h 2025-06-01T21:33:49.4414656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_native.h 2025-06-01T21:33:49.4418680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_ops.h 2025-06-01T21:33:49.4424792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h 2025-06-01T21:33:49.4428805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.4432836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h 2025-06-01T21:33:49.4436803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h 2025-06-01T21:33:49.4440717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel.h 2025-06-01T21:33:49.4444827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4449443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_native.h 2025-06-01T21:33:49.4454645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_ops.h 2025-06-01T21:33:49.4458908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges.h 2025-06-01T21:33:49.4462983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4466748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h 2025-06-01T21:33:49.4470772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_native.h 2025-06-01T21:33:49.4474890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h 2025-06-01T21:33:49.4479058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts.h 2025-06-01T21:33:49.4483628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4487681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h 2025-06-01T21:33:49.4492091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h 2025-06-01T21:33:49.4496114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h 2025-06-01T21:33:49.4500227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h 2025-06-01T21:33:49.4505525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4509622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h 2025-06-01T21:33:49.4514000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h 2025-06-01T21:33:49.4517957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h 2025-06-01T21:33:49.4521995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl.h 2025-06-01T21:33:49.4525969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4530890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h 2025-06-01T21:33:49.4534973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h 2025-06-01T21:33:49.4539024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h 2025-06-01T21:33:49.4542883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_native.h 2025-06-01T21:33:49.4546984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_ops.h 2025-06-01T21:33:49.4551625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices.h 2025-06-01T21:33:49.4555051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy.h 2025-06-01T21:33:49.4559317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4563550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4567296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_native.h 2025-06-01T21:33:49.4571173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_ops.h 2025-06-01T21:33:49.4575404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_native.h 2025-06-01T21:33:49.4580449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_ops.h 2025-06-01T21:33:49.4584271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm.h 2025-06-01T21:33:49.4588006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cpu_dispatch.h 2025-06-01T21:33:49.4591749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cuda_dispatch.h 2025-06-01T21:33:49.4595788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_native.h 2025-06-01T21:33:49.4600115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_ops.h 2025-06-01T21:33:49.4604132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true.h 2025-06-01T21:33:49.4626322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4630452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_native.h 2025-06-01T21:33:49.4634223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_ops.h 2025-06-01T21:33:49.4638194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true.h 2025-06-01T21:33:49.4642066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4646134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_native.h 2025-06-01T21:33:49.4649921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_ops.h 2025-06-01T21:33:49.4654417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor.h 2025-06-01T21:33:49.4658829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.4664223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_native.h 2025-06-01T21:33:49.4669266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_ops.h 2025-06-01T21:33:49.4674765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h 2025-06-01T21:33:49.4678870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h 2025-06-01T21:33:49.4684162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h 2025-06-01T21:33:49.4689779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h 2025-06-01T21:33:49.4695087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h 2025-06-01T21:33:49.4700599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone.h 2025-06-01T21:33:49.4706540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4711819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_native.h 2025-06-01T21:33:49.4717052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_ops.h 2025-06-01T21:33:49.4722420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors.h 2025-06-01T21:33:49.4727628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.4731816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_native.h 2025-06-01T21:33:49.4737246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_ops.h 2025-06-01T21:33:49.4743281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det.h 2025-06-01T21:33:49.4749176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4754834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h 2025-06-01T21:33:49.4761639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h 2025-06-01T21:33:49.4765362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta.h 2025-06-01T21:33:49.4769248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta_dispatch.h 2025-06-01T21:33:49.4773447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_native.h 2025-06-01T21:33:49.4777611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_ops.h 2025-06-01T21:33:49.4782186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh.h 2025-06-01T21:33:49.4787028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4791174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h 2025-06-01T21:33:49.4795114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h 2025-06-01T21:33:49.4799443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta.h 2025-06-01T21:33:49.4803671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h 2025-06-01T21:33:49.4808043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_native.h 2025-06-01T21:33:49.4812301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_ops.h 2025-06-01T21:33:49.4816132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals.h 2025-06-01T21:33:49.4820665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h 2025-06-01T21:33:49.4824613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h 2025-06-01T21:33:49.4828792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_native.h 2025-06-01T21:33:49.4832929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_ops.h 2025-06-01T21:33:49.4837271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet.h 2025-06-01T21:33:49.4841440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4845912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h 2025-06-01T21:33:49.4850187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h 2025-06-01T21:33:49.4853970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta.h 2025-06-01T21:33:49.4859753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h 2025-06-01T21:33:49.4863635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_native.h 2025-06-01T21:33:49.4868009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_ops.h 2025-06-01T21:33:49.4872293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex.h 2025-06-01T21:33:49.4877135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4881000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h 2025-06-01T21:33:49.4885047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h 2025-06-01T21:33:49.4889110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta.h 2025-06-01T21:33:49.4893174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h 2025-06-01T21:33:49.4897412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_native.h 2025-06-01T21:33:49.4901424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_ops.h 2025-06-01T21:33:49.4905609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd.h 2025-06-01T21:33:49.4909718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4914407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h 2025-06-01T21:33:49.4917953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h 2025-06-01T21:33:49.4921700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta.h 2025-06-01T21:33:49.4925460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h 2025-06-01T21:33:49.4929478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_native.h 2025-06-01T21:33:49.4933515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_ops.h 2025-06-01T21:33:49.4937433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense.h 2025-06-01T21:33:49.4941024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h 2025-06-01T21:33:49.4945040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h 2025-06-01T21:33:49.4948860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_native.h 2025-06-01T21:33:49.4952824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_ops.h 2025-06-01T21:33:49.4958010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp.h 2025-06-01T21:33:49.4963307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h 2025-06-01T21:33:49.4968108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h 2025-06-01T21:33:49.4971957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_native.h 2025-06-01T21:33:49.4976259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_ops.h 2025-06-01T21:33:49.4980347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax.h 2025-06-01T21:33:49.4984327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data.h 2025-06-01T21:33:49.4988642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.4992848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h 2025-06-01T21:33:49.4996931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h 2025-06-01T21:33:49.5000780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta.h 2025-06-01T21:33:49.5004976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h 2025-06-01T21:33:49.5009833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_native.h 2025-06-01T21:33:49.5014199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_ops.h 2025-06-01T21:33:49.5018354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.5022165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h 2025-06-01T21:33:49.5026063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h 2025-06-01T21:33:49.5030461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta.h 2025-06-01T21:33:49.5034412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta_dispatch.h 2025-06-01T21:33:49.5038640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_native.h 2025-06-01T21:33:49.5042530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_ops.h 2025-06-01T21:33:49.5046325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps.h 2025-06-01T21:33:49.5050580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5054397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_native.h 2025-06-01T21:33:49.5057996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_ops.h 2025-06-01T21:33:49.5062010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info.h 2025-06-01T21:33:49.5065971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.5070437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_native.h 2025-06-01T21:33:49.5074469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_ops.h 2025-06-01T21:33:49.5078862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token.h 2025-06-01T21:33:49.5082880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h 2025-06-01T21:33:49.5087030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_native.h 2025-06-01T21:33:49.5090785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_ops.h 2025-06-01T21:33:49.5094613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual.h 2025-06-01T21:33:49.5099006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5103330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy.h 2025-06-01T21:33:49.5107255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.5111183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5115040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_native.h 2025-06-01T21:33:49.5119010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_ops.h 2025-06-01T21:33:49.5122986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_native.h 2025-06-01T21:33:49.5126883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_ops.h 2025-06-01T21:33:49.5130824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h 2025-06-01T21:33:49.5134816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5139020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h 2025-06-01T21:33:49.5143137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h 2025-06-01T21:33:49.5147233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h 2025-06-01T21:33:49.5151192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h 2025-06-01T21:33:49.5155465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h 2025-06-01T21:33:49.5159637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5165302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h 2025-06-01T21:33:49.5170194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h 2025-06-01T21:33:49.5174224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h 2025-06-01T21:33:49.5178732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h 2025-06-01T21:33:49.5182667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale.h 2025-06-01T21:33:49.5186958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5191009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h 2025-06-01T21:33:49.5195483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_native.h 2025-06-01T21:33:49.5199506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_ops.h 2025-06-01T21:33:49.5203564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax.h 2025-06-01T21:33:49.5207751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward.h 2025-06-01T21:33:49.5212078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5215946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h 2025-06-01T21:33:49.5220073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h 2025-06-01T21:33:49.5223959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_native.h 2025-06-01T21:33:49.5228022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_ops.h 2025-06-01T21:33:49.5232736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5236503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h 2025-06-01T21:33:49.5240444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h 2025-06-01T21:33:49.5244781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_native.h 2025-06-01T21:33:49.5248658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_ops.h 2025-06-01T21:33:49.5252703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear.h 2025-06-01T21:33:49.5256497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h 2025-06-01T21:33:49.5260664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_native.h 2025-06-01T21:33:49.5264505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h 2025-06-01T21:33:49.5270044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape.h 2025-06-01T21:33:49.5276564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5281960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_native.h 2025-06-01T21:33:49.5287482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_ops.h 2025-06-01T21:33:49.5292859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose.h 2025-06-01T21:33:49.5298405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5303592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h 2025-06-01T21:33:49.5308930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_native.h 2025-06-01T21:33:49.5314613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_ops.h 2025-06-01T21:33:49.5320104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution.h 2025-06-01T21:33:49.5325023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5329239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_native.h 2025-06-01T21:33:49.5334402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_ops.h 2025-06-01T21:33:49.5340136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose.h 2025-06-01T21:33:49.5346067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5351278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_native.h 2025-06-01T21:33:49.5390742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_ops.h 2025-06-01T21:33:49.5396471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit.h 2025-06-01T21:33:49.5401859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5407482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h 2025-06-01T21:33:49.5411782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h 2025-06-01T21:33:49.5417464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_native.h 2025-06-01T21:33:49.5421631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h 2025-06-01T21:33:49.5427914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5431891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h 2025-06-01T21:33:49.5436704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h 2025-06-01T21:33:49.5442700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_ops.h 2025-06-01T21:33:49.5446735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention.h 2025-06-01T21:33:49.5451290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5455254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h 2025-06-01T21:33:49.5459909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h 2025-06-01T21:33:49.5463985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_native.h 2025-06-01T21:33:49.5468190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_ops.h 2025-06-01T21:33:49.5473617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view.h 2025-06-01T21:33:49.5477706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5481479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy.h 2025-06-01T21:33:49.5485639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.5489723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5493687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_native.h 2025-06-01T21:33:49.5497789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_ops.h 2025-06-01T21:33:49.5501842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_native.h 2025-06-01T21:33:49.5505724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_ops.h 2025-06-01T21:33:49.5509661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h 2025-06-01T21:33:49.5515203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h 2025-06-01T21:33:49.5519165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h 2025-06-01T21:33:49.5523146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h 2025-06-01T21:33:49.5528145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h 2025-06-01T21:33:49.5532601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded.h 2025-06-01T21:33:49.5537390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h 2025-06-01T21:33:49.5541902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5545965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h 2025-06-01T21:33:49.5550238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h 2025-06-01T21:33:49.5554247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5559653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h 2025-06-01T21:33:49.5562669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h 2025-06-01T21:33:49.5566530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_native.h 2025-06-01T21:33:49.5570396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_ops.h 2025-06-01T21:33:49.5574429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor.h 2025-06-01T21:33:49.5578723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_native.h 2025-06-01T21:33:49.5582790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h 2025-06-01T21:33:49.5586949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy.h 2025-06-01T21:33:49.5590908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h 2025-06-01T21:33:49.5594869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h 2025-06-01T21:33:49.5598839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths.h 2025-06-01T21:33:49.5602791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_native.h 2025-06-01T21:33:49.5606641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_ops.h 2025-06-01T21:33:49.5611091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen.h 2025-06-01T21:33:49.5615601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_native.h 2025-06-01T21:33:49.5619605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h 2025-06-01T21:33:49.5623485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen.h 2025-06-01T21:33:49.5627902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_native.h 2025-06-01T21:33:49.5634008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h 2025-06-01T21:33:49.5639267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets.h 2025-06-01T21:33:49.5645895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_native.h 2025-06-01T21:33:49.5653903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_ops.h 2025-06-01T21:33:49.5658297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx.h 2025-06-01T21:33:49.5663554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_native.h 2025-06-01T21:33:49.5668781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h 2025-06-01T21:33:49.5673940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values.h 2025-06-01T21:33:49.5679530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy.h 2025-06-01T21:33:49.5684957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.5690343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5695694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_native.h 2025-06-01T21:33:49.5701090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_ops.h 2025-06-01T21:33:49.5705629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_native.h 2025-06-01T21:33:49.5710745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_ops.h 2025-06-01T21:33:49.5716327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward.h 2025-06-01T21:33:49.5721611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_native.h 2025-06-01T21:33:49.5727067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_ops.h 2025-06-01T21:33:49.5732268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward.h 2025-06-01T21:33:49.5737745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_native.h 2025-06-01T21:33:49.5743406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_ops.h 2025-06-01T21:33:49.5748869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask.h 2025-06-01T21:33:49.5754698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5760069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h 2025-06-01T21:33:49.5765857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h 2025-06-01T21:33:49.5769994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h 2025-06-01T21:33:49.5775452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h 2025-06-01T21:33:49.5781766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h 2025-06-01T21:33:49.5787358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h 2025-06-01T21:33:49.5792771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h 2025-06-01T21:33:49.5798020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_native.h 2025-06-01T21:33:49.5803243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h 2025-06-01T21:33:49.5808677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h 2025-06-01T21:33:49.5814523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5820025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h 2025-06-01T21:33:49.5825511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h 2025-06-01T21:33:49.5846790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size.h 2025-06-01T21:33:49.5852510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5858045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_native.h 2025-06-01T21:33:49.5873762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_ops.h 2025-06-01T21:33:49.5879420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h 2025-06-01T21:33:49.5885526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h 2025-06-01T21:33:49.5891319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h 2025-06-01T21:33:49.5897176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets.h 2025-06-01T21:33:49.5901738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5907649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h 2025-06-01T21:33:49.5911894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h 2025-06-01T21:33:49.5915671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides.h 2025-06-01T21:33:49.5919883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5925866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_native.h 2025-06-01T21:33:49.5930466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_ops.h 2025-06-01T21:33:49.5934360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer.h 2025-06-01T21:33:49.5938359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy.h 2025-06-01T21:33:49.5942778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.5946943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5951229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h 2025-06-01T21:33:49.5957032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h 2025-06-01T21:33:49.5961125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h 2025-06-01T21:33:49.5965114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h 2025-06-01T21:33:49.5969119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_native.h 2025-06-01T21:33:49.5973406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_ops.h 2025-06-01T21:33:49.5977930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged.h 2025-06-01T21:33:49.5981867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy.h 2025-06-01T21:33:49.5986403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.5990634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.5994923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h 2025-06-01T21:33:49.5998897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h 2025-06-01T21:33:49.6003247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_native.h 2025-06-01T21:33:49.6006828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_ops.h 2025-06-01T21:33:49.6012477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h 2025-06-01T21:33:49.6017740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6022016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h 2025-06-01T21:33:49.6026388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h 2025-06-01T21:33:49.6030894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available.h 2025-06-01T21:33:49.6035040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6038924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_native.h 2025-06-01T21:33:49.6043949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_ops.h 2025-06-01T21:33:49.6048320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution.h 2025-06-01T21:33:49.6052334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6057295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h 2025-06-01T21:33:49.6061714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h 2025-06-01T21:33:49.6065709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz.h 2025-06-01T21:33:49.6069310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_native.h 2025-06-01T21:33:49.6073339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_ops.h 2025-06-01T21:33:49.6076973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence.h 2025-06-01T21:33:49.6081360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward.h 2025-06-01T21:33:49.6086649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6090016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h 2025-06-01T21:33:49.6094181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h 2025-06-01T21:33:49.6099335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6103315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_native.h 2025-06-01T21:33:49.6107763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_ops.h 2025-06-01T21:33:49.6112134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h 2025-06-01T21:33:49.6116025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h 2025-06-01T21:33:49.6119911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h 2025-06-01T21:33:49.6123952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h 2025-06-01T21:33:49.6128367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h 2025-06-01T21:33:49.6132397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular.h 2025-06-01T21:33:49.6136307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6140287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_native.h 2025-06-01T21:33:49.6144275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_ops.h 2025-06-01T21:33:49.6148179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum.h 2025-06-01T21:33:49.6152087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6155827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_native.h 2025-06-01T21:33:49.6160010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_ops.h 2025-06-01T21:33:49.6164151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence.h 2025-06-01T21:33:49.6168126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6173528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_native.h 2025-06-01T21:33:49.6178011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_ops.h 2025-06-01T21:33:49.6182157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward.h 2025-06-01T21:33:49.6185932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6190064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h 2025-06-01T21:33:49.6193950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h 2025-06-01T21:33:49.6197679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_native.h 2025-06-01T21:33:49.6201540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_ops.h 2025-06-01T21:33:49.6205594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward.h 2025-06-01T21:33:49.6209792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6213782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h 2025-06-01T21:33:49.6218017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h 2025-06-01T21:33:49.6221984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_native.h 2025-06-01T21:33:49.6225818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_ops.h 2025-06-01T21:33:49.6229614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory.h 2025-06-01T21:33:49.6234095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6237990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_native.h 2025-06-01T21:33:49.6241982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_ops.h 2025-06-01T21:33:49.6246239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel.h 2025-06-01T21:33:49.6250040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward.h 2025-06-01T21:33:49.6253925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h 2025-06-01T21:33:49.6274995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h 2025-06-01T21:33:49.6280409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_native.h 2025-06-01T21:33:49.6286461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_ops.h 2025-06-01T21:33:49.6292105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h 2025-06-01T21:33:49.6297511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h 2025-06-01T21:33:49.6301800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_native.h 2025-06-01T21:33:49.6307006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_ops.h 2025-06-01T21:33:49.6312406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print.h 2025-06-01T21:33:49.6317628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6322658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_native.h 2025-06-01T21:33:49.6328240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_ops.h 2025-06-01T21:33:49.6333493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data.h 2025-06-01T21:33:49.6338801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6342759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_native.h 2025-06-01T21:33:49.6348167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_ops.h 2025-06-01T21:33:49.6353813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim.h 2025-06-01T21:33:49.6359004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6399714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_native.h 2025-06-01T21:33:49.6405675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_ops.h 2025-06-01T21:33:49.6411479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias.h 2025-06-01T21:33:49.6417150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy.h 2025-06-01T21:33:49.6423491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.6427815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6431810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_native.h 2025-06-01T21:33:49.6437465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_ops.h 2025-06-01T21:33:49.6441632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h 2025-06-01T21:33:49.6445810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h 2025-06-01T21:33:49.6451884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h 2025-06-01T21:33:49.6455938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_native.h 2025-06-01T21:33:49.6460152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_ops.h 2025-06-01T21:33:49.6464025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy.h 2025-06-01T21:33:49.6468430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6472402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_native.h 2025-06-01T21:33:49.6476300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_ops.h 2025-06-01T21:33:49.6481674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor.h 2025-06-01T21:33:49.6486000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6490040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_native.h 2025-06-01T21:33:49.6494018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_ops.h 2025-06-01T21:33:49.6497942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output.h 2025-06-01T21:33:49.6502268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6506295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_meta_dispatch.h 2025-06-01T21:33:49.6510392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_native.h 2025-06-01T21:33:49.6514308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_ops.h 2025-06-01T21:33:49.6519224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune.h 2025-06-01T21:33:49.6523384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6527152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_native.h 2025-06-01T21:33:49.6538482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_ops.h 2025-06-01T21:33:49.6539115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax.h 2025-06-01T21:33:49.6543417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6547108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_native.h 2025-06-01T21:33:49.6550790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_ops.h 2025-06-01T21:33:49.6554808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet.h 2025-06-01T21:33:49.6558725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6562460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h 2025-06-01T21:33:49.6566656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h 2025-06-01T21:33:49.6570504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_native.h 2025-06-01T21:33:49.6574613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_ops.h 2025-06-01T21:33:49.6578811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16.h 2025-06-01T21:33:49.6582833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6586642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h 2025-06-01T21:33:49.6590597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h 2025-06-01T21:33:49.6594482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math.h 2025-06-01T21:33:49.6598633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6602814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h 2025-06-01T21:33:49.6606847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h 2025-06-01T21:33:49.6610945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h 2025-06-01T21:33:49.6615183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h 2025-06-01T21:33:49.6619459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h 2025-06-01T21:33:49.6623470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h 2025-06-01T21:33:49.6627765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h 2025-06-01T21:33:49.6632404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h 2025-06-01T21:33:49.6636582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h 2025-06-01T21:33:49.6640686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h 2025-06-01T21:33:49.6644787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h 2025-06-01T21:33:49.6648693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h 2025-06-01T21:33:49.6653172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h 2025-06-01T21:33:49.6657463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h 2025-06-01T21:33:49.6661851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h 2025-06-01T21:33:49.6666359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h 2025-06-01T21:33:49.6670672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h 2025-06-01T21:33:49.6676486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h 2025-06-01T21:33:49.6681241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h 2025-06-01T21:33:49.6685579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h 2025-06-01T21:33:49.6689690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h 2025-06-01T21:33:49.6693893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h 2025-06-01T21:33:49.6697795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h 2025-06-01T21:33:49.6701979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h 2025-06-01T21:33:49.6706019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h 2025-06-01T21:33:49.6709969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h 2025-06-01T21:33:49.6713910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h 2025-06-01T21:33:49.6718515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h 2025-06-01T21:33:49.6723372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h 2025-06-01T21:33:49.6727689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h 2025-06-01T21:33:49.6732127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h 2025-06-01T21:33:49.6736368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h 2025-06-01T21:33:49.6740622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h 2025-06-01T21:33:49.6744590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h 2025-06-01T21:33:49.6748510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h 2025-06-01T21:33:49.6752498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h 2025-06-01T21:33:49.6756625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h 2025-06-01T21:33:49.6760990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h 2025-06-01T21:33:49.6765113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h 2025-06-01T21:33:49.6769253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6773321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h 2025-06-01T21:33:49.6779125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h 2025-06-01T21:33:49.6785039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6790612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h 2025-06-01T21:33:49.6795873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h 2025-06-01T21:33:49.6801287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm.h 2025-06-01T21:33:49.6807555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h 2025-06-01T21:33:49.6813081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_native.h 2025-06-01T21:33:49.6818636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_ops.h 2025-06-01T21:33:49.6823913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm.h 2025-06-01T21:33:49.6829364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h 2025-06-01T21:33:49.6834627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h 2025-06-01T21:33:49.6838941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_native.h 2025-06-01T21:33:49.6844409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_ops.h 2025-06-01T21:33:49.6849777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward.h 2025-06-01T21:33:49.6855113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6860580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h 2025-06-01T21:33:49.6894146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h 2025-06-01T21:33:49.6899748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_native.h 2025-06-01T21:33:49.6905548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_ops.h 2025-06-01T21:33:49.6911381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor.h 2025-06-01T21:33:49.6917323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6921264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_native.h 2025-06-01T21:33:49.6925234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_ops.h 2025-06-01T21:33:49.6930842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward.h 2025-06-01T21:33:49.6935344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.6939544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h 2025-06-01T21:33:49.6945404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h 2025-06-01T21:33:49.6949513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_native.h 2025-06-01T21:33:49.6953985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_ops.h 2025-06-01T21:33:49.6957850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward.h 2025-06-01T21:33:49.6962646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h 2025-06-01T21:33:49.6967207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h 2025-06-01T21:33:49.6971313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_native.h 2025-06-01T21:33:49.6976556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_ops.h 2025-06-01T21:33:49.6980873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw.h 2025-06-01T21:33:49.6984750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.6988563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_native.h 2025-06-01T21:33:49.6992666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_ops.h 2025-06-01T21:33:49.6996812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff.h 2025-06-01T21:33:49.7000781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7004537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_native.h 2025-06-01T21:33:49.7008422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_ops.h 2025-06-01T21:33:49.7012301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state.h 2025-06-01T21:33:49.7016395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7021839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h 2025-06-01T21:33:49.7025869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h 2025-06-01T21:33:49.7029785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble.h 2025-06-01T21:33:49.7033861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7037729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_native.h 2025-06-01T21:33:49.7041693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_ops.h 2025-06-01T21:33:49.7045768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax.h 2025-06-01T21:33:49.7049446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data.h 2025-06-01T21:33:49.7053600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.7057254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h 2025-06-01T21:33:49.7062351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h 2025-06-01T21:33:49.7066897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta.h 2025-06-01T21:33:49.7071044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h 2025-06-01T21:33:49.7075161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_native.h 2025-06-01T21:33:49.7079146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_ops.h 2025-06-01T21:33:49.7084006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.7105866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cpu_dispatch.h 2025-06-01T21:33:49.7109829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cuda_dispatch.h 2025-06-01T21:33:49.7114080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta.h 2025-06-01T21:33:49.7118078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta_dispatch.h 2025-06-01T21:33:49.7122159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_native.h 2025-06-01T21:33:49.7125891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_ops.h 2025-06-01T21:33:49.7129674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm.h 2025-06-01T21:33:49.7133737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7137541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_native.h 2025-06-01T21:33:49.7141835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_ops.h 2025-06-01T21:33:49.7145938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to.h 2025-06-01T21:33:49.7149802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy.h 2025-06-01T21:33:49.7154700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.7158743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7162941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h 2025-06-01T21:33:49.7167163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h 2025-06-01T21:33:49.7171285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_native.h 2025-06-01T21:33:49.7175199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_ops.h 2025-06-01T21:33:49.7181106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h 2025-06-01T21:33:49.7188665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7193744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h 2025-06-01T21:33:49.7199257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h 2025-06-01T21:33:49.7204690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h 2025-06-01T21:33:49.7210390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7216159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h 2025-06-01T21:33:49.7221281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h 2025-06-01T21:33:49.7226968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h 2025-06-01T21:33:49.7232759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7238254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h 2025-06-01T21:33:49.7243800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h 2025-06-01T21:33:49.7249315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h 2025-06-01T21:33:49.7253706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7259394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h 2025-06-01T21:33:49.7264848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h 2025-06-01T21:33:49.7270283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h 2025-06-01T21:33:49.7275853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7281226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h 2025-06-01T21:33:49.7286690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h 2025-06-01T21:33:49.7292261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h 2025-06-01T21:33:49.7298508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h 2025-06-01T21:33:49.7304020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7309837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h 2025-06-01T21:33:49.7315216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h 2025-06-01T21:33:49.7320948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h 2025-06-01T21:33:49.7326693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7332099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h 2025-06-01T21:33:49.7336362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h 2025-06-01T21:33:49.7341813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h 2025-06-01T21:33:49.7347883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h 2025-06-01T21:33:49.7353551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7358888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h 2025-06-01T21:33:49.7364574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h 2025-06-01T21:33:49.7371210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod.h 2025-06-01T21:33:49.7376752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7381394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_native.h 2025-06-01T21:33:49.7385564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_ops.h 2025-06-01T21:33:49.7389645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum.h 2025-06-01T21:33:49.7394201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7397952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_native.h 2025-06-01T21:33:49.7403019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_ops.h 2025-06-01T21:33:49.7407397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h 2025-06-01T21:33:49.7412229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7416276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h 2025-06-01T21:33:49.7420403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h 2025-06-01T21:33:49.7427809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax.h 2025-06-01T21:33:49.7432147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h 2025-06-01T21:33:49.7436341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7440400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h 2025-06-01T21:33:49.7446281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h 2025-06-01T21:33:49.7450599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7454911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7459215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_native.h 2025-06-01T21:33:49.7463624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_ops.h 2025-06-01T21:33:49.7467516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection.h 2025-06-01T21:33:49.7471644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7477413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_native.h 2025-06-01T21:33:49.7481706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_ops.h 2025-06-01T21:33:49.7485882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm.h 2025-06-01T21:33:49.7490081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7493853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_native.h 2025-06-01T21:33:49.7497855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_ops.h 2025-06-01T21:33:49.7501879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl.h 2025-06-01T21:33:49.7505985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h 2025-06-01T21:33:49.7510037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h 2025-06-01T21:33:49.7514154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h 2025-06-01T21:33:49.7518068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h 2025-06-01T21:33:49.7522212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h 2025-06-01T21:33:49.7527650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm.h 2025-06-01T21:33:49.7532570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h 2025-06-01T21:33:49.7536687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h 2025-06-01T21:33:49.7540979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h 2025-06-01T21:33:49.7545129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply.h 2025-06-01T21:33:49.7549206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h 2025-06-01T21:33:49.7553128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h 2025-06-01T21:33:49.7557405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h 2025-06-01T21:33:49.7561572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h 2025-06-01T21:33:49.7565787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h 2025-06-01T21:33:49.7569739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h 2025-06-01T21:33:49.7573633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h 2025-06-01T21:33:49.7577868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear.h 2025-06-01T21:33:49.7582370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h 2025-06-01T21:33:49.7586404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h 2025-06-01T21:33:49.7590621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h 2025-06-01T21:33:49.7594746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm.h 2025-06-01T21:33:49.7598908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h 2025-06-01T21:33:49.7603452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h 2025-06-01T21:33:49.7607705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h 2025-06-01T21:33:49.7611827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile.h 2025-06-01T21:33:49.7616126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h 2025-06-01T21:33:49.7620147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h 2025-06-01T21:33:49.7624137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h 2025-06-01T21:33:49.7628775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax.h 2025-06-01T21:33:49.7632837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data.h 2025-06-01T21:33:49.7636976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7641362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h 2025-06-01T21:33:49.7645358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h 2025-06-01T21:33:49.7649674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7653827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7657729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_native.h 2025-06-01T21:33:49.7662105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_ops.h 2025-06-01T21:33:49.7666010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul.h 2025-06-01T21:33:49.7670041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7673855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_native.h 2025-06-01T21:33:49.7677736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h 2025-06-01T21:33:49.7683569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum.h 2025-06-01T21:33:49.7689025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward.h 2025-06-01T21:33:49.7694867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7700237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_native.h 2025-06-01T21:33:49.7704395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_ops.h 2025-06-01T21:33:49.7710152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7715539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7721193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_native.h 2025-06-01T21:33:49.7726761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_ops.h 2025-06-01T21:33:49.7732154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags.h 2025-06-01T21:33:49.7737197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7742649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_cpu_dispatch.h 2025-06-01T21:33:49.7748628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_native.h 2025-06-01T21:33:49.7753824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_ops.h 2025-06-01T21:33:49.7758976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve.h 2025-06-01T21:33:49.7762639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_native.h 2025-06-01T21:33:49.7768118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_ops.h 2025-06-01T21:33:49.7773364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack.h 2025-06-01T21:33:49.7780152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7784882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_cpu_dispatch.h 2025-06-01T21:33:49.7789128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_native.h 2025-06-01T21:33:49.7793052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_ops.h 2025-06-01T21:33:49.7796850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma.h 2025-06-01T21:33:49.7800710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7804879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h 2025-06-01T21:33:49.7809259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h 2025-06-01T21:33:49.7813600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad.h 2025-06-01T21:33:49.7818119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7822335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h 2025-06-01T21:33:49.7826188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h 2025-06-01T21:33:49.7830716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_native.h 2025-06-01T21:33:49.7834825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_ops.h 2025-06-01T21:33:49.7838947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_native.h 2025-06-01T21:33:49.7842959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_ops.h 2025-06-01T21:33:49.7847031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults.h 2025-06-01T21:33:49.7851224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7855048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_native.h 2025-06-01T21:33:49.7859064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h 2025-06-01T21:33:49.7865159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h 2025-06-01T21:33:49.7871337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7904950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7911223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h 2025-06-01T21:33:49.7916824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h 2025-06-01T21:33:49.7922937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h 2025-06-01T21:33:49.7928825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7933042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h 2025-06-01T21:33:49.7937775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.7944104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7948313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h 2025-06-01T21:33:49.7952344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h 2025-06-01T21:33:49.7958520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h 2025-06-01T21:33:49.7962737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h 2025-06-01T21:33:49.7967347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor.h 2025-06-01T21:33:49.7971775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.7976034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_native.h 2025-06-01T21:33:49.7980282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_ops.h 2025-06-01T21:33:49.7985194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback.h 2025-06-01T21:33:49.7991000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.7995021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h 2025-06-01T21:33:49.7999011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_native.h 2025-06-01T21:33:49.8003736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_ops.h 2025-06-01T21:33:49.8007701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist.h 2025-06-01T21:33:49.8012000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8016170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h 2025-06-01T21:33:49.8020243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_native.h 2025-06-01T21:33:49.8024492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h 2025-06-01T21:33:49.8029766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist.h 2025-06-01T21:33:49.8033952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8038657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h 2025-06-01T21:33:49.8042547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_native.h 2025-06-01T21:33:49.8047138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_ops.h 2025-06-01T21:33:49.8050503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist.h 2025-06-01T21:33:49.8054587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8058693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h 2025-06-01T21:33:49.8062709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_native.h 2025-06-01T21:33:49.8066600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_ops.h 2025-06-01T21:33:49.8070523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize.h 2025-06-01T21:33:49.8074957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8078878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_native.h 2025-06-01T21:33:49.8083256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_ops.h 2025-06-01T21:33:49.8087199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul.h 2025-06-01T21:33:49.8091340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8095149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_native.h 2025-06-01T21:33:49.8100086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_ops.h 2025-06-01T21:33:49.8104452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default.h 2025-06-01T21:33:49.8108984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8113299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_native.h 2025-06-01T21:33:49.8117289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_ops.h 2025-06-01T21:33:49.8121501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd.h 2025-06-01T21:33:49.8125880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8129743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_native.h 2025-06-01T21:33:49.8133980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_ops.h 2025-06-01T21:33:49.8138112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h 2025-06-01T21:33:49.8142555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8146410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h 2025-06-01T21:33:49.8150223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h 2025-06-01T21:33:49.8154447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h 2025-06-01T21:33:49.8158702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8162836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h 2025-06-01T21:33:49.8166799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h 2025-06-01T21:33:49.8170644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell.h 2025-06-01T21:33:49.8174940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h 2025-06-01T21:33:49.8179425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8183401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h 2025-06-01T21:33:49.8189113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h 2025-06-01T21:33:49.8193741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h 2025-06-01T21:33:49.8197833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8202218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h 2025-06-01T21:33:49.8206462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h 2025-06-01T21:33:49.8210543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h 2025-06-01T21:33:49.8214541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell.h 2025-06-01T21:33:49.8218780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h 2025-06-01T21:33:49.8223676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8227842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h 2025-06-01T21:33:49.8232270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8236181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h 2025-06-01T21:33:49.8240129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h 2025-06-01T21:33:49.8244353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h 2025-06-01T21:33:49.8249423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h 2025-06-01T21:33:49.8253117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h 2025-06-01T21:33:49.8257803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8261739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h 2025-06-01T21:33:49.8265703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h 2025-06-01T21:33:49.8269985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h 2025-06-01T21:33:49.8273793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy.h 2025-06-01T21:33:49.8277601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8281464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_native.h 2025-06-01T21:33:49.8285304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_ops.h 2025-06-01T21:33:49.8289121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu.h 2025-06-01T21:33:49.8293283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8297178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_native.h 2025-06-01T21:33:49.8300936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_ops.h 2025-06-01T21:33:49.8320955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense.h 2025-06-01T21:33:49.8324586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8328362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_native.h 2025-06-01T21:33:49.8332582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_ops.h 2025-06-01T21:33:49.8336598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse.h 2025-06-01T21:33:49.8340479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc.h 2025-06-01T21:33:49.8344598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8348411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h 2025-06-01T21:33:49.8352267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h 2025-06-01T21:33:49.8356161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_native.h 2025-06-01T21:33:49.8360120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_ops.h 2025-06-01T21:33:49.8364173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr.h 2025-06-01T21:33:49.8368257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8372525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h 2025-06-01T21:33:49.8376620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h 2025-06-01T21:33:49.8380627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_native.h 2025-06-01T21:33:49.8384853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_ops.h 2025-06-01T21:33:49.8391031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8394998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h 2025-06-01T21:33:49.8399004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc.h 2025-06-01T21:33:49.8403087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8407052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h 2025-06-01T21:33:49.8410868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h 2025-06-01T21:33:49.8414774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_native.h 2025-06-01T21:33:49.8420043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_ops.h 2025-06-01T21:33:49.8424059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr.h 2025-06-01T21:33:49.8428849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8432872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h 2025-06-01T21:33:49.8436872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h 2025-06-01T21:33:49.8440840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_native.h 2025-06-01T21:33:49.8445312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_ops.h 2025-06-01T21:33:49.8449312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h 2025-06-01T21:33:49.8453243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_native.h 2025-06-01T21:33:49.8457830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_ops.h 2025-06-01T21:33:49.8462009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured.h 2025-06-01T21:33:49.8466075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h 2025-06-01T21:33:49.8470009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_native.h 2025-06-01T21:33:49.8473935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h 2025-06-01T21:33:49.8478128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h 2025-06-01T21:33:49.8482240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8486942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h 2025-06-01T21:33:49.8492797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h 2025-06-01T21:33:49.8496661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h 2025-06-01T21:33:49.8500937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h 2025-06-01T21:33:49.8504759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv.h 2025-06-01T21:33:49.8509056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8513267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h 2025-06-01T21:33:49.8517272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h 2025-06-01T21:33:49.8522137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h 2025-06-01T21:33:49.8526184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h 2025-06-01T21:33:49.8531234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear.h 2025-06-01T21:33:49.8536067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.8539889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8543625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_native.h 2025-06-01T21:33:49.8547504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_ops.h 2025-06-01T21:33:49.8551306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention.h 2025-06-01T21:33:49.8555469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8560170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h 2025-06-01T21:33:49.8564159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_native.h 2025-06-01T21:33:49.8568118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_ops.h 2025-06-01T21:33:49.8572329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention.h 2025-06-01T21:33:49.8576633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8580812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h 2025-06-01T21:33:49.8585025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h 2025-06-01T21:33:49.8589251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h 2025-06-01T21:33:49.8593377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique.h 2025-06-01T21:33:49.8596866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2.h 2025-06-01T21:33:49.8600475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8604434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cpu_dispatch.h 2025-06-01T21:33:49.8608530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cuda_dispatch.h 2025-06-01T21:33:49.8612460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_native.h 2025-06-01T21:33:49.8616895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_ops.h 2025-06-01T21:33:49.8620961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8625294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cpu_dispatch.h 2025-06-01T21:33:49.8629116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cuda_dispatch.h 2025-06-01T21:33:49.8632813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_native.h 2025-06-01T21:33:49.8637293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_ops.h 2025-06-01T21:33:49.8641348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual.h 2025-06-01T21:33:49.8645170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8649048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_native.h 2025-06-01T21:33:49.8653008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_ops.h 2025-06-01T21:33:49.8656675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index.h 2025-06-01T21:33:49.8660850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8664931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_native.h 2025-06-01T21:33:49.8668724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_ops.h 2025-06-01T21:33:49.8672749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put.h 2025-06-01T21:33:49.8677010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8680824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_native.h 2025-06-01T21:33:49.8685921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_ops.h 2025-06-01T21:33:49.8690532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index.h 2025-06-01T21:33:49.8696242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8701547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_native.h 2025-06-01T21:33:49.8707207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_ops.h 2025-06-01T21:33:49.8712903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h 2025-06-01T21:33:49.8718437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8723900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h 2025-06-01T21:33:49.8729384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h 2025-06-01T21:33:49.8734587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view.h 2025-06-01T21:33:49.8740914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.8746284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_native.h 2025-06-01T21:33:49.8751048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_ops.h 2025-06-01T21:33:49.8755559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa.h 2025-06-01T21:33:49.8761168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h 2025-06-01T21:33:49.8782642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.8788196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h 2025-06-01T21:33:49.8793608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h 2025-06-01T21:33:49.8798880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h 2025-06-01T21:33:49.8816707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h 2025-06-01T21:33:49.8817565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h 2025-06-01T21:33:49.8817897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h 2025-06-01T21:33:49.8820367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.8825484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8831013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h 2025-06-01T21:33:49.8836309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h 2025-06-01T21:33:49.8841721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h 2025-06-01T21:33:49.8846995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h 2025-06-01T21:33:49.8853329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h 2025-06-01T21:33:49.8858632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h 2025-06-01T21:33:49.8864257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa.h 2025-06-01T21:33:49.8869794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h 2025-06-01T21:33:49.8894223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.8900020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h 2025-06-01T21:33:49.8905985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h 2025-06-01T21:33:49.8910398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h 2025-06-01T21:33:49.8916644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h 2025-06-01T21:33:49.8922566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h 2025-06-01T21:33:49.8927035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h 2025-06-01T21:33:49.8932897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.8937547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.8942305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h 2025-06-01T21:33:49.8948188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h 2025-06-01T21:33:49.8952010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h 2025-06-01T21:33:49.8955997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h 2025-06-01T21:33:49.8960162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h 2025-06-01T21:33:49.8964320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h 2025-06-01T21:33:49.8968415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d.h 2025-06-01T21:33:49.8972354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h 2025-06-01T21:33:49.8977988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.8982283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h 2025-06-01T21:33:49.8986445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h 2025-06-01T21:33:49.8990611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h 2025-06-01T21:33:49.8995408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h 2025-06-01T21:33:49.8999656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h 2025-06-01T21:33:49.9003690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h 2025-06-01T21:33:49.9008176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.9012112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9016245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h 2025-06-01T21:33:49.9020562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h 2025-06-01T21:33:49.9024634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h 2025-06-01T21:33:49.9029066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h 2025-06-01T21:33:49.9034352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h 2025-06-01T21:33:49.9038573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h 2025-06-01T21:33:49.9043032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d.h 2025-06-01T21:33:49.9047071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h 2025-06-01T21:33:49.9051195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.9055266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h 2025-06-01T21:33:49.9059316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h 2025-06-01T21:33:49.9063250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h 2025-06-01T21:33:49.9068544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h 2025-06-01T21:33:49.9072381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h 2025-06-01T21:33:49.9077056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h 2025-06-01T21:33:49.9081465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.9085851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9089876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h 2025-06-01T21:33:49.9094630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h 2025-06-01T21:33:49.9098722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h 2025-06-01T21:33:49.9102603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h 2025-06-01T21:33:49.9106513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h 2025-06-01T21:33:49.9110452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h 2025-06-01T21:33:49.9114289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d.h 2025-06-01T21:33:49.9118301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h 2025-06-01T21:33:49.9122933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.9126875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h 2025-06-01T21:33:49.9131176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h 2025-06-01T21:33:49.9136960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h 2025-06-01T21:33:49.9142476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h 2025-06-01T21:33:49.9148172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h 2025-06-01T21:33:49.9153622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h 2025-06-01T21:33:49.9159138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.9164704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9170237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h 2025-06-01T21:33:49.9175883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h 2025-06-01T21:33:49.9181333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h 2025-06-01T21:33:49.9187361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h 2025-06-01T21:33:49.9193256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h 2025-06-01T21:33:49.9198918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h 2025-06-01T21:33:49.9203380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss.h 2025-06-01T21:33:49.9209603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h 2025-06-01T21:33:49.9213983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h 2025-06-01T21:33:49.9219289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h 2025-06-01T21:33:49.9224742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h 2025-06-01T21:33:49.9230301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9235927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h 2025-06-01T21:33:49.9241474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h 2025-06-01T21:33:49.9247731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices.h 2025-06-01T21:33:49.9253188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h 2025-06-01T21:33:49.9258461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h 2025-06-01T21:33:49.9263740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h 2025-06-01T21:33:49.9267954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h 2025-06-01T21:33:49.9273641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h 2025-06-01T21:33:49.9279272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9285086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h 2025-06-01T21:33:49.9290464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h 2025-06-01T21:33:49.9296199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h 2025-06-01T21:33:49.9302023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9307343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h 2025-06-01T21:33:49.9313204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h 2025-06-01T21:33:49.9318653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h 2025-06-01T21:33:49.9324459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9330140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h 2025-06-01T21:33:49.9335600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h 2025-06-01T21:33:49.9340921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h 2025-06-01T21:33:49.9346942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9352548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h 2025-06-01T21:33:49.9356466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h 2025-06-01T21:33:49.9361883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h 2025-06-01T21:33:49.9367500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9372882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h 2025-06-01T21:33:49.9378373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h 2025-06-01T21:33:49.9398594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h 2025-06-01T21:33:49.9404689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9410423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h 2025-06-01T21:33:49.9416023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h 2025-06-01T21:33:49.9421779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values.h 2025-06-01T21:33:49.9425803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy.h 2025-06-01T21:33:49.9430375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-06-01T21:33:49.9436066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.9440584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_native.h 2025-06-01T21:33:49.9445579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_ops.h 2025-06-01T21:33:49.9451438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_native.h 2025-06-01T21:33:49.9455549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_ops.h 2025-06-01T21:33:49.9459652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version.h 2025-06-01T21:33:49.9471947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9472238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_native.h 2025-06-01T21:33:49.9474142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_ops.h 2025-06-01T21:33:49.9479710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm.h 2025-06-01T21:33:49.9483450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h 2025-06-01T21:33:49.9487335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h 2025-06-01T21:33:49.9491257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h 2025-06-01T21:33:49.9495555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h 2025-06-01T21:33:49.9500308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h 2025-06-01T21:33:49.9504251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_native.h 2025-06-01T21:33:49.9508274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_ops.h 2025-06-01T21:33:49.9512372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h 2025-06-01T21:33:49.9516608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h 2025-06-01T21:33:49.9520709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h 2025-06-01T21:33:49.9524998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm.h 2025-06-01T21:33:49.9529122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h 2025-06-01T21:33:49.9533649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_native.h 2025-06-01T21:33:49.9539426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_ops.h 2025-06-01T21:33:49.9543151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm.h 2025-06-01T21:33:49.9547418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9551805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward.h 2025-06-01T21:33:49.9556570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9561324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h 2025-06-01T21:33:49.9565448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h 2025-06-01T21:33:49.9590218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface.h 2025-06-01T21:33:49.9594605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward.h 2025-06-01T21:33:49.9599429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.9603740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h 2025-06-01T21:33:49.9608076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h 2025-06-01T21:33:49.9612278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_native.h 2025-06-01T21:33:49.9617237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h 2025-06-01T21:33:49.9621632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h 2025-06-01T21:33:49.9625831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h 2025-06-01T21:33:49.9630117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h 2025-06-01T21:33:49.9634405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_native.h 2025-06-01T21:33:49.9640427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_ops.h 2025-06-01T21:33:49.9645165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_native.h 2025-06-01T21:33:49.9649103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_ops.h 2025-06-01T21:33:49.9653152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack.h 2025-06-01T21:33:49.9657457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9661745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_native.h 2025-06-01T21:33:49.9666219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h 2025-06-01T21:33:49.9670531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h 2025-06-01T21:33:49.9674776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h 2025-06-01T21:33:49.9678811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h 2025-06-01T21:33:49.9682970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h 2025-06-01T21:33:49.9945280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\QTensorImpl.h 2025-06-01T21:33:49.9987127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\Quantizer.h 2025-06-01T21:33:49.9998685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\CachingHostAllocator.h 2025-06-01T21:33:50.0004180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\PinnedMemoryAllocator.h 2025-06-01T21:33:50.0009393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUContext.h 2025-06-01T21:33:50.0013288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUDevice.h 2025-06-01T21:33:50.0022672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUEvent.h 2025-06-01T21:33:50.0026084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUGeneratorImpl.h 2025-06-01T21:33:50.0033348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\detail\XPUHooks.h 2025-06-01T21:33:50.0047306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\alignment.h 2025-06-01T21:33:50.0050785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Allocator.h 2025-06-01T21:33:50.0054185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AutogradState.h 2025-06-01T21:33:50.0058285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Backend.h 2025-06-01T21:33:50.0066578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CachingDeviceAllocator.h 2025-06-01T21:33:50.0071436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CompileTimeFunctionPointer.h 2025-06-01T21:33:50.0075524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ConstantSymNodeImpl.h 2025-06-01T21:33:50.0079717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Contiguity.h 2025-06-01T21:33:50.0083688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CopyBytes.h 2025-06-01T21:33:50.0087393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CPUAllocator.h 2025-06-01T21:33:50.0090952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultDtype.h 2025-06-01T21:33:50.0094453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultTensorOptions.h 2025-06-01T21:33:50.0097928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Device.h 2025-06-01T21:33:50.0101374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceArray.h 2025-06-01T21:33:50.0104922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceGuard.h 2025-06-01T21:33:50.0108735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceType.h 2025-06-01T21:33:50.0112273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKey.h 2025-06-01T21:33:50.0115901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKeySet.h 2025-06-01T21:33:50.0119832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DynamicCast.h 2025-06-01T21:33:50.0123220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Event.h 2025-06-01T21:33:50.0130924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GeneratorImpl.h 2025-06-01T21:33:50.0134640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GradMode.h 2025-06-01T21:33:50.0138535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\InferenceMode.h 2025-06-01T21:33:50.0142186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Layout.h 2025-06-01T21:33:50.0145844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\MemoryFormat.h 2025-06-01T21:33:50.0149643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\OptionalRef.h 2025-06-01T21:33:50.0153321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\PyHandleCache.h 2025-06-01T21:33:50.0157671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QEngine.h 2025-06-01T21:33:50.0161157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QScheme.h 2025-06-01T21:33:50.0164782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\RefcountedDeleter.h 2025-06-01T21:33:50.0168240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SafePyObject.h 2025-06-01T21:33:50.0172085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Scalar.h 2025-06-01T21:33:50.0175616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarType.h 2025-06-01T21:33:50.0184357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarTypeToTypeMeta.h 2025-06-01T21:33:50.0188041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Storage.h 2025-06-01T21:33:50.0191302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StorageImpl.h 2025-06-01T21:33:50.0194988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Stream.h 2025-06-01T21:33:50.0198463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StreamGuard.h 2025-06-01T21:33:50.0202076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymbolicShapeMeta.h 2025-06-01T21:33:50.0205774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymBool.h 2025-06-01T21:33:50.0209408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymFloat.h 2025-06-01T21:33:50.0212821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymInt.h 2025-06-01T21:33:50.0216328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymIntArrayRef.h 2025-06-01T21:33:50.0220335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymNodeImpl.h 2025-06-01T21:33:50.0223640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorImpl.h 2025-06-01T21:33:50.0232670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorOptions.h 2025-06-01T21:33:50.0236751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\thread_pool.h 2025-06-01T21:33:50.0240782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\UndefinedTensorImpl.h 2025-06-01T21:33:50.0244660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\WrapDimMinimal.h 2025-06-01T21:33:50.0252471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\alloc_cpu.h 2025-06-01T21:33:50.0255912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COW.h 2025-06-01T21:33:50.0259897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COWDeleter.h 2025-06-01T21:33:50.0263469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\DeviceGuardImplInterface.h 2025-06-01T21:33:50.0271461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\FakeGuardImpl.h 2025-06-01T21:33:50.0274999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\GPUTrace.h 2025-06-01T21:33:50.0278435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\HermeticPyObjectTLS.h 2025-06-01T21:33:50.0281975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineDeviceGuard.h 2025-06-01T21:33:50.0285697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineEvent.h 2025-06-01T21:33:50.0289161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineStreamGuard.h 2025-06-01T21:33:50.0293065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\LocalDispatchKeySet.h 2025-06-01T21:33:50.0296467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreter.h 2025-06-01T21:33:50.0299956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyObjectSlot.h 2025-06-01T21:33:50.0303526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PythonDispatcherTLS.h 2025-06-01T21:33:50.0307102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\SizesAndStrides.h 2025-06-01T21:33:50.0310907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\TorchDispatchModeTLS.h 2025-06-01T21:33:50.0314553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\VirtualGuardImpl.h 2025-06-01T21:33:50.0323706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAlgorithm.h 2025-06-01T21:33:50.0327433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAllocatorConfig.h 2025-06-01T21:33:50.0332640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDACachingAllocator.h 2025-06-01T21:33:50.0337508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertion.h 2025-06-01T21:33:50.0345772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertionHost.h 2025-06-01T21:33:50.0350549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAException.h 2025-06-01T21:33:50.0355223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAFunctions.h 2025-06-01T21:33:50.0360101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGraphsC10Utils.h 2025-06-01T21:33:50.0365242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGuard.h 2025-06-01T21:33:50.0369055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMacros.h 2025-06-01T21:33:50.0373974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMathCompat.h 2025-06-01T21:33:50.0378910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMiscFunctions.h 2025-06-01T21:33:50.0383901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAStream.h 2025-06-01T21:33:50.0388254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\driver_api.h 2025-06-01T21:33:50.0396591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDAGuardImpl.h 2025-06-01T21:33:50.0400216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDATest.h 2025-06-01T21:33:50.0408063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\cmake_macros.h 2025-06-01T21:33:50.0412771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Export.h 2025-06-01T21:33:50.0416417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Macros.h 2025-06-01T21:33:50.0423599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\atomic.h 2025-06-01T21:33:50.0427498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\common.h 2025-06-01T21:33:50.0430880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\indexing.h 2025-06-01T21:33:50.0434292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\random.h 2025-06-01T21:33:50.0437764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\reduction_utils.h 2025-06-01T21:33:50.0441065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\special_math.h 2025-06-01T21:33:50.0450574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\utils.h 2025-06-01T21:33:50.0460333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUCachingAllocator.h 2025-06-01T21:33:50.0464492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUProfilingAllocator.h 2025-06-01T21:33:50.0475296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_math_test_common.h 2025-06-01T21:33:50.0478926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_test_common.h 2025-06-01T21:33:50.0482364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\Macros.h 2025-06-01T21:33:50.0490698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AbortHandler.h 2025-06-01T21:33:50.0494196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\accumulate.h 2025-06-01T21:33:50.0497847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AlignOf.h 2025-06-01T21:33:50.0501362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ApproximateClock.h 2025-06-01T21:33:50.0509314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Array.h 2025-06-01T21:33:50.0513118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ArrayRef.h 2025-06-01T21:33:50.0516810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Backtrace.h 2025-06-01T21:33:50.0520391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-inl.h 2025-06-01T21:33:50.0524152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-math.h 2025-06-01T21:33:50.0527816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16.h 2025-06-01T21:33:50.0530973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bits.h 2025-06-01T21:33:50.0534276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Bitset.h 2025-06-01T21:33:50.0537981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bit_cast.h 2025-06-01T21:33:50.0542612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\C++17.h 2025-06-01T21:33:50.0546353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\CallOnce.h 2025-06-01T21:33:50.0549779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex.h 2025-06-01T21:33:50.0553250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_math.h 2025-06-01T21:33:50.0556911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_utils.h 2025-06-01T21:33:50.0560723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ConstexprCrc.h 2025-06-01T21:33:50.0564505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\copysign.h 2025-06-01T21:33:50.0567932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DeadlockDetection.h 2025-06-01T21:33:50.0571367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Deprecated.h 2025-06-01T21:33:50.0574880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DimVector.h 2025-06-01T21:33:50.0578444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DynamicCounter.h 2025-06-01T21:33:50.0587541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Enumerate.h 2025-06-01T21:33:50.0591107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\env.h 2025-06-01T21:33:50.0594559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\error.h 2025-06-01T21:33:50.0598578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Exception.h 2025-06-01T21:33:50.0602681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwned.h 2025-06-01T21:33:50.0606303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h 2025-06-01T21:33:50.0610137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FbcodeMaps.h 2025-06-01T21:33:50.0613806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Flags.h 2025-06-01T21:33:50.0618053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\flat_hash_map.h 2025-06-01T21:33:50.0622251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float4_e2m1fn_x2.h 2025-06-01T21:33:50.0626475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn-inl.h 2025-06-01T21:33:50.0634182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn.h 2025-06-01T21:33:50.0638104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz-inl.h 2025-06-01T21:33:50.0641687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz.h 2025-06-01T21:33:50.0645575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2-inl.h 2025-06-01T21:33:50.0649219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2.h 2025-06-01T21:33:50.0653530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz-inl.h 2025-06-01T21:33:50.0658226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz.h 2025-06-01T21:33:50.0662189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu-inl.h 2025-06-01T21:33:50.0666073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu.h 2025-06-01T21:33:50.0674160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_fnuz_cvt.h 2025-06-01T21:33:50.0677967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\floating_point_utils.h 2025-06-01T21:33:50.0682026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FunctionRef.h 2025-06-01T21:33:50.0686242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Gauge.h 2025-06-01T21:33:50.0689619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\generic_math.h 2025-06-01T21:33:50.0693588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half-inl.h 2025-06-01T21:33:50.0697192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half.h 2025-06-01T21:33:50.0702971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\hash.h 2025-06-01T21:33:50.0707817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IdWrapper.h 2025-06-01T21:33:50.0713136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\int128.h 2025-06-01T21:33:50.0719822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IntrusiveList.h 2025-06-01T21:33:50.0725299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\intrusive_ptr.h 2025-06-01T21:33:50.0730645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\irange.h 2025-06-01T21:33:50.0738583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Lazy.h 2025-06-01T21:33:50.0743371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\LeftRight.h 2025-06-01T21:33:50.0748179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\llvmMathExtras.h 2025-06-01T21:33:50.0753307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Load.h 2025-06-01T21:33:50.0758358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Logging.h 2025-06-01T21:33:50.0763941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_google_glog.h 2025-06-01T21:33:50.0767735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_not_google_glog.h 2025-06-01T21:33:50.0773074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MathConstants.h 2025-06-01T21:33:50.0778063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MaybeOwned.h 2025-06-01T21:33:50.0783227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Metaprogramming.h 2025-06-01T21:33:50.0788086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\NetworkFlow.h 2025-06-01T21:33:50.0801563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\numa.h 2025-06-01T21:33:50.0806580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Optional.h 2025-06-01T21:33:50.0811647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\OptionalArrayRef.h 2025-06-01T21:33:50.0815538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\order_preserving_flat_hash_map.h 2025-06-01T21:33:50.0820985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overflows.h 2025-06-01T21:33:50.0858500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overloaded.h 2025-06-01T21:33:50.0864000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ParallelGuard.h 2025-06-01T21:33:50.0869206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\python_stub.h 2025-06-01T21:33:50.0874584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint32.h 2025-06-01T21:33:50.0880176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint8.h 2025-06-01T21:33:50.0884092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint2x4.h 2025-06-01T21:33:50.0888734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint4x2.h 2025-06-01T21:33:50.0897058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint8.h 2025-06-01T21:33:50.0900810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Registry.h 2025-06-01T21:33:50.0904888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\safe_numerics.h 2025-06-01T21:33:50.0910217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ScopeExit.h 2025-06-01T21:33:50.0913969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Semaphore.h 2025-06-01T21:33:50.0918276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\signal_handler.h 2025-06-01T21:33:50.0921132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallBuffer.h 2025-06-01T21:33:50.0924529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallVector.h 2025-06-01T21:33:50.0928574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\sparse_bitset.h 2025-06-01T21:33:50.0932400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ssize.h 2025-06-01T21:33:50.0935897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint.h 2025-06-01T21:33:50.0941340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint_elfx86.h 2025-06-01T21:33:50.0949450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strides.h 2025-06-01T21:33:50.0953007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\StringUtil.h 2025-06-01T21:33:50.0956541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_utils.h 2025-06-01T21:33:50.0960051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_view.h 2025-06-01T21:33:50.0964031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strong_type.h 2025-06-01T21:33:50.0968388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Synchronized.h 2025-06-01T21:33:50.0972032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\tempfile.h 2025-06-01T21:33:50.0976822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocal.h 2025-06-01T21:33:50.0980509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocalDebugInfo.h 2025-06-01T21:33:50.0985298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\thread_name.h 2025-06-01T21:33:50.0989353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Type.h 2025-06-01T21:33:50.0992804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeCast.h 2025-06-01T21:33:50.0997540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\typeid.h 2025-06-01T21:33:50.1000967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeIndex.h 2025-06-01T21:33:50.1004423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeList.h 2025-06-01T21:33:50.1008045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeSafeSignMath.h 2025-06-01T21:33:50.1011482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeTraits.h 2025-06-01T21:33:50.1015020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unicode.h 2025-06-01T21:33:50.1018784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\UniqueVoidPtr.h 2025-06-01T21:33:50.1022308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unroll.h 2025-06-01T21:33:50.1025823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounter.h 2025-06-01T21:33:50.1044498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounterDynamicBackend.h 2025-06-01T21:33:50.1049321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\win32-headers.h 2025-06-01T21:33:50.1069141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUCachingAllocator.h 2025-06-01T21:33:50.1072730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUDeviceProp.h 2025-06-01T21:33:50.1076231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUException.h 2025-06-01T21:33:50.1079576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUFunctions.h 2025-06-01T21:33:50.1086897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUMacros.h 2025-06-01T21:33:50.1090898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUStream.h 2025-06-01T21:33:50.1097538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\impl\XPUGuardImpl.h 2025-06-01T21:33:50.1108583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\test\impl\XPUTest.h 2025-06-01T21:33:50.1122153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\common.h 2025-06-01T21:33:50.1125830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\macros.h 2025-06-01T21:33:50.1129220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\timer.h 2025-06-01T21:33:50.1136780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\batch_box_cox_vec.h 2025-06-01T21:33:50.1140474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\common.h 2025-06-01T21:33:50.1144053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\embedding_lookup_idx.h 2025-06-01T21:33:50.1151107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\crc_alt.h 2025-06-01T21:33:50.1155103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\file_adapter.h 2025-06-01T21:33:50.1159103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\inline_container.h 2025-06-01T21:33:50.1162793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\in_memory_adapter.h 2025-06-01T21:33:50.1172101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\istream_adapter.h 2025-06-01T21:33:50.1175689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\read_adapter_interface.h 2025-06-01T21:33:50.1179251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\versions.h 2025-06-01T21:33:50.1187196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\fixed_divisor.h 2025-06-01T21:33:50.1190792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\proto_wrap.h 2025-06-01T21:33:50.1194174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\string_utils.h 2025-06-01T21:33:50.1207280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h 2025-06-01T21:33:50.1212462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool.h 2025-06-01T21:33:50.1217314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPool.h 2025-06-01T21:33:50.1225096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h 2025-06-01T21:33:50.1230285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\thread_pool_guard.h 2025-06-01T21:33:50.1235652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\WorkersPool.h 2025-06-01T21:33:50.1248012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\ConvUtils.h 2025-06-01T21:33:50.1252859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\Fbgemm.h 2025-06-01T21:33:50.1258031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmBuild.h 2025-06-01T21:33:50.1262881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmConvert.h 2025-06-01T21:33:50.1271582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmEmbedding.h 2025-06-01T21:33:50.1276357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmFP16.h 2025-06-01T21:33:50.1281500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmFP32.h 2025-06-01T21:33:50.1286241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmFPCommon.h 2025-06-01T21:33:50.1290018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmI64.h 2025-06-01T21:33:50.1295103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h 2025-06-01T21:33:50.1300313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h 2025-06-01T21:33:50.1305333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmI8Spmdm.h 2025-06-01T21:33:50.1310435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmPackMatrixB.h 2025-06-01T21:33:50.1314121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FbgemmSparse.h 2025-06-01T21:33:50.1319260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\FloatConversion.h 2025-06-01T21:33:50.1324143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\OutputProcessing-inl.h 2025-06-01T21:33:50.1329012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\PackingTraits-inl.h 2025-06-01T21:33:50.1334023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\QuantUtils.h 2025-06-01T21:33:50.1339050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\QuantUtilsAvx2.h 2025-06-01T21:33:50.1348143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\QuantUtilsAvx512.h 2025-06-01T21:33:50.1353022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\QuantUtilsNeon.h 2025-06-01T21:33:50.1357946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\SimdUtils.h 2025-06-01T21:33:50.1363035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\spmmUtils.h 2025-06-01T21:33:50.1368669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\spmmUtilsAvx2.h 2025-06-01T21:33:50.1372366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\Types.h 2025-06-01T21:33:50.1377831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\Utils.h 2025-06-01T21:33:50.1382652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fbgemm\UtilsAvx2.h 2025-06-01T21:33:50.1395204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\args.h 2025-06-01T21:33:50.1421277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\base.h 2025-06-01T21:33:50.1427304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\chrono.h 2025-06-01T21:33:50.1433057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\color.h 2025-06-01T21:33:50.1436733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\compile.h 2025-06-01T21:33:50.1442375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\core.h 2025-06-01T21:33:50.1447558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format-inl.h 2025-06-01T21:33:50.1458347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format.h 2025-06-01T21:33:50.1462872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\os.h 2025-06-01T21:33:50.1466773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ostream.h 2025-06-01T21:33:50.1470365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\printf.h 2025-06-01T21:33:50.1475630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ranges.h 2025-06-01T21:33:50.1479142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\std.h 2025-06-01T21:33:50.1482796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\xchar.h 2025-06-01T21:33:50.1490681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\bitcasts.h 2025-06-01T21:33:50.1494570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\fp16.h 2025-06-01T21:33:50.1498362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\psimd.h 2025-06-01T21:33:50.1511436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.h 2025-06-01T21:33:50.1515043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.pb.h 2025-06-01T21:33:50.1518733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\api.pb.h 2025-06-01T21:33:50.1522469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena.h 2025-06-01T21:33:50.1526101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arenastring.h 2025-06-01T21:33:50.1535145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena_impl.h 2025-06-01T21:33:50.1539040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.h 2025-06-01T21:33:50.1543319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.pb.h 2025-06-01T21:33:50.1551693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor_database.h 2025-06-01T21:33:50.1555388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\duration.pb.h 2025-06-01T21:33:50.1559049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\dynamic_message.h 2025-06-01T21:33:50.1562508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\empty.pb.h 2025-06-01T21:33:50.1566215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set.h 2025-06-01T21:33:50.1570303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set_inl.h 2025-06-01T21:33:50.1574669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\field_mask.pb.h 2025-06-01T21:33:50.1578500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_reflection.h 2025-06-01T21:33:50.1582169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_util.h 2025-06-01T21:33:50.1585881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_reflection.h 2025-06-01T21:33:50.1589694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_table_driven.h 2025-06-01T21:33:50.1594034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_util.h 2025-06-01T21:33:50.1601881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\has_bits.h 2025-06-01T21:33:50.1605870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\implicit_weak_message.h 2025-06-01T21:33:50.1609735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\inlined_string_field.h 2025-06-01T21:33:50.1613209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map.h 2025-06-01T21:33:50.1617721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry.h 2025-06-01T21:33:50.1621876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry_lite.h 2025-06-01T21:33:50.1625768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field.h 2025-06-01T21:33:50.1629652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_inl.h 2025-06-01T21:33:50.1633510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_lite.h 2025-06-01T21:33:50.1637465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_type_handler.h 2025-06-01T21:33:50.1645684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message.h 2025-06-01T21:33:50.1649496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message_lite.h 2025-06-01T21:33:50.1653390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata.h 2025-06-01T21:33:50.1656939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata_lite.h 2025-06-01T21:33:50.1660654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\parse_context.h 2025-06-01T21:33:50.1664705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\port.h 2025-06-01T21:33:50.1668013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection.h 2025-06-01T21:33:50.1671653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection_ops.h 2025-06-01T21:33:50.1675257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\repeated_field.h 2025-06-01T21:33:50.1679731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\service.h 2025-06-01T21:33:50.1683387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\source_context.pb.h 2025-06-01T21:33:50.1687022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\struct.pb.h 2025-06-01T21:33:50.1695099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\text_format.h 2025-06-01T21:33:50.1699036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\timestamp.pb.h 2025-06-01T21:33:50.1702539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\type.pb.h 2025-06-01T21:33:50.1713851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\unknown_field_set.h 2025-06-01T21:33:50.1717728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format.h 2025-06-01T21:33:50.1722141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format_lite.h 2025-06-01T21:33:50.1725996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wrappers.pb.h 2025-06-01T21:33:50.1734282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\code_generator.h 2025-06-01T21:33:50.1737904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\command_line_interface.h 2025-06-01T21:33:50.1742102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\importer.h 2025-06-01T21:33:50.1745633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\parser.h 2025-06-01T21:33:50.1749258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.h 2025-06-01T21:33:50.1757855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.pb.h 2025-06-01T21:33:50.1769262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\cpp\cpp_generator.h 2025-06-01T21:33:50.1780658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_generator.h 2025-06-01T21:33:50.1784696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_names.h 2025-06-01T21:33:50.1793934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_generator.h 2025-06-01T21:33:50.1797488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_names.h 2025-06-01T21:33:50.1806298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\js_generator.h 2025-06-01T21:33:50.1810188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\well_known_types_embed.h 2025-06-01T21:33:50.1819862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h 2025-06-01T21:33:50.1825226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h 2025-06-01T21:33:50.1833404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\php\php_generator.h 2025-06-01T21:33:50.1842856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\python\python_generator.h 2025-06-01T21:33:50.1851218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\ruby\ruby_generator.h 2025-06-01T21:33:50.1863821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\coded_stream.h 2025-06-01T21:33:50.1869463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\gzip_stream.h 2025-06-01T21:33:50.1874578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\io_win32.h 2025-06-01T21:33:50.1879543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\printer.h 2025-06-01T21:33:50.1884710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\strtod.h 2025-06-01T21:33:50.2128246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\tokenizer.h 2025-06-01T21:33:50.2131694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream.h 2025-06-01T21:33:50.2135297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl.h 2025-06-01T21:33:50.2139192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h 2025-06-01T21:33:50.2147910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\bytestream.h 2025-06-01T21:33:50.2151622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\callback.h 2025-06-01T21:33:50.2155326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\casts.h 2025-06-01T21:33:50.2159926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\common.h 2025-06-01T21:33:50.2163386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\fastmem.h 2025-06-01T21:33:50.2166659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\hash.h 2025-06-01T21:33:50.2230603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\logging.h 2025-06-01T21:33:50.2233708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\macros.h 2025-06-01T21:33:50.2236987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\map_util.h 2025-06-01T21:33:50.2240584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\mutex.h 2025-06-01T21:33:50.2243888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\once.h 2025-06-01T21:33:50.2247335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\platform_macros.h 2025-06-01T21:33:50.2250874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\port.h 2025-06-01T21:33:50.2254276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\status.h 2025-06-01T21:33:50.2257638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stl_util.h 2025-06-01T21:33:50.2263130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stringpiece.h 2025-06-01T21:33:50.2267954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\strutil.h 2025-06-01T21:33:50.2272345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\template_util.h 2025-06-01T21:33:50.2281493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\delimited_message_util.h 2025-06-01T21:33:50.2286356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_comparator.h 2025-06-01T21:33:50.2291065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_mask_util.h 2025-06-01T21:33:50.2307805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\json_util.h 2025-06-01T21:33:50.2312759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\message_differencer.h 2025-06-01T21:33:50.2318427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\time_util.h 2025-06-01T21:33:50.2323877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver.h 2025-06-01T21:33:50.2329185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver_util.h 2025-06-01T21:33:50.2343836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\AbstractConfig.h 2025-06-01T21:33:50.2349791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityProfilerInterface.h 2025-06-01T21:33:50.2354873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityTraceInterface.h 2025-06-01T21:33:50.2363852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityType.h 2025-06-01T21:33:50.2368982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ClientInterface.h 2025-06-01T21:33:50.2373782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\Config.h 2025-06-01T21:33:50.2378725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\GenericTraceActivity.h 2025-06-01T21:33:50.2382557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\IActivityProfiler.h 2025-06-01T21:33:50.2387762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ILoggerObserver.h 2025-06-01T21:33:50.2392617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ITraceActivity.h 2025-06-01T21:33:50.2397475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\libkineto.h 2025-06-01T21:33:50.2423745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\LoggingAPI.h 2025-06-01T21:33:50.2427281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\output_base.h 2025-06-01T21:33:50.2432414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ThreadUtil.h 2025-06-01T21:33:50.2437677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\time_since_epoch.h 2025-06-01T21:33:50.2442899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\TraceSpan.h 2025-06-01T21:33:50.2452577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\legacy\ittnotify.h 2025-06-01T21:33:50.2462398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-new-delete.h 2025-06-01T21:33:50.2465994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-override.h 2025-06-01T21:33:50.2469525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-stats.h 2025-06-01T21:33:50.2478996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc.h 2025-06-01T21:33:50.2491241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.h 2025-06-01T21:33:50.2495983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.hpp 2025-06-01T21:33:50.2503632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.h 2025-06-01T21:33:50.2507220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.hpp 2025-06-01T21:33:50.2511513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common_types.h 2025-06-01T21:33:50.2519331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_config.h 2025-06-01T21:33:50.2522758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_debug.h 2025-06-01T21:33:50.2526598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.h 2025-06-01T21:33:50.2530810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.hpp 2025-06-01T21:33:50.2534854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.h 2025-06-01T21:33:50.2538605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp 2025-06-01T21:33:50.2542132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.h 2025-06-01T21:33:50.2545691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp 2025-06-01T21:33:50.2549262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_types.h 2025-06-01T21:33:50.2554261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.h 2025-06-01T21:33:50.2557800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.hpp 2025-06-01T21:33:50.2561192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl_types.h 2025-06-01T21:33:50.2566184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.h 2025-06-01T21:33:50.2569955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.hpp 2025-06-01T21:33:50.2573461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl_types.h 2025-06-01T21:33:50.2577005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.h 2025-06-01T21:33:50.2585124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.hpp 2025-06-01T21:33:50.2588699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp 2025-06-01T21:33:50.2592289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_types.h 2025-06-01T21:33:50.2596395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.h 2025-06-01T21:33:50.2618450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.hpp 2025-06-01T21:33:50.2622176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel_types.h 2025-06-01T21:33:50.2626207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version.h 2025-06-01T21:33:50.2629542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version_hash.h 2025-06-01T21:33:50.2639739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\attr.h 2025-06-01T21:33:50.2643249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\buffer_info.h 2025-06-01T21:33:50.2646696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\cast.h 2025-06-01T21:33:50.2650416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\chrono.h 2025-06-01T21:33:50.2653745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\common.h 2025-06-01T21:33:50.2657052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\complex.h 2025-06-01T21:33:50.2666489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen.h 2025-06-01T21:33:50.2671246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\embed.h 2025-06-01T21:33:50.2675921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eval.h 2025-06-01T21:33:50.2679431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\functional.h 2025-06-01T21:33:50.2684077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil.h 2025-06-01T21:33:50.2689042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_safe_call_once.h 2025-06-01T21:33:50.2693759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\iostream.h 2025-06-01T21:33:50.2697860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\numpy.h 2025-06-01T21:33:50.2703908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\operators.h 2025-06-01T21:33:50.2708839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\options.h 2025-06-01T21:33:50.2713930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pybind11.h 2025-06-01T21:33:50.2719724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pytypes.h 2025-06-01T21:33:50.2725138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl.h 2025-06-01T21:33:50.2729958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl_bind.h 2025-06-01T21:33:50.2733665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\type_caster_pyobject_ptr.h 2025-06-01T21:33:50.2738469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\typing.h 2025-06-01T21:33:50.2748578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\class.h 2025-06-01T21:33:50.2753523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\common.h 2025-06-01T21:33:50.2758578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\cpp_conduit.h 2025-06-01T21:33:50.2762344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\descr.h 2025-06-01T21:33:50.2767313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\exception_translation.h 2025-06-01T21:33:50.2774947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\init.h 2025-06-01T21:33:50.2779989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\internals.h 2025-06-01T21:33:50.2785007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\typeid.h 2025-06-01T21:33:50.2789897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\type_caster_base.h 2025-06-01T21:33:50.2795015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\value_and_holder.h 2025-06-01T21:33:50.2804104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\common.h 2025-06-01T21:33:50.2808933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\matrix.h 2025-06-01T21:33:50.2813683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\tensor.h 2025-06-01T21:33:50.2823496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl\filesystem.h 2025-06-01T21:33:50.2835680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class.h 2025-06-01T21:33:50.2839370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class_detail.h 2025-06-01T21:33:50.2843870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\extension.h 2025-06-01T21:33:50.2848600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\library.h 2025-06-01T21:33:50.2856781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\script.h 2025-06-01T21:33:50.2868015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\copy_utils.h 2025-06-01T21:33:50.2872872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\CudaIPCTypes.h 2025-06-01T21:33:50.2877617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DataLoader.h 2025-06-01T21:33:50.2881092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Device.h 2025-06-01T21:33:50.2891242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DeviceAccelerator.h 2025-06-01T21:33:50.2896035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Dtype.h 2025-06-01T21:33:50.2913930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DynamicTypes.h 2025-06-01T21:33:50.2917469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Event.h 2025-06-01T21:33:50.2922596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Exceptions.h 2025-06-01T21:33:50.2928488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Export.h 2025-06-01T21:33:50.2934088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Generator.h 2025-06-01T21:33:50.2939417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt.h 2025-06-01T21:33:50.2942825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt_wrapper.h 2025-06-01T21:33:50.2946266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Layout.h 2025-06-01T21:33:50.2951356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\MemoryFormat.h 2025-06-01T21:33:50.2954892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Module.h 2025-06-01T21:33:50.2958636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreter.h 2025-06-01T21:33:50.2962137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_dimname.h 2025-06-01T21:33:50.2967443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_headers.h 2025-06-01T21:33:50.2970965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\QScheme.h 2025-06-01T21:33:50.2974396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\serialization.h 2025-06-01T21:33:50.2977891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Size.h 2025-06-01T21:33:50.2981329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Storage.h 2025-06-01T21:33:50.2985028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageMethods.h 2025-06-01T21:33:50.2993086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageSharing.h 2025-06-01T21:33:50.2998118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Stream.h 2025-06-01T21:33:50.3001618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THConcat.h 2025-06-01T21:33:50.3004977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THP.h 2025-06-01T21:33:50.3008487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\TypeInfo.h 2025-06-01T21:33:50.3011790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Types.h 2025-06-01T21:33:50.3015126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils.h 2025-06-01T21:33:50.3031352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\all.h 2025-06-01T21:33:50.3034823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\arg.h 2025-06-01T21:33:50.3038256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\autograd.h 2025-06-01T21:33:50.3041749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\cuda.h 2025-06-01T21:33:50.3045003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data.h 2025-06-01T21:33:50.3048536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\enum.h 2025-06-01T21:33:50.3052042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\expanding_array.h 2025-06-01T21:33:50.3061289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\fft.h 2025-06-01T21:33:50.3066059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\imethod.h 2025-06-01T21:33:50.3070792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\jit.h 2025-06-01T21:33:50.3075334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\mps.h 2025-06-01T21:33:50.3079055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nested.h 2025-06-01T21:33:50.3083868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn.h 2025-06-01T21:33:50.3088589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim.h 2025-06-01T21:33:50.3093303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\ordered_dict.h 2025-06-01T21:33:50.3097256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python.h 2025-06-01T21:33:50.3102385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize.h 2025-06-01T21:33:50.3107289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\sparse.h 2025-06-01T21:33:50.3111874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\special.h 2025-06-01T21:33:50.3116946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\torch.h 2025-06-01T21:33:50.3120386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\types.h 2025-06-01T21:33:50.3125568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\utils.h 2025-06-01T21:33:50.3130648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\version.h 2025-06-01T21:33:50.3135966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\xpu.h 2025-06-01T21:33:50.3146643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader.h 2025-06-01T21:33:50.3150365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h 2025-06-01T21:33:50.3155509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets.h 2025-06-01T21:33:50.3160238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\example.h 2025-06-01T21:33:50.3164542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\iterator.h 2025-06-01T21:33:50.3173111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers.h 2025-06-01T21:33:50.3178093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms.h 2025-06-01T21:33:50.3183446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\worker_exception.h 2025-06-01T21:33:50.3191988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h 2025-06-01T21:33:50.3196912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h 2025-06-01T21:33:50.3201832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h 2025-06-01T21:33:50.3212266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\base.h 2025-06-01T21:33:50.3216917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h 2025-06-01T21:33:50.3220665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\map.h 2025-06-01T21:33:50.3225468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h 2025-06-01T21:33:50.3230341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h 2025-06-01T21:33:50.3235060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h 2025-06-01T21:33:50.3238569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h 2025-06-01T21:33:50.3253963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h 2025-06-01T21:33:50.3258953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\queue.h 2025-06-01T21:33:50.3262481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h 2025-06-01T21:33:50.3272472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\base.h 2025-06-01T21:33:50.3277330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h 2025-06-01T21:33:50.3282159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h 2025-06-01T21:33:50.3285977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\random.h 2025-06-01T21:33:50.3290811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h 2025-06-01T21:33:50.3301798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h 2025-06-01T21:33:50.3306561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h 2025-06-01T21:33:50.3315525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\base.h 2025-06-01T21:33:50.3320444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h 2025-06-01T21:33:50.3325595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h 2025-06-01T21:33:50.3330478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h 2025-06-01T21:33:50.3335185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h 2025-06-01T21:33:50.3345394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\static.h 2025-06-01T21:33:50.3350345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h 2025-06-01T21:33:50.3360369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\cloneable.h 2025-06-01T21:33:50.3365915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional.h 2025-06-01T21:33:50.3370727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\init.h 2025-06-01T21:33:50.3374563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\module.h 2025-06-01T21:33:50.3379590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules.h 2025-06-01T21:33:50.3389429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options.h 2025-06-01T21:33:50.3394619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h 2025-06-01T21:33:50.3398895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl.h 2025-06-01T21:33:50.3402463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils.h 2025-06-01T21:33:50.3411241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h 2025-06-01T21:33:50.3415021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h 2025-06-01T21:33:50.3418535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h 2025-06-01T21:33:50.3422099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h 2025-06-01T21:33:50.3429549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h 2025-06-01T21:33:50.3433219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h 2025-06-01T21:33:50.3436828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h 2025-06-01T21:33:50.3442022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h 2025-06-01T21:33:50.3445927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h 2025-06-01T21:33:50.3449745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h 2025-06-01T21:33:50.3453293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h 2025-06-01T21:33:50.3456726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h 2025-06-01T21:33:50.3460269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h 2025-06-01T21:33:50.3463723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h 2025-06-01T21:33:50.3467335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h 2025-06-01T21:33:50.3470935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h 2025-06-01T21:33:50.3479063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h 2025-06-01T21:33:50.3482870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h 2025-06-01T21:33:50.3486275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h 2025-06-01T21:33:50.3489632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\common.h 2025-06-01T21:33:50.3493030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h 2025-06-01T21:33:50.3501015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h 2025-06-01T21:33:50.3504431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h 2025-06-01T21:33:50.3507810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h 2025-06-01T21:33:50.3511213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h 2025-06-01T21:33:50.3514674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h 2025-06-01T21:33:50.3518150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h 2025-06-01T21:33:50.3522466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h 2025-06-01T21:33:50.3526260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h 2025-06-01T21:33:50.3529628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h 2025-06-01T21:33:50.3533134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h 2025-06-01T21:33:50.3536636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h 2025-06-01T21:33:50.3540265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h 2025-06-01T21:33:50.3543855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h 2025-06-01T21:33:50.3547382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h 2025-06-01T21:33:50.3550860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h 2025-06-01T21:33:50.3554548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h 2025-06-01T21:33:50.3558141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h 2025-06-01T21:33:50.3562566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h 2025-06-01T21:33:50.3570156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h 2025-06-01T21:33:50.3573768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h 2025-06-01T21:33:50.3577824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h 2025-06-01T21:33:50.3581466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h 2025-06-01T21:33:50.3588888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h 2025-06-01T21:33:50.3592563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h 2025-06-01T21:33:50.3596276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h 2025-06-01T21:33:50.3599812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h 2025-06-01T21:33:50.3603277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h 2025-06-01T21:33:50.3606780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h 2025-06-01T21:33:50.3615501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\activation.h 2025-06-01T21:33:50.3619113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h 2025-06-01T21:33:50.3622563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h 2025-06-01T21:33:50.3626076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\conv.h 2025-06-01T21:33:50.3629760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\distance.h 2025-06-01T21:33:50.3637011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h 2025-06-01T21:33:50.3640618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h 2025-06-01T21:33:50.3644342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\fold.h 2025-06-01T21:33:50.3647951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h 2025-06-01T21:33:50.3651261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\linear.h 2025-06-01T21:33:50.3654631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\loss.h 2025-06-01T21:33:50.3658123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h 2025-06-01T21:33:50.3661673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\padding.h 2025-06-01T21:33:50.3665023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h 2025-06-01T21:33:50.3669056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h 2025-06-01T21:33:50.3672477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h 2025-06-01T21:33:50.3675891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h 2025-06-01T21:33:50.3679452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h 2025-06-01T21:33:50.3683543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h 2025-06-01T21:33:50.3687025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h 2025-06-01T21:33:50.3690467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\vision.h 2025-06-01T21:33:50.3698752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h 2025-06-01T21:33:50.3706205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h 2025-06-01T21:33:50.3709734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h 2025-06-01T21:33:50.3713120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h 2025-06-01T21:33:50.3721715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adagrad.h 2025-06-01T21:33:50.3725287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adam.h 2025-06-01T21:33:50.3728661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adamw.h 2025-06-01T21:33:50.3732630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h 2025-06-01T21:33:50.3736558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\optimizer.h 2025-06-01T21:33:50.3739297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h 2025-06-01T21:33:50.3750466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\serialize.h 2025-06-01T21:33:50.3755098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\sgd.h 2025-06-01T21:33:50.3763963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h 2025-06-01T21:33:50.3769248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h 2025-06-01T21:33:50.3774549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h 2025-06-01T21:33:50.3787285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python\init.h 2025-06-01T21:33:50.3809956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\archive.h 2025-06-01T21:33:50.3813464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h 2025-06-01T21:33:50.3816828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h 2025-06-01T21:33:50.3820690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\tensor.h 2025-06-01T21:33:50.3838840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\anomaly_mode.h 2025-06-01T21:33:50.3843836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd.h 2025-06-01T21:33:50.3848732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h 2025-06-01T21:33:50.3852264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\cpp_hook.h 2025-06-01T21:33:50.3862511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\custom_function.h 2025-06-01T21:33:50.3867658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\edge.h 2025-06-01T21:33:50.3872725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\engine.h 2025-06-01T21:33:50.3876229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\forward_grad.h 2025-06-01T21:33:50.3880954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function.h 2025-06-01T21:33:50.3885885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\FunctionsManual.h 2025-06-01T21:33:50.3890794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function_hook.h 2025-06-01T21:33:50.3896094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\grad_mode.h 2025-06-01T21:33:50.3901086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\graph_task.h 2025-06-01T21:33:50.3904710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\InferenceMode.h 2025-06-01T21:33:50.3924893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_buffer.h 2025-06-01T21:33:50.3930129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_metadata.h 2025-06-01T21:33:50.3935146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\jit_decomp_interface.h 2025-06-01T21:33:50.3939981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler.h 2025-06-01T21:33:50.3944276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_kineto.h 2025-06-01T21:33:50.3949548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_legacy.h 2025-06-01T21:33:50.3953115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_python.h 2025-06-01T21:33:50.3958472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_anomaly_mode.h 2025-06-01T21:33:50.3966748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_autograd.h 2025-06-01T21:33:50.3970276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_cpp_function.h 2025-06-01T21:33:50.3975527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_engine.h 2025-06-01T21:33:50.3979304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_enum_tag.h 2025-06-01T21:33:50.3983215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_fft_functions.h 2025-06-01T21:33:50.3987008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_function.h 2025-06-01T21:33:50.3990839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_hook.h 2025-06-01T21:33:50.3995269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_legacy_variable.h 2025-06-01T21:33:50.3998985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_linalg_functions.h 2025-06-01T21:33:50.4008776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nested_functions.h 2025-06-01T21:33:50.4012257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nn_functions.h 2025-06-01T21:33:50.4015913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h 2025-06-01T21:33:50.4019693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_sparse_functions.h 2025-06-01T21:33:50.4024033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_special_functions.h 2025-06-01T21:33:50.4027652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_torch_functions.h 2025-06-01T21:33:50.4031356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable.h 2025-06-01T21:33:50.4035231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable_indexing.h 2025-06-01T21:33:50.4038979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\record_function_ops.h 2025-06-01T21:33:50.4042758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable.h 2025-06-01T21:33:50.4046326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable_hooks.h 2025-06-01T21:33:50.4053649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\symbolic.h 2025-06-01T21:33:50.4057057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable.h 2025-06-01T21:33:50.4062272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\VariableTypeUtils.h 2025-06-01T21:33:50.4067220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable_info.h 2025-06-01T21:33:50.4075656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\accumulate_grad.h 2025-06-01T21:33:50.4079171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\basic_ops.h 2025-06-01T21:33:50.4082672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\comm.h 2025-06-01T21:33:50.4086709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\pybind.h 2025-06-01T21:33:50.4094496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\tensor.h 2025-06-01T21:33:50.4097854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\utils.h 2025-06-01T21:33:50.4105697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\Functions.h 2025-06-01T21:33:50.4112900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_functions.h 2025-06-01T21:33:50.4116695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_return_types.h 2025-06-01T21:33:50.4125180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\VariableType.h 2025-06-01T21:33:50.4128754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\variable_factories.h 2025-06-01T21:33:50.4132665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\ViewFuncs.h 2025-06-01T21:33:50.4142104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\error_messages.h 2025-06-01T21:33:50.4145690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h 2025-06-01T21:33:50.4149211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h 2025-06-01T21:33:50.4152866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h 2025-06-01T21:33:50.4161223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\warnings.h 2025-06-01T21:33:50.4166979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\wrap_outputs.h 2025-06-01T21:33:50.4174858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cpu\Module.h 2025-06-01T21:33:50.4182077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\comm.h 2025-06-01T21:33:50.4185739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h 2025-06-01T21:33:50.4189148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\device_set.h 2025-06-01T21:33:50.4192517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Event.h 2025-06-01T21:33:50.4195932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\GdsFile.h 2025-06-01T21:33:50.4204021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\memory_snapshot.h 2025-06-01T21:33:50.4207536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Module.h 2025-06-01T21:33:50.4211143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\nccl.h 2025-06-01T21:33:50.4214502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_comm.h 2025-06-01T21:33:50.4217966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_nccl.h 2025-06-01T21:33:50.4221545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Stream.h 2025-06-01T21:33:50.4224840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\THCP.h 2025-06-01T21:33:50.4228105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\utils.h 2025-06-01T21:33:50.4240226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\autograd.h 2025-06-01T21:33:50.4243821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\python_autograd.h 2025-06-01T21:33:50.4247407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\utils.h 2025-06-01T21:33:50.4254264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\container.h 2025-06-01T21:33:50.4257701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\context.h 2025-06-01T21:33:50.4266697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h 2025-06-01T21:33:50.4279217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h 2025-06-01T21:33:50.4282764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h 2025-06-01T21:33:50.4290571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h 2025-06-01T21:33:50.4294282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h 2025-06-01T21:33:50.4297804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h 2025-06-01T21:33:50.4307026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h 2025-06-01T21:33:50.4310602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h 2025-06-01T21:33:50.4314528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h 2025-06-01T21:33:50.4318101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h 2025-06-01T21:33:50.4321663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h 2025-06-01T21:33:50.4325349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h 2025-06-01T21:33:50.4329182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h 2025-06-01T21:33:50.4337237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backend.hpp 2025-06-01T21:33:50.4340749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backoff.hpp 2025-06-01T21:33:50.4344304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\c10d.h 2025-06-01T21:33:50.4347653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\comm.hpp 2025-06-01T21:33:50.4351528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory-inl.h 2025-06-01T21:33:50.4354988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemory.hpp 2025-06-01T21:33:50.4363138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryTypes.hpp 2025-06-01T21:33:50.4368308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\CUDASymmetricMemoryUtils.hpp 2025-06-01T21:33:50.4373110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\debug.h 2025-06-01T21:33:50.4378128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp 2025-06-01T21:33:50.4382923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\DMAConnectivity.hpp 2025-06-01T21:33:50.4386873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\error.h 2025-06-01T21:33:50.4391583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\exception.h 2025-06-01T21:33:50.4396405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp 2025-06-01T21:33:50.4401213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FileStore.hpp 2025-06-01T21:33:50.4405611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp 2025-06-01T21:33:50.4410367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Functional.hpp 2025-06-01T21:33:50.4448372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp 2025-06-01T21:33:50.4453847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp 2025-06-01T21:33:50.4459159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\HashStore.hpp 2025-06-01T21:33:50.4464796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\intra_node_comm.hpp 2025-06-01T21:33:50.4474009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logger.hpp 2025-06-01T21:33:50.4477413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logging.h 2025-06-01T21:33:50.4482936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp 2025-06-01T21:33:50.4486593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp 2025-06-01T21:33:50.4490196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp 2025-06-01T21:33:50.4494546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp 2025-06-01T21:33:50.4500196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp 2025-06-01T21:33:50.4504185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp 2025-06-01T21:33:50.4507916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp 2025-06-01T21:33:50.4511835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp 2025-06-01T21:33:50.4516035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp 2025-06-01T21:33:50.4524418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp 2025-06-01T21:33:50.4529780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp 2025-06-01T21:33:50.4534064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp 2025-06-01T21:33:50.4538290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h 2025-06-01T21:33:50.4542006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp 2025-06-01T21:33:50.4545551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer.hpp 2025-06-01T21:33:50.4549135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp 2025-06-01T21:33:50.4552622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp 2025-06-01T21:33:50.4556112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket.h 2025-06-01T21:33:50.4559996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket_fmt.h 2025-06-01T21:33:50.4568682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Store.hpp 2025-06-01T21:33:50.4573099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\SymmetricMemory.hpp 2025-06-01T21:33:50.4576715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp 2025-06-01T21:33:50.4580199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp 2025-06-01T21:33:50.4584029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TraceUtils.h 2025-06-01T21:33:50.4587492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Types.hpp 2025-06-01T21:33:50.4590780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp 2025-06-01T21:33:50.4594256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp 2025-06-01T21:33:50.4597488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp 2025-06-01T21:33:50.4600934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Utils.hpp 2025-06-01T21:33:50.4604451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp 2025-06-01T21:33:50.4612236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Work.hpp 2025-06-01T21:33:50.4619786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp 2025-06-01T21:33:50.4623581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp 2025-06-01T21:33:50.4631456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp 2025-06-01T21:33:50.4635025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp 2025-06-01T21:33:50.4642154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp 2025-06-01T21:33:50.4650870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h 2025-06-01T21:33:50.4654468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h 2025-06-01T21:33:50.4658068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h 2025-06-01T21:33:50.4672173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\agent_utils.h 2025-06-01T21:33:50.4675812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\message.h 2025-06-01T21:33:50.4679257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_call.h 2025-06-01T21:33:50.4682776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_functions.h 2025-06-01T21:33:50.4690831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_remote_call.h 2025-06-01T21:33:50.4694361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_resp.h 2025-06-01T21:33:50.4697976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h 2025-06-01T21:33:50.4702186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\py_rref.h 2025-06-01T21:33:50.4705690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback.h 2025-06-01T21:33:50.4709192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h 2025-06-01T21:33:50.4712718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h 2025-06-01T21:33:50.4716231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc.h 2025-06-01T21:33:50.4719888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_agent.h 2025-06-01T21:33:50.4723432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h 2025-06-01T21:33:50.4728614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_context.h 2025-06-01T21:33:50.4733637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_impl.h 2025-06-01T21:33:50.4737326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_proto.h 2025-06-01T21:33:50.4742227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_call.h 2025-06-01T21:33:50.4747982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_remote_call.h 2025-06-01T21:33:50.4753112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_resp.h 2025-06-01T21:33:50.4760859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h 2025-06-01T21:33:50.4765843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h 2025-06-01T21:33:50.4770780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h 2025-06-01T21:33:50.4775745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\types.h 2025-06-01T21:33:50.4780545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h 2025-06-01T21:33:50.4784520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h 2025-06-01T21:33:50.4789437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\utils.h 2025-06-01T21:33:50.4799338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h 2025-06-01T21:33:50.4808713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h 2025-06-01T21:33:50.4813626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h 2025-06-01T21:33:50.4824125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h 2025-06-01T21:33:50.4829318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\testing.h 2025-06-01T21:33:50.4841378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cache_entry.h 2025-06-01T21:33:50.4846302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\compiled_autograd.h 2025-06-01T21:33:50.4851654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpp_shim.h 2025-06-01T21:33:50.4855228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_defs.h 2025-06-01T21:33:50.4865600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_includes.h 2025-06-01T21:33:50.4870376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\debug_macros.h 2025-06-01T21:33:50.4875144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame.h 2025-06-01T21:33:50.4878878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame_cpp.h 2025-06-01T21:33:50.4883727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\extra_state.h 2025-06-01T21:33:50.4888538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\framelocals_mapping.h 2025-06-01T21:33:50.4893338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\guards.h 2025-06-01T21:33:50.4897134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\init.h 2025-06-01T21:33:50.4902073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\python_compiled_autograd.h 2025-06-01T21:33:50.4906909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\utils.h 2025-06-01T21:33:50.4933917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pt2_archive_constants.h 2025-06-01T21:33:50.4939211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pybind.h 2025-06-01T21:33:50.4948318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\functorch\init.h 2025-06-01T21:33:50.4959067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\fx\node.h 2025-06-01T21:33:50.4969634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\array_ref_impl.h 2025-06-01T21:33:50.4973666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_prefix.h 2025-06-01T21:33:50.4977471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\inductor_ops.h 2025-06-01T21:33:50.4981125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\static_cuda_launcher.h 2025-06-01T21:33:50.4993460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h 2025-06-01T21:33:50.4996972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h 2025-06-01T21:33:50.5004412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\array_ref.h 2025-06-01T21:33:50.5007888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\common.h 2025-06-01T21:33:50.5011219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cpu.h 2025-06-01T21:33:50.5014680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cuda.h 2025-06-01T21:33:50.5019718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\mps.h 2025-06-01T21:33:50.5028370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\xpu.h 2025-06-01T21:33:50.5035895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h 2025-06-01T21:33:50.5039403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\pybind.h 2025-06-01T21:33:50.5065460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h 2025-06-01T21:33:50.5069722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h 2025-06-01T21:33:50.5074692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h 2025-06-01T21:33:50.5082882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h 2025-06-01T21:33:50.5086464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h 2025-06-01T21:33:50.5090018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\pybind.h 2025-06-01T21:33:50.5098051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h 2025-06-01T21:33:50.5101941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h 2025-06-01T21:33:50.5105377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h 2025-06-01T21:33:50.5113596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\interface.h 2025-06-01T21:33:50.5117249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h 2025-06-01T21:33:50.5120729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model.h 2025-06-01T21:33:50.5132604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h 2025-06-01T21:33:50.5133289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h 2025-06-01T21:33:50.5134034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h 2025-06-01T21:33:50.5137727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h 2025-06-01T21:33:50.5141550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils.h 2025-06-01T21:33:50.5144600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h 2025-06-01T21:33:50.5148106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h 2025-06-01T21:33:50.5156562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h 2025-06-01T21:33:50.5159695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h 2025-06-01T21:33:50.5163143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h 2025-06-01T21:33:50.5170868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h 2025-06-01T21:33:50.5174594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\utils.h 2025-06-01T21:33:50.5181902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h 2025-06-01T21:33:50.5185616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h 2025-06-01T21:33:50.5189010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h 2025-06-01T21:33:50.5192411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h 2025-06-01T21:33:50.5199840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h 2025-06-01T21:33:50.5203466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h 2025-06-01T21:33:50.5207598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h 2025-06-01T21:33:50.5215809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h 2025-06-01T21:33:50.5224289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h 2025-06-01T21:33:50.5227660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\common.h 2025-06-01T21:33:50.5231062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h 2025-06-01T21:33:50.5234467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h 2025-06-01T21:33:50.5237761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h 2025-06-01T21:33:50.5245948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h 2025-06-01T21:33:50.5252988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h 2025-06-01T21:33:50.5256326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h 2025-06-01T21:33:50.5259892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h 2025-06-01T21:33:50.5263135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h 2025-06-01T21:33:50.5271662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\instruction_counter\Module.h 2025-06-01T21:33:50.5279661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_log.h 2025-06-01T21:33:50.5283061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_opt_limit.h 2025-06-01T21:33:50.5286786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\resource_guard.h 2025-06-01T21:33:50.5293902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\compilation_unit.h 2025-06-01T21:33:50.5297783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\function_impl.h 2025-06-01T21:33:50.5301196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\method.h 2025-06-01T21:33:50.5304631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\module.h 2025-06-01T21:33:50.5307910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\object.h 2025-06-01T21:33:50.5324354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend.h 2025-06-01T21:33:50.5327938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_handler.h 2025-06-01T21:33:50.5331605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_info.h 2025-06-01T21:33:50.5335141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_detail.h 2025-06-01T21:33:50.5342945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_exception.h 2025-06-01T21:33:50.5346489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_init.h 2025-06-01T21:33:50.5351375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_interface.h 2025-06-01T21:33:50.5355095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_preprocess.h 2025-06-01T21:33:50.5358847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_resolver.h 2025-06-01T21:33:50.5370280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h 2025-06-01T21:33:50.5377866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h 2025-06-01T21:33:50.5381666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h 2025-06-01T21:33:50.5385342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h 2025-06-01T21:33:50.5393781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h 2025-06-01T21:33:50.5397580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h 2025-06-01T21:33:50.5407198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h 2025-06-01T21:33:50.5414614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h 2025-06-01T21:33:50.5423342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h 2025-06-01T21:33:50.5432158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h 2025-06-01T21:33:50.5445582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\cuda\interface.h 2025-06-01T21:33:50.5464506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h 2025-06-01T21:33:50.5464962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\codegen.h 2025-06-01T21:33:50.5465253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\compiler.h 2025-06-01T21:33:50.5465553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\executor.h 2025-06-01T21:33:50.5467807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fallback.h 2025-06-01T21:33:50.5471092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h 2025-06-01T21:33:50.5484316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\interface.h 2025-06-01T21:33:50.5487795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h 2025-06-01T21:33:50.5491330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h 2025-06-01T21:33:50.5495056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h 2025-06-01T21:33:50.5499161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h 2025-06-01T21:33:50.5502709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h 2025-06-01T21:33:50.5510482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h 2025-06-01T21:33:50.5513866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h 2025-06-01T21:33:50.5517522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h 2025-06-01T21:33:50.5525588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h 2025-06-01T21:33:50.5529275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h 2025-06-01T21:33:50.5537278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h 2025-06-01T21:33:50.5540823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h 2025-06-01T21:33:50.5544217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h 2025-06-01T21:33:50.5547642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h 2025-06-01T21:33:50.5555689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h 2025-06-01T21:33:50.5559156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\interface.h 2025-06-01T21:33:50.5562895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\kernel.h 2025-06-01T21:33:50.5566279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h 2025-06-01T21:33:50.5569817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h 2025-06-01T21:33:50.5573433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\operator.h 2025-06-01T21:33:50.5577847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h 2025-06-01T21:33:50.5586249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\cuda\cuda.h 2025-06-01T21:33:50.5593734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\builtin_functions.h 2025-06-01T21:33:50.5597315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h 2025-06-01T21:33:50.5601717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\concrete_module_type.h 2025-06-01T21:33:50.5610283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h 2025-06-01T21:33:50.5613916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\edit_distance.h 2025-06-01T21:33:50.5617362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\error_report.h 2025-06-01T21:33:50.5621143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\exit_transforms.h 2025-06-01T21:33:50.5624625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\function_schema_parser.h 2025-06-01T21:33:50.5628118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h 2025-06-01T21:33:50.5631513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\ir_emitter.h 2025-06-01T21:33:50.5635019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\lexer.h 2025-06-01T21:33:50.5638537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\mini_environment.h 2025-06-01T21:33:50.5642192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\name_mangler.h 2025-06-01T21:33:50.5645582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser.h 2025-06-01T21:33:50.5649614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser_constants.h 2025-06-01T21:33:50.5653079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parse_string_literal.h 2025-06-01T21:33:50.5656573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\resolver.h 2025-06-01T21:33:50.5660097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_matching.h 2025-06-01T21:33:50.5663846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_type_parser.h 2025-06-01T21:33:50.5667421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\script_type_parser.h 2025-06-01T21:33:50.5675339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_range.h 2025-06-01T21:33:50.5678984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_ref.h 2025-06-01T21:33:50.5682479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\strtod.h 2025-06-01T21:33:50.5685876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\sugared_value.h 2025-06-01T21:33:50.5689486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tracer.h 2025-06-01T21:33:50.5693037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree.h 2025-06-01T21:33:50.5696396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree_views.h 2025-06-01T21:33:50.5700477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\versioned_symbols.h 2025-06-01T21:33:50.5710882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\alias_analysis.h 2025-06-01T21:33:50.5714359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\attributes.h 2025-06-01T21:33:50.5717724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\constants.h 2025-06-01T21:33:50.5721259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_node_list.h 2025-06-01T21:33:50.5728713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_utils.h 2025-06-01T21:33:50.5732245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir.h 2025-06-01T21:33:50.5735897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\irparser.h 2025-06-01T21:33:50.5739455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir_views.h 2025-06-01T21:33:50.5742734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\named_value.h 2025-06-01T21:33:50.5746336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\node_hashing.h 2025-06-01T21:33:50.5749740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\scope.h 2025-06-01T21:33:50.5753857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\subgraph_matcher.h 2025-06-01T21:33:50.5757444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\type_hashing.h 2025-06-01T21:33:50.5765485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\code.h 2025-06-01T21:33:50.5769167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\debug_info.h 2025-06-01T21:33:50.5772656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\file_format.h 2025-06-01T21:33:50.5776153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h 2025-06-01T21:33:50.5784381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\frame.h 2025-06-01T21:33:50.5787796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\function.h 2025-06-01T21:33:50.5791477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import.h 2025-06-01T21:33:50.5794916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_data.h 2025-06-01T21:33:50.5798504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_export_common.h 2025-06-01T21:33:50.5802097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\interpreter.h 2025-06-01T21:33:50.5805716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\method.h 2025-06-01T21:33:50.5809290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\module.h 2025-06-01T21:33:50.5812582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\observer.h 2025-06-01T21:33:50.5816205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_bytecode.h 2025-06-01T21:33:50.5819777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_operators.h 2025-06-01T21:33:50.5824466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h 2025-06-01T21:33:50.5828264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\profiler_edge.h 2025-06-01T21:33:50.5832626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h 2025-06-01T21:33:50.5836235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\quantization.h 2025-06-01T21:33:50.5839888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h 2025-06-01T21:33:50.5843411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\type_parser.h 2025-06-01T21:33:50.5846974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h 2025-06-01T21:33:50.5858424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport.h 2025-06-01T21:33:50.5862075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h 2025-06-01T21:33:50.5865657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h 2025-06-01T21:33:50.5873468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h 2025-06-01T21:33:50.5881319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h 2025-06-01T21:33:50.5884997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h 2025-06-01T21:33:50.5888926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h 2025-06-01T21:33:50.5899280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h 2025-06-01T21:33:50.5903181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h 2025-06-01T21:33:50.5906685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h 2025-06-01T21:33:50.5910398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h 2025-06-01T21:33:50.5918496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h 2025-06-01T21:33:50.5921975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\context.h 2025-06-01T21:33:50.5925320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\registry.h 2025-06-01T21:33:50.5933626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\export_data.h 2025-06-01T21:33:50.5937558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\random.h 2025-06-01T21:33:50.5941312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\sequential.h 2025-06-01T21:33:50.5948076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h 2025-06-01T21:33:50.5956210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h 2025-06-01T21:33:50.5959980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h 2025-06-01T21:33:50.5963623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\utils.h 2025-06-01T21:33:50.5966977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\version_map.h 2025-06-01T21:33:50.5980637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\add_if_then_else.h 2025-06-01T21:33:50.5984518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\annotate_warns.h 2025-06-01T21:33:50.5987927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\autocast.h 2025-06-01T21:33:50.5992566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\bailout_graph.h 2025-06-01T21:33:50.6000959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\batch_mm.h 2025-06-01T21:33:50.6004375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize.h 2025-06-01T21:33:50.6008100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h 2025-06-01T21:33:50.6011638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\check_strict_fusion.h 2025-06-01T21:33:50.6015350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_profiling.h 2025-06-01T21:33:50.6019151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_undefinedness.h 2025-06-01T21:33:50.6022820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h 2025-06-01T21:33:50.6026244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\concat_opt.h 2025-06-01T21:33:50.6029776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_pooling.h 2025-06-01T21:33:50.6033279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_propagation.h 2025-06-01T21:33:50.6036932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h 2025-06-01T21:33:50.6041215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_functional_graphs.h 2025-06-01T21:33:50.6045093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dead_code_elimination.h 2025-06-01T21:33:50.6048629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\decompose_ops.h 2025-06-01T21:33:50.6052179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\device_type_analysis.h 2025-06-01T21:33:50.6061205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dtype_analysis.h 2025-06-01T21:33:50.6065138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h 2025-06-01T21:33:50.6068732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\erase_number_types.h 2025-06-01T21:33:50.6072329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h 2025-06-01T21:33:50.6075825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_conv_bn.h 2025-06-01T21:33:50.6079677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_linear_bn.h 2025-06-01T21:33:50.6083809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\freeze_module.h 2025-06-01T21:33:50.6087298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h 2025-06-01T21:33:50.6091204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h 2025-06-01T21:33:50.6099549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h 2025-06-01T21:33:50.6103169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h 2025-06-01T21:33:50.6106714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h 2025-06-01T21:33:50.6110323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h 2025-06-01T21:33:50.6114095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h 2025-06-01T21:33:50.6117916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_linear.h 2025-06-01T21:33:50.6121551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_relu.h 2025-06-01T21:33:50.6125067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_fuser.h 2025-06-01T21:33:50.6145555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h 2025-06-01T21:33:50.6153725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\guard_elimination.h 2025-06-01T21:33:50.6157231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h 2025-06-01T21:33:50.6160667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inliner.h 2025-06-01T21:33:50.6164299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h 2025-06-01T21:33:50.6167968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_forked_closures.h 2025-06-01T21:33:50.6171514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_fork_wait.h 2025-06-01T21:33:50.6175070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inplace_check.h 2025-06-01T21:33:50.6178598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\insert_guards.h 2025-06-01T21:33:50.6182188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\integer_value_refinement.h 2025-06-01T21:33:50.6189887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lift_closures.h 2025-06-01T21:33:50.6193344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\liveness.h 2025-06-01T21:33:50.6197245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\loop_unrolling.h 2025-06-01T21:33:50.6200849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_grad_of.h 2025-06-01T21:33:50.6204325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_graph.h 2025-06-01T21:33:50.6207750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_tuples.h 2025-06-01T21:33:50.6211327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\metal_rewrite.h 2025-06-01T21:33:50.6214755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h 2025-06-01T21:33:50.6218301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h 2025-06-01T21:33:50.6222030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\normalize_ops.h 2025-06-01T21:33:50.6234835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h 2025-06-01T21:33:50.6238571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx.h 2025-06-01T21:33:50.6242305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\pass_manager.h 2025-06-01T21:33:50.6245918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole.h 2025-06-01T21:33:50.6249789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h 2025-06-01T21:33:50.6253358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h 2025-06-01T21:33:50.6256960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h 2025-06-01T21:33:50.6261174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h 2025-06-01T21:33:50.6264907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\prepack_folding.h 2025-06-01T21:33:50.6268659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\refine_tuple_types.h 2025-06-01T21:33:50.6272671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_dropout.h 2025-06-01T21:33:50.6282978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_exceptions.h 2025-06-01T21:33:50.6286772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_expands.h 2025-06-01T21:33:50.6290376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h 2025-06-01T21:33:50.6294043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_mutation.h 2025-06-01T21:33:50.6298374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h 2025-06-01T21:33:50.6302294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h 2025-06-01T21:33:50.6306028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h 2025-06-01T21:33:50.6309891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\restore_mutation.h 2025-06-01T21:33:50.6313361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\shape_analysis.h 2025-06-01T21:33:50.6321298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h 2025-06-01T21:33:50.6324976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h 2025-06-01T21:33:50.6328628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h 2025-06-01T21:33:50.6332286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h 2025-06-01T21:33:50.6336271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h 2025-06-01T21:33:50.6340122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h 2025-06-01T21:33:50.6343964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h 2025-06-01T21:33:50.6348093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\value_refinement_utils.h 2025-06-01T21:33:50.6352130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\variadic_ops.h 2025-06-01T21:33:50.6355921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h 2025-06-01T21:33:50.6359471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h 2025-06-01T21:33:50.6367973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h 2025-06-01T21:33:50.6377076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h 2025-06-01T21:33:50.6380879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h 2025-06-01T21:33:50.6384551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_map.h 2025-06-01T21:33:50.6388091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h 2025-06-01T21:33:50.6396410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h 2025-06-01T21:33:50.6400321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h 2025-06-01T21:33:50.6404758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h 2025-06-01T21:33:50.6408476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h 2025-06-01T21:33:50.6411966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h 2025-06-01T21:33:50.6415575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\helper.h 2025-06-01T21:33:50.6419239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h 2025-06-01T21:33:50.6423125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\naming.h 2025-06-01T21:33:50.6426804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h 2025-06-01T21:33:50.6431205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\peephole.h 2025-06-01T21:33:50.6435471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h 2025-06-01T21:33:50.6439469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h 2025-06-01T21:33:50.6444058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h 2025-06-01T21:33:50.6448239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h 2025-06-01T21:33:50.6452174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h 2025-06-01T21:33:50.6456301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h 2025-06-01T21:33:50.6468763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h 2025-06-01T21:33:50.6472466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h 2025-06-01T21:33:50.6476113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h 2025-06-01T21:33:50.6484211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h 2025-06-01T21:33:50.6493277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h 2025-06-01T21:33:50.6496840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\finalize.h 2025-06-01T21:33:50.6500653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h 2025-06-01T21:33:50.6504059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\helper.h 2025-06-01T21:33:50.6512159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h 2025-06-01T21:33:50.6516003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h 2025-06-01T21:33:50.6519510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h 2025-06-01T21:33:50.6523493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h 2025-06-01T21:33:50.6527054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h 2025-06-01T21:33:50.6535062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h 2025-06-01T21:33:50.6538655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\memory_dag.h 2025-06-01T21:33:50.6542285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h 2025-06-01T21:33:50.6549465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\op_registry.h 2025-06-01T21:33:50.6552982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h 2025-06-01T21:33:50.6561197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\init.h 2025-06-01T21:33:50.6564605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\module_python.h 2025-06-01T21:33:50.6567999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind.h 2025-06-01T21:33:50.6571271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind_utils.h 2025-06-01T21:33:50.6575217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_arg_flatten.h 2025-06-01T21:33:50.6583204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_custom_class.h 2025-06-01T21:33:50.6586905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_dict.h 2025-06-01T21:33:50.6590384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ir.h 2025-06-01T21:33:50.6594603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ivalue.h 2025-06-01T21:33:50.6598061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_list.h 2025-06-01T21:33:50.6601734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_sugared_value.h 2025-06-01T21:33:50.6605104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tracer.h 2025-06-01T21:33:50.6608708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tree_views.h 2025-06-01T21:33:50.6612398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\script_init.h 2025-06-01T21:33:50.6616132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h 2025-06-01T21:33:50.6620006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h 2025-06-01T21:33:50.6628135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\argument_spec.h 2025-06-01T21:33:50.6631701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\autodiff.h 2025-06-01T21:33:50.6635135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h 2025-06-01T21:33:50.6639023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\custom_operator.h 2025-06-01T21:33:50.6648228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry.h 2025-06-01T21:33:50.6651569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h 2025-06-01T21:33:50.6655003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\exception_message.h 2025-06-01T21:33:50.6658579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor.h 2025-06-01T21:33:50.6662045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h 2025-06-01T21:33:50.6665508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_iterator.h 2025-06-01T21:33:50.6669216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\instruction.h 2025-06-01T21:33:50.6672796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter.h 2025-06-01T21:33:50.6676265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_exception.h 2025-06-01T21:33:50.6679867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_trace.h 2025-06-01T21:33:50.6683316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\logging.h 2025-06-01T21:33:50.6686726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator.h 2025-06-01T21:33:50.6690092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator_options.h 2025-06-01T21:33:50.6693858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\print_handler.h 2025-06-01T21:33:50.6697994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h 2025-06-01T21:33:50.6701862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_record.h 2025-06-01T21:33:50.6710115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\register_ops_utils.h 2025-06-01T21:33:50.6713966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\script_profile.h 2025-06-01T21:33:50.6717749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h 2025-06-01T21:33:50.6721394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\shape_function_registry.h 2025-06-01T21:33:50.6724803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h 2025-06-01T21:33:50.6728257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h 2025-06-01T21:33:50.6731754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_script.h 2025-06-01T21:33:50.6736065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h 2025-06-01T21:33:50.6739264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h 2025-06-01T21:33:50.6749453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\vararg_functions.h 2025-06-01T21:33:50.6753337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h 2025-06-01T21:33:50.6760795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h 2025-06-01T21:33:50.6764278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h 2025-06-01T21:33:50.6767889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\frame.h 2025-06-01T21:33:50.6771511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h 2025-06-01T21:33:50.6785028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\fusion.h 2025-06-01T21:33:50.6788616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\impl.h 2025-06-01T21:33:50.6792228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\init.h 2025-06-01T21:33:50.6795550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\memory_planner.h 2025-06-01T21:33:50.6799048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ops.h 2025-06-01T21:33:50.6802731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\passes.h 2025-06-01T21:33:50.6811000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h 2025-06-01T21:33:50.6814716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h 2025-06-01T21:33:50.6818206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\static_method.h 2025-06-01T21:33:50.6821799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h 2025-06-01T21:33:50.6830844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h 2025-06-01T21:33:50.6834308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export.h 2025-06-01T21:33:50.6837791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export_bytecode.h 2025-06-01T21:33:50.6849284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h 2025-06-01T21:33:50.6852402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h 2025-06-01T21:33:50.6855837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import.h 2025-06-01T21:33:50.6859311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_constants.h 2025-06-01T21:33:50.6863857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_functions.h 2025-06-01T21:33:50.6867127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_helpers.h 2025-06-01T21:33:50.6870560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_read.h 2025-06-01T21:33:50.6874082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_source.h 2025-06-01T21:33:50.6877740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h 2025-06-01T21:33:50.6882243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\onnx.h 2025-06-01T21:33:50.6885888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickle.h 2025-06-01T21:33:50.6889111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler.h 2025-06-01T21:33:50.6892766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\python_print.h 2025-06-01T21:33:50.6896391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization.h 2025-06-01T21:33:50.6900009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h 2025-06-01T21:33:50.6903556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\storage_context.h 2025-06-01T21:33:50.6907134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h 2025-06-01T21:33:50.6915120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\unpickler.h 2025-06-01T21:33:50.6924036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\analysis.h 2025-06-01T21:33:50.6927464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h 2025-06-01T21:33:50.6930957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h 2025-06-01T21:33:50.6934412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h 2025-06-01T21:33:50.6942109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\codegen.h 2025-06-01T21:33:50.6945513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h 2025-06-01T21:33:50.6949434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h 2025-06-01T21:33:50.6952874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h 2025-06-01T21:33:50.6956777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h 2025-06-01T21:33:50.6960888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\eval.h 2025-06-01T21:33:50.6964973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\exceptions.h 2025-06-01T21:33:50.6969299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\expr.h 2025-06-01T21:33:50.6973236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions.h 2025-06-01T21:33:50.6977438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h 2025-06-01T21:33:50.6981703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h 2025-06-01T21:33:50.6985904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h 2025-06-01T21:33:50.6989986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h 2025-06-01T21:33:50.6993738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\half_support.h 2025-06-01T21:33:50.6997354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h 2025-06-01T21:33:50.7001043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h 2025-06-01T21:33:50.7004680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir.h 2025-06-01T21:33:50.7012452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h 2025-06-01T21:33:50.7016358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h 2025-06-01T21:33:50.7020107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h 2025-06-01T21:33:50.7024136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h 2025-06-01T21:33:50.7027721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h 2025-06-01T21:33:50.7031320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h 2025-06-01T21:33:50.7034812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\kernel.h 2025-06-01T21:33:50.7038238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h 2025-06-01T21:33:50.7042085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h 2025-06-01T21:33:50.7045577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest.h 2025-06-01T21:33:50.7049164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h 2025-06-01T21:33:50.7056789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\lowerings.h 2025-06-01T21:33:50.7060547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h 2025-06-01T21:33:50.7064063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\reduction.h 2025-06-01T21:33:50.7067555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\registerizer.h 2025-06-01T21:33:50.7070993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\stmt.h 2025-06-01T21:33:50.7074593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensor.h 2025-06-01T21:33:50.7078723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h 2025-06-01T21:33:50.7082053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\types.h 2025-06-01T21:33:50.7085401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h 2025-06-01T21:33:50.7089467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h 2025-06-01T21:33:50.7098108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h 2025-06-01T21:33:50.7101955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h 2025-06-01T21:33:50.7105359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h 2025-06-01T21:33:50.7108648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h 2025-06-01T21:33:50.7112179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h 2025-06-01T21:33:50.7124139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h 2025-06-01T21:33:50.7127623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h 2025-06-01T21:33:50.7131054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h 2025-06-01T21:33:50.7134467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h 2025-06-01T21:33:50.7143195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\catch_utils.hpp 2025-06-01T21:33:50.7146493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\file_check.h 2025-06-01T21:33:50.7150009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\hooks_for_testing.h 2025-06-01T21:33:50.7162186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_data.h 2025-06-01T21:33:50.7165646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_device.h 2025-06-01T21:33:50.7169371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_interface.h 2025-06-01T21:33:50.7173665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\lowering_context.h 2025-06-01T21:33:50.7185478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\cache.h 2025-06-01T21:33:50.7188828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\config.h 2025-06-01T21:33:50.7192300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\debug_util.h 2025-06-01T21:33:50.7195870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\dynamic_ir.h 2025-06-01T21:33:50.7199238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\hash.h 2025-06-01T21:33:50.7208395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\helpers.h 2025-06-01T21:33:50.7212218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir.h 2025-06-01T21:33:50.7215998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_builder.h 2025-06-01T21:33:50.7219591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_dump_util.h 2025-06-01T21:33:50.7223069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_metadata.h 2025-06-01T21:33:50.7246306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_util.h 2025-06-01T21:33:50.7249716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h 2025-06-01T21:33:50.7253452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\metrics.h 2025-06-01T21:33:50.7256821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\multi_wait.h 2025-06-01T21:33:50.7260834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\permutation_util.h 2025-06-01T21:33:50.7264751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape.h 2025-06-01T21:33:50.7268566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape_inference.h 2025-06-01T21:33:50.7272125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor.h 2025-06-01T21:33:50.7275705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_impl.h 2025-06-01T21:33:50.7279205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_util.h 2025-06-01T21:33:50.7282822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\thread_pool.h 2025-06-01T21:33:50.7286570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\trie.h 2025-06-01T21:33:50.7290144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\unique.h 2025-06-01T21:33:50.7294104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\util.h 2025-06-01T21:33:50.7306076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h 2025-06-01T21:33:50.7313534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h 2025-06-01T21:33:50.7317173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\utils.h 2025-06-01T21:33:50.7325173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyIr.h 2025-06-01T21:33:50.7330994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h 2025-06-01T21:33:50.7334855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h 2025-06-01T21:33:50.7342148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\init.h 2025-06-01T21:33:50.7345672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\python_util.h 2025-06-01T21:33:50.7358035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\config.h 2025-06-01T21:33:50.7361651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h 2025-06-01T21:33:50.7365157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h 2025-06-01T21:33:50.7368745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h 2025-06-01T21:33:50.7377883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h 2025-06-01T21:33:50.7381646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h 2025-06-01T21:33:50.7385153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h 2025-06-01T21:33:50.7388777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h 2025-06-01T21:33:50.7392147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node.h 2025-06-01T21:33:50.7395816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h 2025-06-01T21:33:50.7403048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h 2025-06-01T21:33:50.7407026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h 2025-06-01T21:33:50.7410294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h 2025-06-01T21:33:50.7419690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\counters.h 2025-06-01T21:33:50.7423212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\events.h 2025-06-01T21:33:50.7426652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\python_init.h 2025-06-01T21:33:50.7433990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mps\Module.h 2025-06-01T21:33:50.7442597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\Module.h 2025-06-01T21:33:50.7450666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h 2025-06-01T21:33:50.7458344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\multiprocessing\init.h 2025-06-01T21:33:50.7465571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\back_compat.h 2025-06-01T21:33:50.7469703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\init.h 2025-06-01T21:33:50.7473642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\onnx.h 2025-06-01T21:33:50.7481735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\api.h 2025-06-01T21:33:50.7485265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\collection.h 2025-06-01T21:33:50.7489114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\combined_traceback.h 2025-06-01T21:33:50.7492588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\containers.h 2025-06-01T21:33:50.7501903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\data_flow.h 2025-06-01T21:33:50.7505335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\events.h 2025-06-01T21:33:50.7508724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_client_interface.h 2025-06-01T21:33:50.7512487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_shim.h 2025-06-01T21:33:50.7516012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf-inl.h 2025-06-01T21:33:50.7519321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf.h 2025-06-01T21:33:50.7522743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\util.h 2025-06-01T21:33:50.7530051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\observer.h 2025-06-01T21:33:50.7533672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\python_tracer.h 2025-06-01T21:33:50.7536986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\vulkan.h 2025-06-01T21:33:50.7544029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\combined_traceback.h 2025-06-01T21:33:50.7547470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\init.h 2025-06-01T21:33:50.7550929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\pybind.h 2025-06-01T21:33:50.7558071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h 2025-06-01T21:33:50.7561705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\itt_observer.h 2025-06-01T21:33:50.7565112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h 2025-06-01T21:33:50.7572823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h 2025-06-01T21:33:50.7580529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\stubs\base.h 2025-06-01T21:33:50.7587455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\action.h 2025-06-01T21:33:50.7591312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\communicate.h 2025-06-01T21:33:50.7594349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\debug_info.h 2025-06-01T21:33:50.7597768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h 2025-06-01T21:33:50.7605907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h 2025-06-01T21:33:50.7609140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h 2025-06-01T21:33:50.7612574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h 2025-06-01T21:33:50.7615908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fde.h 2025-06-01T21:33:50.7619250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\lexer.h 2025-06-01T21:33:50.7623100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\line_number_program.h 2025-06-01T21:33:50.7627056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\mem_file.h 2025-06-01T21:33:50.7631457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\range_table.h 2025-06-01T21:33:50.7635331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\sections.h 2025-06-01T21:33:50.7639148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind.h 2025-06-01T21:33:50.7642611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwinder.h 2025-06-01T21:33:50.7645967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind_error.h 2025-06-01T21:33:50.7653948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\library.h 2025-06-01T21:33:50.7661492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\tensor\python_tensor.h 2025-06-01T21:33:50.7680564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\byte_order.h 2025-06-01T21:33:50.7684170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cpp_stacktraces.h 2025-06-01T21:33:50.7687483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cuda_enabled.h 2025-06-01T21:33:50.7690863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\device_lazy_init.h 2025-06-01T21:33:50.7698532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\disable_torch_function.h 2025-06-01T21:33:50.7702158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\generated_serialization_types.h 2025-06-01T21:33:50.7706936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\init.h 2025-06-01T21:33:50.7710299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\invalid_arguments.h 2025-06-01T21:33:50.7713603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\nested.h 2025-06-01T21:33:50.7717722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\numpy_stub.h 2025-06-01T21:33:50.7721225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\object_ptr.h 2025-06-01T21:33:50.7724578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\out_types.h 2025-06-01T21:33:50.7727841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pybind.h 2025-06-01T21:33:50.7731109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pycfunction_helpers.h 2025-06-01T21:33:50.7734536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pyobject_preservation.h 2025-06-01T21:33:50.7738604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pythoncapi_compat.h 2025-06-01T21:33:50.7742287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_arg_parser.h 2025-06-01T21:33:50.7745916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_compat.h 2025-06-01T21:33:50.7749634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_dispatch.h 2025-06-01T21:33:50.7753075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_numbers.h 2025-06-01T21:33:50.7762453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_raii.h 2025-06-01T21:33:50.7766386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_scalars.h 2025-06-01T21:33:50.7769746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_strings.h 2025-06-01T21:33:50.7773534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_stub.h 2025-06-01T21:33:50.7777442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_symnode.h 2025-06-01T21:33:50.7781336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_torch_function_mode.h 2025-06-01T21:33:50.7784960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_tuples.h 2025-06-01T21:33:50.7788674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\schema_info.h 2025-06-01T21:33:50.7792667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\six.h 2025-06-01T21:33:50.7795923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\structseq.h 2025-06-01T21:33:50.7803439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_apply.h 2025-06-01T21:33:50.7807330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_dtypes.h 2025-06-01T21:33:50.7810869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_flatten.h 2025-06-01T21:33:50.7814444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_layouts.h 2025-06-01T21:33:50.7818468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_list.h 2025-06-01T21:33:50.7822471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_memoryformats.h 2025-06-01T21:33:50.7827733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_new.h 2025-06-01T21:33:50.7831055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_numpy.h 2025-06-01T21:33:50.7834816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_qschemes.h 2025-06-01T21:33:50.7842314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_types.h 2025-06-01T21:33:50.7846466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark-inl.h 2025-06-01T21:33:50.7849863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark.h 2025-06-01T21:33:50.7853384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\torch_dispatch_mode.h 2025-06-01T21:33:50.7857382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\variadic.h 2025-06-01T21:33:50.7861455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\verbose.h 2025-06-01T21:33:50.7870562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Event.h 2025-06-01T21:33:50.7874052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Module.h 2025-06-01T21:33:50.7877231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Stream.h 2025-06-01T21:33:50.7893093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\annotations.py 2025-06-01T21:33:50.7896737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\frontend.py 2025-06-01T21:33:50.7900384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\generate_bytecode.py 2025-06-01T21:33:50.7903891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\quantized.py 2025-06-01T21:33:50.7911648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\supported_ops.py 2025-06-01T21:33:50.7915234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\unsupported_tensor_ops.py 2025-06-01T21:33:50.7918510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_async.py 2025-06-01T21:33:50.7921760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_await.py 2025-06-01T21:33:50.7925049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_builtins.py 2025-06-01T21:33:50.7928474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_check.py 2025-06-01T21:33:50.7932087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_dataclass_impls.py 2025-06-01T21:33:50.7934975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decompositions.py 2025-06-01T21:33:50.7945141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decomposition_utils.py 2025-06-01T21:33:50.7946482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_freeze.py 2025-06-01T21:33:50.7949332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_fuser.py 2025-06-01T21:33:50.7956741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_ir_utils.py 2025-06-01T21:33:50.7998324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_logging.py 2025-06-01T21:33:50.8003972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_monkeytype_config.py 2025-06-01T21:33:50.8010063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_pickle.py 2025-06-01T21:33:50.8015000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_recursive.py 2025-06-01T21:33:50.8019267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.py 2025-06-01T21:33:50.8025012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.pyi 2025-06-01T21:33:50.8027542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_serialization.py 2025-06-01T21:33:50.8030788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_shape_functions.py 2025-06-01T21:33:50.8040724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_state.py 2025-06-01T21:33:50.8044199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_trace.py 2025-06-01T21:33:50.8047674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__init__.py 2025-06-01T21:33:50.8055979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__init__.py 2025-06-01T21:33:50.8063707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:50.8071445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\_property_propagation.py 2025-06-01T21:33:50.8074906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__init__.py 2025-06-01T21:33:50.8082961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\_property_propagation.cpython-39.pyc 2025-06-01T21:33:50.8086500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:50.8095886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\annotations.cpython-39.pyc 2025-06-01T21:33:50.8099541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\frontend.cpython-39.pyc 2025-06-01T21:33:50.8103658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\generate_bytecode.cpython-39.pyc 2025-06-01T21:33:50.8115531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\quantized.cpython-39.pyc 2025-06-01T21:33:50.8119410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\supported_ops.cpython-39.pyc 2025-06-01T21:33:50.8123958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\unsupported_tensor_ops.cpython-39.pyc 2025-06-01T21:33:50.8127996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_async.cpython-39.pyc 2025-06-01T21:33:50.8133326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_await.cpython-39.pyc 2025-06-01T21:33:50.8137853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_builtins.cpython-39.pyc 2025-06-01T21:33:50.8142912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_check.cpython-39.pyc 2025-06-01T21:33:50.8148250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_dataclass_impls.cpython-39.pyc 2025-06-01T21:33:50.8152372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decompositions.cpython-39.pyc 2025-06-01T21:33:50.8156077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decomposition_utils.cpython-39.pyc 2025-06-01T21:33:50.8159527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_freeze.cpython-39.pyc 2025-06-01T21:33:50.8163022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_fuser.cpython-39.pyc 2025-06-01T21:33:50.8167255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_ir_utils.cpython-39.pyc 2025-06-01T21:33:50.8171347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_logging.cpython-39.pyc 2025-06-01T21:33:50.8180192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_monkeytype_config.cpython-39.pyc 2025-06-01T21:33:50.8185339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_pickle.cpython-39.pyc 2025-06-01T21:33:50.8188612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_recursive.cpython-39.pyc 2025-06-01T21:33:50.8192919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_script.cpython-39.pyc 2025-06-01T21:33:50.8197320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_serialization.cpython-39.pyc 2025-06-01T21:33:50.8201117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_shape_functions.cpython-39.pyc 2025-06-01T21:33:50.8204611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_state.cpython-39.pyc 2025-06-01T21:33:50.8208187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_trace.cpython-39.pyc 2025-06-01T21:33:50.8217139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:50.8226205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.dll 2025-06-01T21:33:50.8231047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.lib 2025-06-01T21:33:50.8236161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\asmjit.dll 2025-06-01T21:33:50.8243549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\asmjit.lib 2025-06-01T21:33:50.8248675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.dll 2025-06-01T21:33:50.8260331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.lib 2025-06-01T21:33:50.8265364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.dll 2025-06-01T21:33:50.8277226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.lib 2025-06-01T21:33:50.8286891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\cpuinfo.lib 2025-06-01T21:33:50.8292770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\dnnl.lib 2025-06-01T21:33:51.2414176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fbgemm.dll 2025-06-01T21:33:51.2455570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fbgemm.lib 2025-06-01T21:33:51.2488636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fmt.lib 2025-06-01T21:33:51.2503643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.dll 2025-06-01T21:33:51.2510323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.lib 2025-06-01T21:33:51.2514881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\kineto.lib 2025-06-01T21:33:51.2633329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libittnotify.lib 2025-06-01T21:33:51.2638684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf-lite.lib 2025-06-01T21:33:51.2669256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf.lib 2025-06-01T21:33:51.2900375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotoc.lib 2025-06-01T21:33:51.3139914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\microkernels-prod.lib 2025-06-01T21:33:51.3158308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\pthreadpool.lib 2025-06-01T21:33:51.3163370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.dll 2025-06-01T21:33:51.3167778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.lib 2025-06-01T21:33:51.3171308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\sleef.lib 2025-06-01T21:33:51.3230985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.dll 2025-06-01T21:33:51.3236112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.lib 2025-06-01T21:33:51.3242149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.dll 2025-06-01T21:33:51.3251963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.lib 2025-06-01T21:33:51.3257243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.dll 2025-06-01T21:33:51.4144184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.lib 2025-06-01T21:33:51.4301287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_global_deps.dll 2025-06-01T21:33:51.4305544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.dll 2025-06-01T21:33:51.4397329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.lib 2025-06-01T21:33:51.4402964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\XNNPACK.lib 2025-06-01T21:33:51.4422653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\_C.lib 2025-06-01T21:33:51.4894514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\alloc_info.h 2025-06-01T21:33:51.4899223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\err.h 2025-06-01T21:33:51.4928008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\libshm.h 2025-06-01T21:33:51.4941242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\socket.h 2025-06-01T21:33:51.4951789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm_windows\libshm.h 2025-06-01T21:33:51.4972958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__init__.py 2025-06-01T21:33:51.5007272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5020050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_docs.py 2025-06-01T21:33:51.5025690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_ops.py 2025-06-01T21:33:51.5029521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__init__.py 2025-06-01T21:33:51.5038502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\binary.py 2025-06-01T21:33:51.5043801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\core.py 2025-06-01T21:33:51.5047508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\creation.py 2025-06-01T21:33:51.5051180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\passthrough.py 2025-06-01T21:33:51.5054723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\reductions.py 2025-06-01T21:33:51.5062887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\unary.py 2025-06-01T21:33:51.5066549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\_ops_refs.py 2025-06-01T21:33:51.5069917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__init__.py 2025-06-01T21:33:51.5077205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\binary.cpython-39.pyc 2025-06-01T21:33:51.5080684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\core.cpython-39.pyc 2025-06-01T21:33:51.5084589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\creation.cpython-39.pyc 2025-06-01T21:33:51.5093235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\passthrough.cpython-39.pyc 2025-06-01T21:33:51.5097467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\reductions.cpython-39.pyc 2025-06-01T21:33:51.5101373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\unary.cpython-39.pyc 2025-06-01T21:33:51.5105318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\_ops_refs.cpython-39.pyc 2025-06-01T21:33:51.5108813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5120470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_docs.cpython-39.pyc 2025-06-01T21:33:51.5124299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_ops.cpython-39.pyc 2025-06-01T21:33:51.5128160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5141758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__init__.py 2025-06-01T21:33:51.5149957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5157431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\event.py 2025-06-01T21:33:51.5160792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\profiler.py 2025-06-01T21:33:51.5164679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__init__.py 2025-06-01T21:33:51.5172125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\event.cpython-39.pyc 2025-06-01T21:33:51.5176045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\profiler.cpython-39.pyc 2025-06-01T21:33:51.5179807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5191208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\memory.py 2025-06-01T21:33:51.5194641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\_utils.py 2025-06-01T21:33:51.5198123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__init__.py 2025-06-01T21:33:51.5204893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\memory.cpython-39.pyc 2025-06-01T21:33:51.5208520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:51.5212230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5223762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\pool.py 2025-06-01T21:33:51.5227099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\queue.py 2025-06-01T21:33:51.5230806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\reductions.py 2025-06-01T21:33:51.5234424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\spawn.py 2025-06-01T21:33:51.5237797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\_atfork.py 2025-06-01T21:33:51.5244681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__init__.py 2025-06-01T21:33:51.5254795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\pool.cpython-39.pyc 2025-06-01T21:33:51.5258773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\queue.cpython-39.pyc 2025-06-01T21:33:51.5263633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\reductions.cpython-39.pyc 2025-06-01T21:33:51.5278660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\spawn.cpython-39.pyc 2025-06-01T21:33:51.5282355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\_atfork.cpython-39.pyc 2025-06-01T21:33:51.5287257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5298526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__init__.py 2025-06-01T21:33:51.5308231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_int.py 2025-06-01T21:33:51.5311786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_tensor.py 2025-06-01T21:33:51.5316597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\ops.py 2025-06-01T21:33:51.5321882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\sdpa.py 2025-06-01T21:33:51.5331077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__init__.py 2025-06-01T21:33:51.5339343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_int.cpython-39.pyc 2025-06-01T21:33:51.5344238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_tensor.cpython-39.pyc 2025-06-01T21:33:51.5349198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\ops.cpython-39.pyc 2025-06-01T21:33:51.5358751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\sdpa.cpython-39.pyc 2025-06-01T21:33:51.5363763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5374162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5385468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\common_types.py 2025-06-01T21:33:51.5390181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\cpp.py 2025-06-01T21:33:51.5393900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.py 2025-06-01T21:33:51.5400485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.pyi 2025-06-01T21:33:51.5411025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\grad.py 2025-06-01T21:33:51.5415941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\init.py 2025-06-01T21:33:51.5421065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.py 2025-06-01T21:33:51.5426016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.pyi 2025-06-01T21:33:51.5431426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\_reduction.py 2025-06-01T21:33:51.5435142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__init__.py 2025-06-01T21:33:51.5445397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\bias.py 2025-06-01T21:33:51.5450488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\flex_attention.py 2025-06-01T21:33:51.5456090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\_utils.py 2025-06-01T21:33:51.5461151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__init__.py 2025-06-01T21:33:51.5476063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\_paged_attention.py 2025-06-01T21:33:51.5481162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__init__.py 2025-06-01T21:33:51.5491309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\_paged_attention.cpython-39.pyc 2025-06-01T21:33:51.5505161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5515234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\bias.cpython-39.pyc 2025-06-01T21:33:51.5521237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\flex_attention.cpython-39.pyc 2025-06-01T21:33:51.5527165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:51.5624053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5634624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\thnn.py 2025-06-01T21:33:51.5638452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__init__.py 2025-06-01T21:33:51.5646793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\thnn.cpython-39.pyc 2025-06-01T21:33:51.5650585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5660188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__init__.py 2025-06-01T21:33:51.5668024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\fused.py 2025-06-01T21:33:51.5672044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__init__.py 2025-06-01T21:33:51.5680011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-06-01T21:33:51.5683536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.5691622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__init__.py 2025-06-01T21:33:51.5701443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\conv_fused.py 2025-06-01T21:33:51.5706883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_fused.py 2025-06-01T21:33:51.5712156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_relu.py 2025-06-01T21:33:51.5716018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__init__.py 2025-06-01T21:33:51.5804664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-06-01T21:33:51.5808530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-06-01T21:33:51.5813699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-06-01T21:33:51.6022931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.6030827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.6040197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__init__.py 2025-06-01T21:33:51.6047898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__init__.py 2025-06-01T21:33:51.6054869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-06-01T21:33:51.6058370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-06-01T21:33:51.6065163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-06-01T21:33:51.6068871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.6076411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.6084199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\bn_relu.py 2025-06-01T21:33:51.6087630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\conv_relu.py 2025-06-01T21:33:51.6090837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\linear_relu.py 2025-06-01T21:33:51.6094127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__init__.py 2025-06-01T21:33:51.6232987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-06-01T21:33:51.6236607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-06-01T21:33:51.6240271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-06-01T21:33:51.6324196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:51.6333852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:52.1562264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:52.1570580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\activation.py 2025-06-01T21:33:52.1575134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\adaptive.py 2025-06-01T21:33:52.1578658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\batchnorm.py 2025-06-01T21:33:52.1582691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\channelshuffle.py 2025-06-01T21:33:52.1683396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\container.py 2025-06-01T21:33:52.1686982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\conv.py 2025-06-01T21:33:52.1690941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\distance.py 2025-06-01T21:33:52.1694599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\dropout.py 2025-06-01T21:33:52.1697944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\flatten.py 2025-06-01T21:33:52.1701782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\fold.py 2025-06-01T21:33:52.1705087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\instancenorm.py 2025-06-01T21:33:52.1708603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\lazy.py 2025-06-01T21:33:52.1712090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\linear.py 2025-06-01T21:33:52.1715343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\loss.py 2025-06-01T21:33:52.1719283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\module.py 2025-06-01T21:33:52.1723860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\normalization.py 2025-06-01T21:33:52.2975842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\padding.py 2025-06-01T21:33:52.2981353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pixelshuffle.py 2025-06-01T21:33:52.2986091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pooling.py 2025-06-01T21:33:52.2992668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\rnn.py 2025-06-01T21:33:52.2998246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\sparse.py 2025-06-01T21:33:52.3003634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\transformer.py 2025-06-01T21:33:52.3009130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\upsampling.py 2025-06-01T21:33:52.3013105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\utils.py 2025-06-01T21:33:52.3018834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\_functions.py 2025-06-01T21:33:52.3023703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__init__.py 2025-06-01T21:33:52.3066173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\activation.cpython-39.pyc 2025-06-01T21:33:52.3072411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\adaptive.cpython-39.pyc 2025-06-01T21:33:52.3078349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\batchnorm.cpython-39.pyc 2025-06-01T21:33:52.3159187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\channelshuffle.cpython-39.pyc 2025-06-01T21:33:52.3162808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\container.cpython-39.pyc 2025-06-01T21:33:52.3167805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:52.3171819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\distance.cpython-39.pyc 2025-06-01T21:33:52.3176545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\dropout.cpython-39.pyc 2025-06-01T21:33:52.3180212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\flatten.cpython-39.pyc 2025-06-01T21:33:52.3184952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\fold.cpython-39.pyc 2025-06-01T21:33:52.3188872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\instancenorm.cpython-39.pyc 2025-06-01T21:33:52.3194022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\lazy.cpython-39.pyc 2025-06-01T21:33:52.3197977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:52.3201731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\loss.cpython-39.pyc 2025-06-01T21:33:52.3209417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\module.cpython-39.pyc 2025-06-01T21:33:52.3215282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\normalization.cpython-39.pyc 2025-06-01T21:33:52.3219636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\padding.cpython-39.pyc 2025-06-01T21:33:52.8414769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pixelshuffle.cpython-39.pyc 2025-06-01T21:33:52.8418295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pooling.cpython-39.pyc 2025-06-01T21:33:52.8422524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:52.8427071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\sparse.cpython-39.pyc 2025-06-01T21:33:52.8431204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\transformer.cpython-39.pyc 2025-06-01T21:33:52.8435082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\upsampling.cpython-39.pyc 2025-06-01T21:33:52.8438881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:52.8443316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\_functions.cpython-39.pyc 2025-06-01T21:33:52.8447114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.3583626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\comm.py 2025-06-01T21:33:53.3587360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\data_parallel.py 2025-06-01T21:33:53.3591352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\distributed.py 2025-06-01T21:33:53.3596079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\parallel_apply.py 2025-06-01T21:33:53.3716184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\replicate.py 2025-06-01T21:33:53.3719580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\scatter_gather.py 2025-06-01T21:33:53.3724051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\_functions.py 2025-06-01T21:33:53.3727471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__init__.py 2025-06-01T21:33:53.3735361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\comm.cpython-39.pyc 2025-06-01T21:33:53.3739905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\data_parallel.cpython-39.pyc 2025-06-01T21:33:53.3743504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\distributed.cpython-39.pyc 2025-06-01T21:33:53.4265265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\parallel_apply.cpython-39.pyc 2025-06-01T21:33:53.4268821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\replicate.cpython-39.pyc 2025-06-01T21:33:53.4272803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\scatter_gather.cpython-39.pyc 2025-06-01T21:33:53.4276409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\_functions.cpython-39.pyc 2025-06-01T21:33:53.4279966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.4301787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__init__.py 2025-06-01T21:33:53.4302473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__init__.py 2025-06-01T21:33:53.4303245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\linear.py 2025-06-01T21:33:53.4306768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__init__.py 2025-06-01T21:33:53.4313805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:53.4317518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.4324958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.4332457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\conv.py 2025-06-01T21:33:53.4335955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\embedding_ops.py 2025-06-01T21:33:53.4339279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\linear.py 2025-06-01T21:33:53.4864631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__init__.py 2025-06-01T21:33:53.4876266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:53.4879920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-06-01T21:33:53.4883480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:53.5426898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.5434958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.5443815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__init__.py 2025-06-01T21:33:53.5451315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\activation.py 2025-06-01T21:33:53.5454717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\rnn.py 2025-06-01T21:33:53.5458230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__init__.py 2025-06-01T21:33:53.5465691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-06-01T21:33:53.5469643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:53.5473170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.5922568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.5933933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\functional.py 2025-06-01T21:33:53.5937384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__init__.py 2025-06-01T21:33:53.5948297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__init__.py 2025-06-01T21:33:53.5957696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\conv.py 2025-06-01T21:33:53.5961182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\linear.py 2025-06-01T21:33:53.5965902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\rnn.py 2025-06-01T21:33:53.5970756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__init__.py 2025-06-01T21:33:53.5980776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:53.5984543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:53.5989606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:53.5998948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6008809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6020269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\activation.py 2025-06-01T21:33:53.6024227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\batchnorm.py 2025-06-01T21:33:53.6028896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\conv.py 2025-06-01T21:33:53.6032614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\dropout.py 2025-06-01T21:33:53.6037497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\embedding_ops.py 2025-06-01T21:33:53.6045773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\functional_modules.py 2025-06-01T21:33:53.6049395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\linear.py 2025-06-01T21:33:53.6054153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\normalization.py 2025-06-01T21:33:53.6059410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\rnn.py 2025-06-01T21:33:53.6064163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\utils.py 2025-06-01T21:33:53.6067587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__init__.py 2025-06-01T21:33:53.6077527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-06-01T21:33:53.6082824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-06-01T21:33:53.6088080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:53.6096569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-06-01T21:33:53.6101507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-06-01T21:33:53.6106611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-06-01T21:33:53.6111594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:53.6115293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-06-01T21:33:53.6130481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:53.6135687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:53.6141225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6156126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__init__.py 2025-06-01T21:33:53.6165351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\conv.py 2025-06-01T21:33:53.6168584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\linear.py 2025-06-01T21:33:53.6171943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\rnn.py 2025-06-01T21:33:53.6175323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\sparse.py 2025-06-01T21:33:53.6180543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\utils.py 2025-06-01T21:33:53.6183943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__init__.py 2025-06-01T21:33:53.6195386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:53.6199767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\linear.cpython-39.pyc 2025-06-01T21:33:53.6203635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:53.6212889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\sparse.cpython-39.pyc 2025-06-01T21:33:53.6216475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:53.6220585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6228325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6236608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-06-01T21:33:53.6240149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6248511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\clip_grad.py 2025-06-01T21:33:53.6252226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\convert_parameters.py 2025-06-01T21:33:53.6255690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\fusion.py 2025-06-01T21:33:53.6259132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\init.py 2025-06-01T21:33:53.6262592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\memory_format.py 2025-06-01T21:33:53.6272829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrizations.py 2025-06-01T21:33:53.6276384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrize.py 2025-06-01T21:33:53.6279979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\prune.py 2025-06-01T21:33:53.6284519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\rnn.py 2025-06-01T21:33:53.6287735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\spectral_norm.py 2025-06-01T21:33:53.6291153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\stateless.py 2025-06-01T21:33:53.6294722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\weight_norm.py 2025-06-01T21:33:53.6298333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_deprecation_utils.py 2025-06-01T21:33:53.6302372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_named_member_accessor.py 2025-06-01T21:33:53.6306141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_per_sample_grad.py 2025-06-01T21:33:53.6309263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__init__.py 2025-06-01T21:33:53.6316602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_expanded_weights.py 2025-06-01T21:33:53.6320198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_utils.py 2025-06-01T21:33:53.6323842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py 2025-06-01T21:33:53.6331591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_impl.py 2025-06-01T21:33:53.6335548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_utils.py 2025-06-01T21:33:53.6339208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py 2025-06-01T21:33:53.6342796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py 2025-06-01T21:33:53.6346367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py 2025-06-01T21:33:53.6349837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\linear_expanded_weights.py 2025-06-01T21:33:53.6353486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__init__.py 2025-06-01T21:33:53.6360919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_expanded_weights.cpython-39.pyc 2025-06-01T21:33:53.6364724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_utils.cpython-39.pyc 2025-06-01T21:33:53.6368341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\embedding_expanded_weights.cpython-39.pyc 2025-06-01T21:33:53.6377165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_impl.cpython-39.pyc 2025-06-01T21:33:53.6381243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_utils.cpython-39.pyc 2025-06-01T21:33:53.6384783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\group_norm_expanded_weights.cpython-39.pyc 2025-06-01T21:33:53.6388477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\instance_norm_expanded_weights.cpython-39.pyc 2025-06-01T21:33:53.6392077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\layer_norm_expanded_weights.cpython-39.pyc 2025-06-01T21:33:53.6395625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\linear_expanded_weights.cpython-39.pyc 2025-06-01T21:33:53.6399141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6407591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\clip_grad.cpython-39.pyc 2025-06-01T21:33:53.6411270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\convert_parameters.cpython-39.pyc 2025-06-01T21:33:53.6414856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\fusion.cpython-39.pyc 2025-06-01T21:33:53.6422597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\init.cpython-39.pyc 2025-06-01T21:33:53.6426172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\memory_format.cpython-39.pyc 2025-06-01T21:33:53.6431791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrizations.cpython-39.pyc 2025-06-01T21:33:53.6436381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrize.cpython-39.pyc 2025-06-01T21:33:53.6441512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\prune.cpython-39.pyc 2025-06-01T21:33:53.6445555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\rnn.cpython-39.pyc 2025-06-01T21:33:53.6450708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\spectral_norm.cpython-39.pyc 2025-06-01T21:33:53.6456038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\stateless.cpython-39.pyc 2025-06-01T21:33:53.6460983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\weight_norm.cpython-39.pyc 2025-06-01T21:33:53.6464818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_deprecation_utils.cpython-39.pyc 2025-06-01T21:33:53.6468381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_named_member_accessor.cpython-39.pyc 2025-06-01T21:33:53.6472611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_per_sample_grad.cpython-39.pyc 2025-06-01T21:33:53.6476293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6484839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\common_types.cpython-39.pyc 2025-06-01T21:33:53.6488845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\cpp.cpython-39.pyc 2025-06-01T21:33:53.6492493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\functional.cpython-39.pyc 2025-06-01T21:33:53.6503634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\grad.cpython-39.pyc 2025-06-01T21:33:53.6508610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\init.cpython-39.pyc 2025-06-01T21:33:53.6513511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\parameter.cpython-39.pyc 2025-06-01T21:33:53.6518302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\_reduction.cpython-39.pyc 2025-06-01T21:33:53.6523119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6535281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\errors.py 2025-06-01T21:33:53.6539013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\operators.py 2025-06-01T21:33:53.6543791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_caffe2.py 2025-06-01T21:33:53.6549020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_helper.py 2025-06-01T21:33:53.6558142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset10.py 2025-06-01T21:33:53.6562130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset11.py 2025-06-01T21:33:53.6568423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset12.py 2025-06-01T21:33:53.6573469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset13.py 2025-06-01T21:33:53.6578593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset14.py 2025-06-01T21:33:53.6583510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset15.py 2025-06-01T21:33:53.6588342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset16.py 2025-06-01T21:33:53.6593545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset17.py 2025-06-01T21:33:53.6597277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset18.py 2025-06-01T21:33:53.6602165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset19.py 2025-06-01T21:33:53.6607047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset20.py 2025-06-01T21:33:53.6611924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset7.py 2025-06-01T21:33:53.6615696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset8.py 2025-06-01T21:33:53.6636118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset9.py 2025-06-01T21:33:53.6642781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\utils.py 2025-06-01T21:33:53.6648531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\verification.py 2025-06-01T21:33:53.6659759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_constants.py 2025-06-01T21:33:53.6663346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_experimental.py 2025-06-01T21:33:53.6666770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_flags.py 2025-06-01T21:33:53.6672077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_globals.py 2025-06-01T21:33:53.6675626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_onnx_supported_ops.py 2025-06-01T21:33:53.6679112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_type_utils.py 2025-06-01T21:33:53.6682753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__init__.py 2025-06-01T21:33:53.6692139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_symbolic_impl.py 2025-06-01T21:33:53.6695725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__init__.py 2025-06-01T21:33:53.6703826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_symbolic_impl.cpython-39.pyc 2025-06-01T21:33:53.6707489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6717921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\io_adapter.py 2025-06-01T21:33:53.6721460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\jit_utils.py 2025-06-01T21:33:53.6724908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\onnxruntime.py 2025-06-01T21:33:53.6733178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\onnx_proto_utils.py 2025-06-01T21:33:53.6736657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\registration.py 2025-06-01T21:33:53.6740174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_exporter_legacy.py 2025-06-01T21:33:53.6743667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_lazy_import.py 2025-06-01T21:33:53.6747086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__init__.py 2025-06-01T21:33:53.6753478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_analysis.py 2025-06-01T21:33:53.6757594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_building.py 2025-06-01T21:33:53.6761165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_capture_strategies.py 2025-06-01T21:33:53.6764794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_compat.py 2025-06-01T21:33:53.6774161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_constants.py 2025-06-01T21:33:53.6778335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_core.py 2025-06-01T21:33:53.6782409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_decomp.py 2025-06-01T21:33:53.6785833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dispatching.py 2025-06-01T21:33:53.6789284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dynamic_shapes.py 2025-06-01T21:33:53.6792742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_errors.py 2025-06-01T21:33:53.6796144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_flags.py 2025-06-01T21:33:53.6799470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_fx_passes.py 2025-06-01T21:33:53.6803113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_ir_passes.py 2025-06-01T21:33:53.6806769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_isolated.py 2025-06-01T21:33:53.6810263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_onnx_program.py 2025-06-01T21:33:53.6813708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_registration.py 2025-06-01T21:33:53.6817179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_reporting.py 2025-06-01T21:33:53.6820704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_schemas.py 2025-06-01T21:33:53.6824085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_tensors.py 2025-06-01T21:33:53.6827520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_testing.py 2025-06-01T21:33:53.6831225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_type_casting.py 2025-06-01T21:33:53.6834796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_verification.py 2025-06-01T21:33:53.6838452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__init__.py 2025-06-01T21:33:53.6850065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py 2025-06-01T21:33:53.6854323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py 2025-06-01T21:33:53.6858077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__init__.py 2025-06-01T21:33:53.6868313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\core.py 2025-06-01T21:33:53.6871768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\hop.py 2025-06-01T21:33:53.6876651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\nn.py 2025-06-01T21:33:53.6880032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py 2025-06-01T21:33:53.6883551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symops.py 2025-06-01T21:33:53.6886984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py 2025-06-01T21:33:53.6900237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\core.cpython-39.pyc 2025-06-01T21:33:53.6903470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\hop.cpython-39.pyc 2025-06-01T21:33:53.6907006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\nn.cpython-39.pyc 2025-06-01T21:33:53.6915319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symbolic.cpython-39.pyc 2025-06-01T21:33:53.6918882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symops.cpython-39.pyc 2025-06-01T21:33:53.6922802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6931295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_tensor_typing.cpython-39.pyc 2025-06-01T21:33:53.6934891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_torchlib_registry.cpython-39.pyc 2025-06-01T21:33:53.6938951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.6952075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_analysis.cpython-39.pyc 2025-06-01T21:33:53.6956390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_building.cpython-39.pyc 2025-06-01T21:33:53.6960120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_capture_strategies.cpython-39.pyc 2025-06-01T21:33:53.6968467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_compat.cpython-39.pyc 2025-06-01T21:33:53.6972692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_constants.cpython-39.pyc 2025-06-01T21:33:53.6977743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_core.cpython-39.pyc 2025-06-01T21:33:53.6982970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_decomp.cpython-39.pyc 2025-06-01T21:33:53.6987900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dispatching.cpython-39.pyc 2025-06-01T21:33:53.6992964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dynamic_shapes.cpython-39.pyc 2025-06-01T21:33:53.6996587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_errors.cpython-39.pyc 2025-06-01T21:33:53.7001568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_flags.cpython-39.pyc 2025-06-01T21:33:53.7006573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_fx_passes.cpython-39.pyc 2025-06-01T21:33:53.7011405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_ir_passes.cpython-39.pyc 2025-06-01T21:33:53.7016163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_isolated.cpython-39.pyc 2025-06-01T21:33:53.7020208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_onnx_program.cpython-39.pyc 2025-06-01T21:33:53.7025139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_registration.cpython-39.pyc 2025-06-01T21:33:53.7030455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_reporting.cpython-39.pyc 2025-06-01T21:33:53.7038128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_schemas.cpython-39.pyc 2025-06-01T21:33:53.7060086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_tensors.cpython-39.pyc 2025-06-01T21:33:53.7064935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_testing.cpython-39.pyc 2025-06-01T21:33:53.7069839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_type_casting.cpython-39.pyc 2025-06-01T21:33:53.7074323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_verification.cpython-39.pyc 2025-06-01T21:33:53.7078723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7090035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\decomposition_table.py 2025-06-01T21:33:53.7095165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\dynamo_graph_extractor.py 2025-06-01T21:33:53.7099751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\fx_onnx_interpreter.py 2025-06-01T21:33:53.7108008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\onnxfunction_dispatcher.py 2025-06-01T21:33:53.7112735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\patcher.py 2025-06-01T21:33:53.7117446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\registration.py 2025-06-01T21:33:53.7129269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\serialization.py 2025-06-01T21:33:53.7132984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\type_utils.py 2025-06-01T21:33:53.7153034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\_pass.py 2025-06-01T21:33:53.7158120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__init__.py 2025-06-01T21:33:53.7168702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\decomp.py 2025-06-01T21:33:53.7172353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\functionalization.py 2025-06-01T21:33:53.7177431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\modularization.py 2025-06-01T21:33:53.7181237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\readability.py 2025-06-01T21:33:53.7189357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\type_promotion.py 2025-06-01T21:33:53.7193676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\virtualization.py 2025-06-01T21:33:53.7197167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\_utils.py 2025-06-01T21:33:53.7200484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__init__.py 2025-06-01T21:33:53.7209075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\decomp.cpython-39.pyc 2025-06-01T21:33:53.7212703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\functionalization.cpython-39.pyc 2025-06-01T21:33:53.7216284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\modularization.cpython-39.pyc 2025-06-01T21:33:53.7224400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\readability.cpython-39.pyc 2025-06-01T21:33:53.7228304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\type_promotion.cpython-39.pyc 2025-06-01T21:33:53.7234380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\virtualization.cpython-39.pyc 2025-06-01T21:33:53.7238033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:53.7241533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7249799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\decomposition_table.cpython-39.pyc 2025-06-01T21:33:53.7253394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\dynamo_graph_extractor.cpython-39.pyc 2025-06-01T21:33:53.7257045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\fx_onnx_interpreter.cpython-39.pyc 2025-06-01T21:33:53.7265684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\onnxfunction_dispatcher.cpython-39.pyc 2025-06-01T21:33:53.7269568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\patcher.cpython-39.pyc 2025-06-01T21:33:53.7274033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\registration.cpython-39.pyc 2025-06-01T21:33:53.7277761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\serialization.cpython-39.pyc 2025-06-01T21:33:53.7281180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\type_utils.cpython-39.pyc 2025-06-01T21:33:53.7284592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\_pass.cpython-39.pyc 2025-06-01T21:33:53.7288459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7296651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\io_adapter.cpython-39.pyc 2025-06-01T21:33:53.7300182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-06-01T21:33:53.7304008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\onnxruntime.cpython-39.pyc 2025-06-01T21:33:53.7311395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\onnx_proto_utils.cpython-39.pyc 2025-06-01T21:33:53.7314897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\registration.cpython-39.pyc 2025-06-01T21:33:53.7318636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_exporter_legacy.cpython-39.pyc 2025-06-01T21:33:53.7322219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_lazy_import.cpython-39.pyc 2025-06-01T21:33:53.7325715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7335659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\errors.cpython-39.pyc 2025-06-01T21:33:53.7339397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\operators.cpython-39.pyc 2025-06-01T21:33:53.7342917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_caffe2.cpython-39.pyc 2025-06-01T21:33:53.7352726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_helper.cpython-39.pyc 2025-06-01T21:33:53.7356506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset10.cpython-39.pyc 2025-06-01T21:33:53.7360244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset11.cpython-39.pyc 2025-06-01T21:33:53.7363932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset12.cpython-39.pyc 2025-06-01T21:33:53.7367443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset13.cpython-39.pyc 2025-06-01T21:33:53.7371203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset14.cpython-39.pyc 2025-06-01T21:33:53.7374743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset15.cpython-39.pyc 2025-06-01T21:33:53.7378556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset16.cpython-39.pyc 2025-06-01T21:33:53.7382117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset17.cpython-39.pyc 2025-06-01T21:33:53.7385902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset18.cpython-39.pyc 2025-06-01T21:33:53.7389487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset19.cpython-39.pyc 2025-06-01T21:33:53.7393252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset20.cpython-39.pyc 2025-06-01T21:33:53.7397214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset7.cpython-39.pyc 2025-06-01T21:33:53.7405043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset8.cpython-39.pyc 2025-06-01T21:33:53.7408860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset9.cpython-39.pyc 2025-06-01T21:33:53.7413699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:53.7417536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\verification.cpython-39.pyc 2025-06-01T21:33:53.7422029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_constants.cpython-39.pyc 2025-06-01T21:33:53.7426509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_experimental.cpython-39.pyc 2025-06-01T21:33:53.7431832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_flags.cpython-39.pyc 2025-06-01T21:33:53.7436747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_globals.cpython-39.pyc 2025-06-01T21:33:53.7443941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_onnx_supported_ops.cpython-39.pyc 2025-06-01T21:33:53.7450598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_type_utils.cpython-39.pyc 2025-06-01T21:33:53.7460330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7473695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adadelta.py 2025-06-01T21:33:53.7478802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adagrad.py 2025-06-01T21:33:53.7482008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adam.py 2025-06-01T21:33:53.7487278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamax.py 2025-06-01T21:33:53.7492067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamw.py 2025-06-01T21:33:53.7496615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\asgd.py 2025-06-01T21:33:53.7500924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lbfgs.py 2025-06-01T21:33:53.7510423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lr_scheduler.py 2025-06-01T21:33:53.7515617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\nadam.py 2025-06-01T21:33:53.7520322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\optimizer.py 2025-06-01T21:33:53.7525392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\radam.py 2025-06-01T21:33:53.7529001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rmsprop.py 2025-06-01T21:33:53.7533682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rprop.py 2025-06-01T21:33:53.7538787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sgd.py 2025-06-01T21:33:53.7543533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sparse_adam.py 2025-06-01T21:33:53.7546981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\swa_utils.py 2025-06-01T21:33:53.7551822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_adafactor.py 2025-06-01T21:33:53.7556630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_functional.py 2025-06-01T21:33:53.7561376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__init__.py 2025-06-01T21:33:53.7570145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.py 2025-06-01T21:33:53.7575095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.pyi 2025-06-01T21:33:53.7584912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7593838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adadelta.cpython-39.pyc 2025-06-01T21:33:53.7598640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adagrad.cpython-39.pyc 2025-06-01T21:33:53.7603502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adam.cpython-39.pyc 2025-06-01T21:33:53.7613339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamax.cpython-39.pyc 2025-06-01T21:33:53.7617184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamw.cpython-39.pyc 2025-06-01T21:33:53.7624199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\asgd.cpython-39.pyc 2025-06-01T21:33:53.7648644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lbfgs.cpython-39.pyc 2025-06-01T21:33:53.7653774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lr_scheduler.cpython-39.pyc 2025-06-01T21:33:53.7659904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\nadam.cpython-39.pyc 2025-06-01T21:33:53.7665131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\optimizer.cpython-39.pyc 2025-06-01T21:33:53.7669051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\radam.cpython-39.pyc 2025-06-01T21:33:53.7674756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rmsprop.cpython-39.pyc 2025-06-01T21:33:53.7678454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rprop.cpython-39.pyc 2025-06-01T21:33:53.7683823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sgd.cpython-39.pyc 2025-06-01T21:33:53.7688326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sparse_adam.cpython-39.pyc 2025-06-01T21:33:53.7691807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\swa_utils.cpython-39.pyc 2025-06-01T21:33:53.7695975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_adafactor.cpython-39.pyc 2025-06-01T21:33:53.7703999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_functional.cpython-39.pyc 2025-06-01T21:33:53.7707602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7716715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\file_structure_representation.py 2025-06-01T21:33:53.7720962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\find_file_dependencies.py 2025-06-01T21:33:53.7724485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\glob_group.py 2025-06-01T21:33:53.7733002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\importer.py 2025-06-01T21:33:53.7736522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_exporter.py 2025-06-01T21:33:53.7740904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_importer.py 2025-06-01T21:33:53.7744575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_digraph.py 2025-06-01T21:33:53.7747973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_directory_reader.py 2025-06-01T21:33:53.7751391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_importlib.py 2025-06-01T21:33:53.7755098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mangling.py 2025-06-01T21:33:53.7758545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mock.py 2025-06-01T21:33:53.7761895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_pickler.py 2025-06-01T21:33:53.7765318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_unpickler.py 2025-06-01T21:33:53.7768660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_stdlib.py 2025-06-01T21:33:53.7771903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__init__.py 2025-06-01T21:33:53.7780561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\find_first_use_of_broken_modules.py 2025-06-01T21:33:53.7784234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\is_from_package.py 2025-06-01T21:33:53.7789042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\trace_dependencies.py 2025-06-01T21:33:53.7798606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__init__.py 2025-06-01T21:33:53.7805424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\find_first_use_of_broken_modules.cpython-39.pyc 2025-06-01T21:33:53.7808948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\is_from_package.cpython-39.pyc 2025-06-01T21:33:53.7812538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\trace_dependencies.cpython-39.pyc 2025-06-01T21:33:53.7820230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7828400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\file_structure_representation.cpython-39.pyc 2025-06-01T21:33:53.7831822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\find_file_dependencies.cpython-39.pyc 2025-06-01T21:33:53.7835381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\glob_group.cpython-39.pyc 2025-06-01T21:33:53.7843367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\importer.cpython-39.pyc 2025-06-01T21:33:53.7846586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_exporter.cpython-39.pyc 2025-06-01T21:33:53.7850304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_importer.cpython-39.pyc 2025-06-01T21:33:53.7853875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_digraph.cpython-39.pyc 2025-06-01T21:33:53.7858200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_directory_reader.cpython-39.pyc 2025-06-01T21:33:53.7862081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_importlib.cpython-39.pyc 2025-06-01T21:33:53.7865410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mangling.cpython-39.pyc 2025-06-01T21:33:53.7868968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mock.cpython-39.pyc 2025-06-01T21:33:53.7872488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_pickler.cpython-39.pyc 2025-06-01T21:33:53.7876242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_unpickler.cpython-39.pyc 2025-06-01T21:33:53.7880053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_stdlib.cpython-39.pyc 2025-06-01T21:33:53.7883838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7893378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\itt.py 2025-06-01T21:33:53.7896778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\profiler.py 2025-06-01T21:33:53.7900726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\python_tracer.py 2025-06-01T21:33:53.7904228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_memory_profiler.py 2025-06-01T21:33:53.7908141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_pattern_matcher.py 2025-06-01T21:33:53.7915875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_utils.py 2025-06-01T21:33:53.7919272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__init__.py 2025-06-01T21:33:53.7926711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\itt.cpython-39.pyc 2025-06-01T21:33:53.7930273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\profiler.cpython-39.pyc 2025-06-01T21:33:53.7934103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\python_tracer.cpython-39.pyc 2025-06-01T21:33:53.7942082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_memory_profiler.cpython-39.pyc 2025-06-01T21:33:53.7946219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_pattern_matcher.cpython-39.pyc 2025-06-01T21:33:53.7949810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:53.7953356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.7961435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fake_quantize.py 2025-06-01T21:33:53.7965028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuser_method_mappings.py 2025-06-01T21:33:53.7968424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuse_modules.py 2025-06-01T21:33:53.7976163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\observer.py 2025-06-01T21:33:53.7979852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\qconfig.py 2025-06-01T21:33:53.7983270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantization_mappings.py 2025-06-01T21:33:53.7988380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize.py 2025-06-01T21:33:53.7992268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_fx.py 2025-06-01T21:33:53.7995681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_jit.py 2025-06-01T21:33:53.7999117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quant_type.py 2025-06-01T21:33:53.8002562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\stubs.py 2025-06-01T21:33:53.8005820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\utils.py 2025-06-01T21:33:53.8009276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite.py 2025-06-01T21:33:53.8012988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite_fx.py 2025-06-01T21:33:53.8016667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_quantized_conversions.py 2025-06-01T21:33:53.8020168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__init__.py 2025-06-01T21:33:53.8027034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\convert.py 2025-06-01T21:33:53.8030557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fuse.py 2025-06-01T21:33:53.8034039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fusion_patterns.py 2025-06-01T21:33:53.8037467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\graph_module.py 2025-06-01T21:33:53.8040759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\match_utils.py 2025-06-01T21:33:53.8047860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\pattern_utils.py 2025-06-01T21:33:53.8052060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\prepare.py 2025-06-01T21:33:53.8055408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_patterns.py 2025-06-01T21:33:53.8059016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_types.py 2025-06-01T21:33:53.8062451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\utils.py 2025-06-01T21:33:53.8065781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\_equalize.py 2025-06-01T21:33:53.8069115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__init__.py 2025-06-01T21:33:53.8076368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-06-01T21:33:53.8080079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-06-01T21:33:53.8083627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fusion_patterns.cpython-39.pyc 2025-06-01T21:33:53.8092590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-06-01T21:33:53.8096393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-06-01T21:33:53.8100024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-06-01T21:33:53.8103490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-06-01T21:33:53.8107049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_patterns.cpython-39.pyc 2025-06-01T21:33:53.8110856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_types.cpython-39.pyc 2025-06-01T21:33:53.8114423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:53.8117883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-06-01T21:33:53.8121364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.8130010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-06-01T21:33:53.8133553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-06-01T21:33:53.8137472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-06-01T21:33:53.8145278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\observer.cpython-39.pyc 2025-06-01T21:33:53.8148693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\qconfig.cpython-39.pyc 2025-06-01T21:33:53.8152247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-06-01T21:33:53.8155693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize.cpython-39.pyc 2025-06-01T21:33:53.8159176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-06-01T21:33:53.8162882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-06-01T21:33:53.8166712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quant_type.cpython-39.pyc 2025-06-01T21:33:53.8170033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\stubs.cpython-39.pyc 2025-06-01T21:33:53.8173983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:53.8178347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite.cpython-39.pyc 2025-06-01T21:33:53.8186952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-06-01T21:33:53.8188453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_quantized_conversions.cpython-39.pyc 2025-06-01T21:33:53.8231945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.8256903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\ATen\ATenConfig.cmake 2025-06-01T21:33:53.8265579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Config.cmake 2025-06-01T21:33:53.8269149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake 2025-06-01T21:33:53.8272669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets.cmake 2025-06-01T21:33:53.8282104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake 2025-06-01T21:33:53.8285872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDSS.cmake 2025-06-01T21:33:53.8289375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake 2025-06-01T21:33:53.8309772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake 2025-06-01T21:33:53.8318467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake 2025-06-01T21:33:53.8321991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake 2025-06-01T21:33:53.8333546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake 2025-06-01T21:33:53.8337281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake 2025-06-01T21:33:53.8341638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageHandleStandardArgs.cmake 2025-06-01T21:33:53.8349704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake 2025-06-01T21:33:53.8357138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake 2025-06-01T21:33:53.8360688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake 2025-06-01T21:33:53.8364145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake 2025-06-01T21:33:53.8373261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake 2025-06-01T21:33:53.8381529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\cuda.cmake 2025-06-01T21:33:53.8385001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\gflags.cmake 2025-06-01T21:33:53.8388417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\glog.cmake 2025-06-01T21:33:53.8391794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\LoadHIP.cmake 2025-06-01T21:33:53.8400262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkl.cmake 2025-06-01T21:33:53.8403796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkldnn.cmake 2025-06-01T21:33:53.8407210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\protobuf.cmake 2025-06-01T21:33:53.8410620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\utils.cmake 2025-06-01T21:33:53.8414454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\xpu.cmake 2025-06-01T21:33:53.8422177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfig.cmake 2025-06-01T21:33:53.8425549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfigVersion.cmake 2025-06-01T21:33:53.8434395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__init__.py 2025-06-01T21:33:53.8440927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\windows.py 2025-06-01T21:33:53.8444417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__init__.py 2025-06-01T21:33:53.8451483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\windows.cpython-39.pyc 2025-06-01T21:33:53.8455410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.8463076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.8472228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\semi_structured.py 2025-06-01T21:33:53.8477257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_conversions.py 2025-06-01T21:33:53.8481781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_ops.py 2025-06-01T21:33:53.8489470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops.py 2025-06-01T21:33:53.8495111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops_meta.py 2025-06-01T21:33:53.8504062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__init__.py 2025-06-01T21:33:53.8512969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\semi_structured.cpython-39.pyc 2025-06-01T21:33:53.8518298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_conversions.cpython-39.pyc 2025-06-01T21:33:53.8523072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_ops.cpython-39.pyc 2025-06-01T21:33:53.8531224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops.cpython-39.pyc 2025-06-01T21:33:53.8536325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops_meta.cpython-39.pyc 2025-06-01T21:33:53.8542267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.8552899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__init__.py 2025-06-01T21:33:53.8561519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.8583017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\apply_utils_test.exe 2025-06-01T21:33:53.8590520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\atest.exe 2025-06-01T21:33:53.8598942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\backend_fallback_test.exe 2025-06-01T21:33:53.8605957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\basic.exe 2025-06-01T21:33:53.8616983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\broadcast_test.exe 2025-06-01T21:33:53.8624021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_accumulate_test.exe 2025-06-01T21:33:53.8653229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ArrayRef_test.exe 2025-06-01T21:33:53.8660115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bfloat16_test.exe 2025-06-01T21:33:53.8669079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Bitset_test.exe 2025-06-01T21:33:53.8676359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bit_cast_test.exe 2025-06-01T21:33:53.8681848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_CompileTimeFunctionPointer_test.exe 2025-06-01T21:33:53.8688320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_math_test.exe 2025-06-01T21:33:53.8694027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_test.exe 2025-06-01T21:33:53.8700503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ConstexprCrc_test.exe 2025-06-01T21:33:53.8705927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_cow_test.exe 2025-06-01T21:33:53.8711376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeadlockDetection_test.exe 2025-06-01T21:33:53.8716533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeviceGuard_test.exe 2025-06-01T21:33:53.8721824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Device_test.exe 2025-06-01T21:33:53.8732790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DispatchKeySet_test.exe 2025-06-01T21:33:53.8738221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Enumerate_test.exe 2025-06-01T21:33:53.8743638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_error_test.exe 2025-06-01T21:33:53.8749050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_exception_test.exe 2025-06-01T21:33:53.8754006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_flags_test.exe 2025-06-01T21:33:53.8759186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_generic_math_test.exe 2025-06-01T21:33:53.8764584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Half_test.exe 2025-06-01T21:33:53.8770049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineDeviceGuard_test.exe 2025-06-01T21:33:53.8775273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineStreamGuard_test.exe 2025-06-01T21:33:53.8785464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_IntrusiveList_test.exe 2025-06-01T21:33:53.8791848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_benchmark.exe 2025-06-01T21:33:53.8796554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_test.exe 2025-06-01T21:33:53.8806359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_irange_test.exe 2025-06-01T21:33:53.8811283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_lazy_test.exe 2025-06-01T21:33:53.8816601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_LeftRight_test.exe 2025-06-01T21:33:53.8822678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_logging_test.exe 2025-06-01T21:33:53.8828292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Metaprogramming_test.exe 2025-06-01T21:33:53.8837481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_NetworkFlow_test.exe 2025-06-01T21:33:53.8842672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_optional_test.exe 2025-06-01T21:33:53.8849453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ordered_preserving_dict_test.exe 2025-06-01T21:33:53.8855014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_registry_test.exe 2025-06-01T21:33:53.8860136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Scalar_test.exe 2025-06-01T21:33:53.8865555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Semaphore_test.exe 2025-06-01T21:33:53.8870946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SizesAndStrides_test.exe 2025-06-01T21:33:53.8876278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_small_vector_test.exe 2025-06-01T21:33:53.8885115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ssize_test.exe 2025-06-01T21:33:53.8895014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_StreamGuard_test.exe 2025-06-01T21:33:53.8900386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_util_test.exe 2025-06-01T21:33:53.8906173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_view_test.exe 2025-06-01T21:33:53.8911207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SymInt_test.exe 2025-06-01T21:33:53.8916276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Synchronized_test.exe 2025-06-01T21:33:53.8921578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_tempfile_test.exe 2025-06-01T21:33:53.8926611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ThreadLocal_test.exe 2025-06-01T21:33:53.8932076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_typeid_test.exe 2025-06-01T21:33:53.8947128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeIndex_test.exe 2025-06-01T21:33:53.8953794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeList_test.exe 2025-06-01T21:33:53.8960489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeTraits_test.exe 2025-06-01T21:33:53.8967357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\CppSignature_test.exe 2025-06-01T21:33:53.8974412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_allocator_test.exe 2025-06-01T21:33:53.8982563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_generator_test.exe 2025-06-01T21:33:53.8990552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_profiling_allocator_test.exe 2025-06-01T21:33:53.8997756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_rng_test.exe 2025-06-01T21:33:53.9007991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dict_test.exe 2025-06-01T21:33:53.9019646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dimname_test.exe 2025-06-01T21:33:53.9026744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\dlconvertor_test.exe 2025-06-01T21:33:53.9033911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\extension_backend_test.exe 2025-06-01T21:33:53.9042293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\half_test.exe 2025-06-01T21:33:53.9049129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\IListRef_test.exe 2025-06-01T21:33:53.9056572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\inline_container_test.exe 2025-06-01T21:33:53.9066040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\ivalue_test.exe 2025-06-01T21:33:53.9074795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\KernelFunction_test.exe 2025-06-01T21:33:53.9083851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_legacy_test.exe 2025-06-01T21:33:53.9098019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_test.exe 2025-06-01T21:33:53.9107448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_legacy_test.exe 2025-06-01T21:33:53.9116593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_test.exe 2025-06-01T21:33:53.9125918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_stackbased_test.exe 2025-06-01T21:33:53.9139011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\lazy_tensor_test.exe 2025-06-01T21:33:53.9158208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\legacy_vmap_test.exe 2025-06-01T21:33:53.9166811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\List_test.exe 2025-06-01T21:33:53.9177261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\make_boxed_from_unboxed_functor_test.exe 2025-06-01T21:33:53.9184223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\math_kernel_test.exe 2025-06-01T21:33:53.9192450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\MaybeOwned_test.exe 2025-06-01T21:33:53.9198729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_format_test.exe 2025-06-01T21:33:53.9206402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_overlapping_test.exe 2025-06-01T21:33:53.9212136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\mobile_memory_cleanup.exe 2025-06-01T21:33:53.9217532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\NamedTensor_test.exe 2025-06-01T21:33:53.9223671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\native_test.exe 2025-06-01T21:33:53.9229915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operators_test.exe 2025-06-01T21:33:53.9239949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operator_name_test.exe 2025-06-01T21:33:53.9245203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_allowlist_test.exe 2025-06-01T21:33:53.9250585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_registration_test.exe 2025-06-01T21:33:53.9264832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\packedtensoraccessor_test.exe 2025-06-01T21:33:53.9270508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\pow_test.exe 2025-06-01T21:33:53.9277526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\quantized_test.exe 2025-06-01T21:33:53.9283347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reduce_ops_test.exe 2025-06-01T21:33:53.9291246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reportMemoryUsage_test.exe 2025-06-01T21:33:53.9296488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_tensor_test.exe 2025-06-01T21:33:53.9302152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_test.exe 2025-06-01T21:33:53.9307842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\StorageUtils_test.exe 2025-06-01T21:33:53.9314067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\stride_properties_test.exe 2025-06-01T21:33:53.9319366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\tensor_iterator_test.exe 2025-06-01T21:33:53.9326298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\test_parallel.exe 2025-06-01T21:33:53.9331717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\thread_init_test.exe 2025-06-01T21:33:53.9335948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_ptr_test.exe 2025-06-01T21:33:53.9341522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_test.exe 2025-06-01T21:33:53.9348047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\undefined_tensor_test.exe 2025-06-01T21:33:53.9359277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\verify_api_visibility.exe 2025-06-01T21:33:53.9363541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\weakref_test.exe 2025-06-01T21:33:53.9369851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\wrapdim_test.exe 2025-06-01T21:33:53.9375074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\xla_tensor_test.exe 2025-06-01T21:33:53.9390336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_comparison.py 2025-06-01T21:33:53.9394391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_creation.py 2025-06-01T21:33:53.9398290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_utils.py 2025-06-01T21:33:53.9402359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__init__.py 2025-06-01T21:33:53.9416041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autocast_test_lists.py 2025-06-01T21:33:53.9420530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autograd_function_db.py 2025-06-01T21:33:53.9424481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\check_kernel_launches.py 2025-06-01T21:33:53.9513252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_cuda.py 2025-06-01T21:33:53.9517834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_device_type.py 2025-06-01T21:33:53.9523264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_distributed.py 2025-06-01T21:33:53.9528955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dist_composable.py 2025-06-01T21:33:53.9532829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dtype.py 2025-06-01T21:33:53.9537765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_fsdp.py 2025-06-01T21:33:53.9543050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_jit.py 2025-06-01T21:33:53.9548375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_methods_invocations.py 2025-06-01T21:33:53.9561173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mkldnn.py 2025-06-01T21:33:53.9566283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_modules.py 2025-06-01T21:33:53.9572794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mps.py 2025-06-01T21:33:53.9578307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_nn.py 2025-06-01T21:33:53.9584610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_optimizers.py 2025-06-01T21:33:53.9590036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_pruning.py 2025-06-01T21:33:53.9595193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantization.py 2025-06-01T21:33:53.9800075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantized.py 2025-06-01T21:33:53.9803768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_subclass.py 2025-06-01T21:33:53.9808636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_utils.py 2025-06-01T21:33:53.9814667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\composite_compliance.py 2025-06-01T21:33:53.9820035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_op_db.py 2025-06-01T21:33:53.9825405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_tensor.py 2025-06-01T21:33:53.9830371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dist_utils.py 2025-06-01T21:33:53.9834729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dynamo_test_failures.py 2025-06-01T21:33:53.9838779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module.py 2025-06-01T21:33:53.9843892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module2.py 2025-06-01T21:33:53.9849472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module3.py 2025-06-01T21:33:53.9858163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hop_db.py 2025-06-01T21:33:53.9862409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hypothesis_utils.py 2025-06-01T21:33:53.9867239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\inductor_utils.py 2025-06-01T21:33:53.9872056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_metaprogramming_utils.py 2025-06-01T21:33:53.9877003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_utils.py 2025-06-01T21:33:53.9880912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_tensor.py 2025-06-01T21:33:53.9886459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_utils.py 2025-06-01T21:33:53.9891486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\quantization_torch_package_models.py 2025-06-01T21:33:53.9896341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\static_module.py 2025-06-01T21:33:53.9901359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\subclasses.py 2025-06-01T21:33:53.9912394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\torchbind_impls.py 2025-06-01T21:33:53.9915876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\triton_utils.py 2025-06-01T21:33:53.9921024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\two_tensor.py 2025-06-01T21:33:53.9925855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__init__.py 2025-06-01T21:33:53.9935489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__init__.py 2025-06-01T21:33:53.9944342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.9955282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network1.py 2025-06-01T21:33:53.9959874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network2.py 2025-06-01T21:33:53.9963230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__init__.py 2025-06-01T21:33:53.9972918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network1.cpython-39.pyc 2025-06-01T21:33:53.9977816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network2.cpython-39.pyc 2025-06-01T21:33:53.9983090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:53.9998220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\checkpoint_utils.py 2025-06-01T21:33:54.0003782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\common_state_dict.py 2025-06-01T21:33:54.0008552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py 2025-06-01T21:33:54.0018208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_test.py 2025-06-01T21:33:54.0025526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_utils.py 2025-06-01T21:33:54.0030822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\fake_pg.py 2025-06-01T21:33:54.0035739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\multi_threaded_pg.py 2025-06-01T21:33:54.0039855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc_utils.py 2025-06-01T21:33:54.0045021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__init__.py 2025-06-01T21:33:54.0054654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__init__.py 2025-06-01T21:33:54.0065473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\remote_module_test.py 2025-06-01T21:33:54.0068861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__init__.py 2025-06-01T21:33:54.0076725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\remote_module_test.cpython-39.pyc 2025-06-01T21:33:54.0079622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.0088454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.0098641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_autograd_test.py 2025-06-01T21:33:54.0104288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py 2025-06-01T21:33:54.0109540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py 2025-06-01T21:33:54.0118894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py 2025-06-01T21:33:54.0122650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py 2025-06-01T21:33:54.0126437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_test.py 2025-06-01T21:33:54.0132600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py 2025-06-01T21:33:54.0136453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__init__.py 2025-06-01T21:33:54.0142491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py 2025-06-01T21:33:54.0163365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py 2025-06-01T21:33:54.0166750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__init__.py 2025-06-01T21:33:54.0180143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\parameter_server_test.cpython-39.pyc 2025-06-01T21:33:54.0184192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\reinforcement_learning_rpc_test.cpython-39.pyc 2025-06-01T21:33:54.0187619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.0199829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py 2025-06-01T21:33:54.0203663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test.py 2025-06-01T21:33:54.0207357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py 2025-06-01T21:33:54.0210741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__init__.py 2025-06-01T21:33:54.0222458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\dist_autograd_test.cpython-39.pyc 2025-06-01T21:33:54.0225882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test.cpython-39.pyc 2025-06-01T21:33:54.0229645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test_faulty.cpython-39.pyc 2025-06-01T21:33:54.0237707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.0245651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_autograd_test.cpython-39.pyc 2025-06-01T21:33:54.0249518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_optimizer_test.cpython-39.pyc 2025-06-01T21:33:54.0253348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_agent_rpc_test.cpython-39.pyc 2025-06-01T21:33:54.0262003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_rpc_agent_test_fixture.cpython-39.pyc 2025-06-01T21:33:54.0265593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_agent_test_fixture.cpython-39.pyc 2025-06-01T21:33:54.0269220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_test.cpython-39.pyc 2025-06-01T21:33:54.0274409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\tensorpipe_rpc_agent_test_fixture.cpython-39.pyc 2025-06-01T21:33:54.0278135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.0287241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\test_common.py 2025-06-01T21:33:54.0290570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__init__.py 2025-06-01T21:33:54.0298614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py 2025-06-01T21:33:54.0302160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py 2025-06-01T21:33:54.0305754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py 2025-06-01T21:33:54.0404962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_ops_common.cpython-39.pyc 2025-06-01T21:33:54.0408797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_st_common.cpython-39.pyc 2025-06-01T21:33:54.0412406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2467118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\test_common.cpython-39.pyc 2025-06-01T21:33:54.2472214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2483329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\common_dtensor.py 2025-06-01T21:33:54.2488157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__init__.py 2025-06-01T21:33:54.2496324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\common_dtensor.cpython-39.pyc 2025-06-01T21:33:54.2501342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2511593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\checkpoint_utils.cpython-39.pyc 2025-06-01T21:33:54.2515534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\common_state_dict.cpython-39.pyc 2025-06-01T21:33:54.2520537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\ddp_under_dist_autograd_test.cpython-39.pyc 2025-06-01T21:33:54.2529946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_test.cpython-39.pyc 2025-06-01T21:33:54.2536313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_utils.cpython-39.pyc 2025-06-01T21:33:54.2541638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\fake_pg.cpython-39.pyc 2025-06-01T21:33:54.2547232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\multi_threaded_pg.cpython-39.pyc 2025-06-01T21:33:54.2550919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\rpc_utils.cpython-39.pyc 2025-06-01T21:33:54.2555791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2567445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\annotated_fn_args.py 2025-06-01T21:33:54.2577129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__init__.py 2025-06-01T21:33:54.2585742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\annotated_fn_args.cpython-39.pyc 2025-06-01T21:33:54.2591600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2602123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\core.py 2025-06-01T21:33:54.2607693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\refs.py 2025-06-01T21:33:54.2612563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\utils.py 2025-06-01T21:33:54.2616235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__init__.py 2025-06-01T21:33:54.2625892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\fft.py 2025-06-01T21:33:54.2631192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\linalg.py 2025-06-01T21:33:54.2636559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\nested.py 2025-06-01T21:33:54.2641692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\signal.py 2025-06-01T21:33:54.2645193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\sparse.py 2025-06-01T21:33:54.2650680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\special.py 2025-06-01T21:33:54.2669254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\_masked.py 2025-06-01T21:33:54.2674269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__init__.py 2025-06-01T21:33:54.2683330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\fft.cpython-39.pyc 2025-06-01T21:33:54.2688711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\linalg.cpython-39.pyc 2025-06-01T21:33:54.2694106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\nested.cpython-39.pyc 2025-06-01T21:33:54.2704003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\signal.cpython-39.pyc 2025-06-01T21:33:54.2707710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\sparse.cpython-39.pyc 2025-06-01T21:33:54.2711289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\special.cpython-39.pyc 2025-06-01T21:33:54.2714951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\_masked.cpython-39.pyc 2025-06-01T21:33:54.2720197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2732397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\core.cpython-39.pyc 2025-06-01T21:33:54.2736300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\refs.cpython-39.pyc 2025-06-01T21:33:54.2740185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.2747254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2756460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\aot_autograd.py 2025-06-01T21:33:54.2760171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\autograd_registration.py 2025-06-01T21:33:54.2763912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\fake_tensor.py 2025-06-01T21:33:54.2767596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\generate_tests.py 2025-06-01T21:33:54.2774803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\make_fx.py 2025-06-01T21:33:54.2778257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__init__.py 2025-06-01T21:33:54.2785463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\aot_autograd.cpython-39.pyc 2025-06-01T21:33:54.2789100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\autograd_registration.cpython-39.pyc 2025-06-01T21:33:54.2793471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\fake_tensor.cpython-39.pyc 2025-06-01T21:33:54.2800463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\generate_tests.cpython-39.pyc 2025-06-01T21:33:54.2804171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\make_fx.cpython-39.pyc 2025-06-01T21:33:54.2807659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2817628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\future_div.py 2025-06-01T21:33:54.2821333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\no_future_div.py 2025-06-01T21:33:54.2824756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__init__.py 2025-06-01T21:33:54.2835124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\future_div.cpython-39.pyc 2025-06-01T21:33:54.2838655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\no_future_div.cpython-39.pyc 2025-06-01T21:33:54.2842072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.2855597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autocast_test_lists.cpython-39.pyc 2025-06-01T21:33:54.2859484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autograd_function_db.cpython-39.pyc 2025-06-01T21:33:54.2863110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\check_kernel_launches.cpython-39.pyc 2025-06-01T21:33:54.2871199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_cuda.cpython-39.pyc 2025-06-01T21:33:54.2875038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_device_type.cpython-39.pyc 2025-06-01T21:33:54.2878959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_distributed.cpython-39.pyc 2025-06-01T21:33:54.2882982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dist_composable.cpython-39.pyc 2025-06-01T21:33:54.2886709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dtype.cpython-39.pyc 2025-06-01T21:33:54.2890819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_fsdp.cpython-39.pyc 2025-06-01T21:33:54.2894829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_jit.cpython-39.pyc 2025-06-01T21:33:54.2898665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_methods_invocations.cpython-39.pyc 2025-06-01T21:33:54.2906280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mkldnn.cpython-39.pyc 2025-06-01T21:33:54.2909629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_modules.cpython-39.pyc 2025-06-01T21:33:54.2915758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mps.cpython-39.pyc 2025-06-01T21:33:54.2919569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_nn.cpython-39.pyc 2025-06-01T21:33:54.2924226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_optimizers.cpython-39.pyc 2025-06-01T21:33:54.2933586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_pruning.cpython-39.pyc 2025-06-01T21:33:54.2937582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantization.cpython-39.pyc 2025-06-01T21:33:54.2942105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantized.cpython-39.pyc 2025-06-01T21:33:54.2945850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_subclass.cpython-39.pyc 2025-06-01T21:33:54.2949505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_utils.cpython-39.pyc 2025-06-01T21:33:54.2954465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\composite_compliance.cpython-39.pyc 2025-06-01T21:33:54.2958381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_op_db.cpython-39.pyc 2025-06-01T21:33:54.2962315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_tensor.cpython-39.pyc 2025-06-01T21:33:54.2966035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dist_utils.cpython-39.pyc 2025-06-01T21:33:54.2969870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dynamo_test_failures.cpython-39.pyc 2025-06-01T21:33:54.2973553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module.cpython-39.pyc 2025-06-01T21:33:54.2981882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module2.cpython-39.pyc 2025-06-01T21:33:54.2986045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module3.cpython-39.pyc 2025-06-01T21:33:54.2989924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hop_db.cpython-39.pyc 2025-06-01T21:33:54.2993809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hypothesis_utils.cpython-39.pyc 2025-06-01T21:33:54.2997375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\inductor_utils.cpython-39.pyc 2025-06-01T21:33:54.3001062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_metaprogramming_utils.cpython-39.pyc 2025-06-01T21:33:54.3004712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-06-01T21:33:54.3008431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_tensor.cpython-39.pyc 2025-06-01T21:33:54.3023072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_utils.cpython-39.pyc 2025-06-01T21:33:54.3026812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\quantization_torch_package_models.cpython-39.pyc 2025-06-01T21:33:54.3030701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\static_module.cpython-39.pyc 2025-06-01T21:33:54.3034520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\subclasses.cpython-39.pyc 2025-06-01T21:33:54.3038251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\torchbind_impls.cpython-39.pyc 2025-06-01T21:33:54.3041876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\triton_utils.cpython-39.pyc 2025-06-01T21:33:54.3045593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\two_tensor.cpython-39.pyc 2025-06-01T21:33:54.3049444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3065693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_comparison.cpython-39.pyc 2025-06-01T21:33:54.3069530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_creation.cpython-39.pyc 2025-06-01T21:33:54.3073704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:54.3083695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3092302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backend_registration.py 2025-06-01T21:33:54.3096172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bundled_inputs.py 2025-06-01T21:33:54.3099692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\checkpoint.py 2025-06-01T21:33:54.3103373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\collect_env.py 2025-06-01T21:33:54.3111702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_backtrace.py 2025-06-01T21:33:54.3116706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_extension.py 2025-06-01T21:33:54.3128745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\deterministic.py 2025-06-01T21:33:54.3129233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\dlpack.py 2025-06-01T21:33:54.3129700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\file_baton.py 2025-06-01T21:33:54.3131562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\flop_counter.py 2025-06-01T21:33:54.3134910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hooks.py 2025-06-01T21:33:54.3138296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mkldnn.py 2025-06-01T21:33:54.3141685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mobile_optimizer.py 2025-06-01T21:33:54.3144989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_zoo.py 2025-06-01T21:33:54.3148347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\module_tracker.py 2025-06-01T21:33:54.3151718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\show_pickle.py 2025-06-01T21:33:54.3155100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\throughput_benchmark.py 2025-06-01T21:33:54.3158455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\weak.py 2025-06-01T21:33:54.3162007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_appending_byte_serializer.py 2025-06-01T21:33:54.3165727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_backport_slots.py 2025-06-01T21:33:54.3169245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_module.py 2025-06-01T21:33:54.3177042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_typing.pyi 2025-06-01T21:33:54.3180830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_content_store.py 2025-06-01T21:33:54.3184231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_contextlib.py 2025-06-01T21:33:54.3187636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_embed_headers.py 2025-06-01T21:33:54.3191179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_extension_versioner.py 2025-06-01T21:33:54.3195188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cxx_pytree.py 2025-06-01T21:33:54.3198876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_device.py 2025-06-01T21:33:54.3202397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_dtype_abbrs.py 2025-06-01T21:33:54.3205640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_exposed_in.py 2025-06-01T21:33:54.3209073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_filelock.py 2025-06-01T21:33:54.3218550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_foreach_utils.py 2025-06-01T21:33:54.3222561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_freeze.py 2025-06-01T21:33:54.3225958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_functools.py 2025-06-01T21:33:54.3229544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_get_clean_triton.py 2025-06-01T21:33:54.3233455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_import_utils.py 2025-06-01T21:33:54.3237067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_mode_utils.py 2025-06-01T21:33:54.3240474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_ordered_set.py 2025-06-01T21:33:54.3243862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_python_dispatch.py 2025-06-01T21:33:54.3247653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_pytree.py 2025-06-01T21:33:54.3251597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_stats.py 2025-06-01T21:33:54.3260776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_thunk.py 2025-06-01T21:33:54.3264140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_traceback.py 2025-06-01T21:33:54.3267728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_triton.py 2025-06-01T21:33:54.3271385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_typing_utils.py 2025-06-01T21:33:54.3275201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_zip.py 2025-06-01T21:33:54.3278663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__init__.py 2025-06-01T21:33:54.3285754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__init__.py 2025-06-01T21:33:54.3292726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3301816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__init__.py 2025-06-01T21:33:54.3308804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\compare.py 2025-06-01T21:33:54.3313462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\fuzzer.py 2025-06-01T21:33:54.3316921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\op_benchmark.py 2025-06-01T21:33:54.3320432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\simple_timeit.py 2025-06-01T21:33:54.3323835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py 2025-06-01T21:33:54.3332448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__init__.py 2025-06-01T21:33:54.3338953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\compare.cpython-39.pyc 2025-06-01T21:33:54.3342716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\fuzzer.cpython-39.pyc 2025-06-01T21:33:54.3346556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\op_benchmark.cpython-39.pyc 2025-06-01T21:33:54.3355079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\simple_timeit.cpython-39.pyc 2025-06-01T21:33:54.3358652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\spectral_ops_fuzz_test.cpython-39.pyc 2025-06-01T21:33:54.3362220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3369964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\binary.py 2025-06-01T21:33:54.3373420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_binary.py 2025-06-01T21:33:54.3376955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_unary.py 2025-06-01T21:33:54.3380676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\spectral.py 2025-06-01T21:33:54.3388102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\unary.py 2025-06-01T21:33:54.3391736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__init__.py 2025-06-01T21:33:54.3398136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\binary.cpython-39.pyc 2025-06-01T21:33:54.3401758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_binary.cpython-39.pyc 2025-06-01T21:33:54.3405258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_unary.cpython-39.pyc 2025-06-01T21:33:54.3413441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\spectral.cpython-39.pyc 2025-06-01T21:33:54.3417277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\unary.cpython-39.pyc 2025-06-01T21:33:54.3421267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3429559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\common.py 2025-06-01T21:33:54.3433285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compare.py 2025-06-01T21:33:54.3436529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compile.py 2025-06-01T21:33:54.3439733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\cpp_jit.py 2025-06-01T21:33:54.3442892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\fuzzer.py 2025-06-01T21:33:54.3446187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\sparse_fuzzer.py 2025-06-01T21:33:54.3455432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timeit_template.cpp 2025-06-01T21:33:54.3458968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timer.py 2025-06-01T21:33:54.3462438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\_stubs.py 2025-06-01T21:33:54.3465791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__init__.py 2025-06-01T21:33:54.3475006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h 2025-06-01T21:33:54.3479110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp 2025-06-01T21:33:54.3502446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp 2025-06-01T21:33:54.3512837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py 2025-06-01T21:33:54.3517727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h 2025-06-01T21:33:54.3523607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py 2025-06-01T21:33:54.3530481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\timer_interface.cpython-39.pyc 2025-06-01T21:33:54.3534319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3542161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\common.cpython-39.pyc 2025-06-01T21:33:54.3545661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compare.cpython-39.pyc 2025-06-01T21:33:54.3549220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compile.cpython-39.pyc 2025-06-01T21:33:54.3560008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\cpp_jit.cpython-39.pyc 2025-06-01T21:33:54.3571480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\fuzzer.cpython-39.pyc 2025-06-01T21:33:54.3572308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\sparse_fuzzer.cpython-39.pyc 2025-06-01T21:33:54.3577461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\timer.cpython-39.pyc 2025-06-01T21:33:54.3582424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\_stubs.cpython-39.pyc 2025-06-01T21:33:54.3588823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3604326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3615143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__init__.py 2025-06-01T21:33:54.3619008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__main__.py 2025-06-01T21:33:54.3627276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3632008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__main__.cpython-39.pyc 2025-06-01T21:33:54.3642493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\backward_compatibility.py 2025-06-01T21:33:54.3647207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataloader.py 2025-06-01T21:33:54.3651391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataset.py 2025-06-01T21:33:54.3656169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\distributed.py 2025-06-01T21:33:54.3676810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph.py 2025-06-01T21:33:54.3681812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph_settings.py 2025-06-01T21:33:54.3686703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\sampler.py 2025-06-01T21:33:54.3690532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__init__.py 2025-06-01T21:33:54.3701549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.py 2025-06-01T21:33:54.3705009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.pyi 2025-06-01T21:33:54.3710305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\gen_pyi.py 2025-06-01T21:33:54.3713894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_decorator.py 2025-06-01T21:33:54.3717471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_hook_iterator.py 2025-06-01T21:33:54.3726719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_typing.py 2025-06-01T21:33:54.3730194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__init__.py 2025-06-01T21:33:54.3737788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframes.py 2025-06-01T21:33:54.3741635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py 2025-06-01T21:33:54.3745356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\datapipes.py 2025-06-01T21:33:54.3753266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\structures.py 2025-06-01T21:33:54.3757999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__init__.py 2025-06-01T21:33:54.3765457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframes.cpython-39.pyc 2025-06-01T21:33:54.3769023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframe_wrapper.cpython-39.pyc 2025-06-01T21:33:54.3772517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\datapipes.cpython-39.pyc 2025-06-01T21:33:54.3780157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\structures.cpython-39.pyc 2025-06-01T21:33:54.3783981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.3792215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\callable.py 2025-06-01T21:33:54.3795761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combinatorics.py 2025-06-01T21:33:54.3798995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combining.py 2025-06-01T21:33:54.3802428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\filelister.py 2025-06-01T21:33:54.3811091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\fileopener.py 2025-06-01T21:33:54.3814740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\grouping.py 2025-06-01T21:33:54.3819627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\routeddecoder.py 2025-06-01T21:33:54.3823091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\selecting.py 2025-06-01T21:33:54.3826729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\sharding.py 2025-06-01T21:33:54.3830156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\streamreader.py 2025-06-01T21:33:54.3833573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\utils.py 2025-06-01T21:33:54.3836873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__init__.py 2025-06-01T21:33:54.3844824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\callable.cpython-39.pyc 2025-06-01T21:33:54.3848880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combinatorics.cpython-39.pyc 2025-06-01T21:33:54.3852362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combining.cpython-39.pyc 2025-06-01T21:33:54.4306903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\filelister.cpython-39.pyc 2025-06-01T21:33:54.4310588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\fileopener.cpython-39.pyc 2025-06-01T21:33:54.4315730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\grouping.cpython-39.pyc 2025-06-01T21:33:54.4320441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\routeddecoder.cpython-39.pyc 2025-06-01T21:33:54.4324239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\selecting.cpython-39.pyc 2025-06-01T21:33:54.4327947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\sharding.cpython-39.pyc 2025-06-01T21:33:54.4331684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\streamreader.cpython-39.pyc 2025-06-01T21:33:54.4335435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.4339049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.4347271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\callable.py 2025-06-01T21:33:54.4350775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combinatorics.py 2025-06-01T21:33:54.4354239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combining.py 2025-06-01T21:33:54.4357807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\grouping.py 2025-06-01T21:33:54.4361137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\utils.py 2025-06-01T21:33:54.4451994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__init__.py 2025-06-01T21:33:54.4460054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\callable.cpython-39.pyc 2025-06-01T21:33:54.4463798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combinatorics.cpython-39.pyc 2025-06-01T21:33:54.4467231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combining.cpython-39.pyc 2025-06-01T21:33:54.4559687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\grouping.cpython-39.pyc 2025-06-01T21:33:54.4563438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.4566841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.4574887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\common.py 2025-06-01T21:33:54.4579972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\decoder.py 2025-06-01T21:33:54.4583620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\snapshot.py 2025-06-01T21:33:54.4586978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__init__.py 2025-06-01T21:33:54.4593245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\common.cpython-39.pyc 2025-06-01T21:33:54.4596770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\decoder.cpython-39.pyc 2025-06-01T21:33:54.4600321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\snapshot.cpython-39.pyc 2025-06-01T21:33:54.4692264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.4740612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\datapipe.cpython-39.pyc 2025-06-01T21:33:54.4746051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\gen_pyi.cpython-39.pyc 2025-06-01T21:33:54.4751398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_decorator.cpython-39.pyc 2025-06-01T21:33:54.4847335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_hook_iterator.cpython-39.pyc 2025-06-01T21:33:54.4850845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_typing.cpython-39.pyc 2025-06-01T21:33:54.4854685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.4863328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\collate.py 2025-06-01T21:33:54.4866679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\fetch.py 2025-06-01T21:33:54.4871656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\pin_memory.py 2025-06-01T21:33:54.4875147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\signal_handling.py 2025-06-01T21:33:54.4878545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\worker.py 2025-06-01T21:33:54.4886390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__init__.py 2025-06-01T21:33:54.4893773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\collate.cpython-39.pyc 2025-06-01T21:33:54.4897341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\fetch.cpython-39.pyc 2025-06-01T21:33:54.4901130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\pin_memory.cpython-39.pyc 2025-06-01T21:33:54.4908782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\signal_handling.cpython-39.pyc 2025-06-01T21:33:54.4912449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\worker.cpython-39.pyc 2025-06-01T21:33:54.4915948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.4924459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\backward_compatibility.cpython-39.pyc 2025-06-01T21:33:54.4927914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataloader.cpython-39.pyc 2025-06-01T21:33:54.4931861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataset.cpython-39.pyc 2025-06-01T21:33:54.4939605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\distributed.cpython-39.pyc 2025-06-01T21:33:54.4943371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph.cpython-39.pyc 2025-06-01T21:33:54.4946750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph_settings.cpython-39.pyc 2025-06-01T21:33:54.4950217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\sampler.cpython-39.pyc 2025-06-01T21:33:54.4953765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.4962418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\constants.py 2025-06-01T21:33:54.4966212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\cuda_to_hip_mappings.py 2025-06-01T21:33:54.4973239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\hipify_python.py 2025-06-01T21:33:54.4978181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\version.py 2025-06-01T21:33:54.4987119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__init__.py 2025-06-01T21:33:54.4997009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\constants.cpython-39.pyc 2025-06-01T21:33:54.5001876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\cuda_to_hip_mappings.cpython-39.pyc 2025-06-01T21:33:54.5008091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\hipify_python.cpython-39.pyc 2025-06-01T21:33:54.5017719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\version.cpython-39.pyc 2025-06-01T21:33:54.5021826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5032841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\log_extract.py 2025-06-01T21:33:54.5037582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__init__.py 2025-06-01T21:33:54.5045100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\log_extract.cpython-39.pyc 2025-06-01T21:33:54.5050037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5060686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\code.js 2025-06-01T21:33:54.5064301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\htm.mjs 2025-06-01T21:33:54.5068998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\preact.mjs 2025-06-01T21:33:54.5073680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\skeleton.html 2025-06-01T21:33:54.5078488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__init__.py 2025-06-01T21:33:54.5086859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__main__.py 2025-06-01T21:33:54.5096623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5101526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__main__.cpython-39.pyc 2025-06-01T21:33:54.5110909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\config.py 2025-06-01T21:33:54.5115589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__init__.py 2025-06-01T21:33:54.5124817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\config.cpython-39.pyc 2025-06-01T21:33:54.5128499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5139240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\summary.py 2025-06-01T21:33:54.5144380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\writer.py 2025-06-01T21:33:54.5149592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_convert_np.py 2025-06-01T21:33:54.5154418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_embedding.py 2025-06-01T21:33:54.5163816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_onnx_graph.py 2025-06-01T21:33:54.5168637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_proto_graph.py 2025-06-01T21:33:54.5177156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_pytorch_graph.py 2025-06-01T21:33:54.5200403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_utils.py 2025-06-01T21:33:54.5205510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__init__.py 2025-06-01T21:33:54.5215457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\summary.cpython-39.pyc 2025-06-01T21:33:54.5221084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\writer.cpython-39.pyc 2025-06-01T21:33:54.5226655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_convert_np.cpython-39.pyc 2025-06-01T21:33:54.5235927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_embedding.cpython-39.pyc 2025-06-01T21:33:54.5240196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_onnx_graph.cpython-39.pyc 2025-06-01T21:33:54.5243871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_proto_graph.cpython-39.pyc 2025-06-01T21:33:54.5247470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_pytorch_graph.cpython-39.pyc 2025-06-01T21:33:54.5252692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:54.5256484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5264804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\_cycles.py 2025-06-01T21:33:54.5268228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__init__.py 2025-06-01T21:33:54.5274189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\_cycles.cpython-39.pyc 2025-06-01T21:33:54.5277678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5287629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\cli_function_profiler.py 2025-06-01T21:33:54.5291336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__init__.py 2025-06-01T21:33:54.5297467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-06-01T21:33:54.5301069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5308645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\functions.py 2025-06-01T21:33:54.5312319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\interp.py 2025-06-01T21:33:54.5315575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\numbers.py 2025-06-01T21:33:54.5319193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\printers.py 2025-06-01T21:33:54.5322550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\reference.py 2025-06-01T21:33:54.5332109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\singleton_int.py 2025-06-01T21:33:54.5335654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\solve.py 2025-06-01T21:33:54.5340371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\symbol.py 2025-06-01T21:33:54.5343804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\value_ranges.py 2025-06-01T21:33:54.5347348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__init__.py 2025-06-01T21:33:54.5353810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\functions.cpython-39.pyc 2025-06-01T21:33:54.5357520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\interp.cpython-39.pyc 2025-06-01T21:33:54.5361300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\numbers.cpython-39.pyc 2025-06-01T21:33:54.5369073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\printers.cpython-39.pyc 2025-06-01T21:33:54.5372911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\reference.cpython-39.pyc 2025-06-01T21:33:54.5377611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\singleton_int.cpython-39.pyc 2025-06-01T21:33:54.5381116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\solve.cpython-39.pyc 2025-06-01T21:33:54.5384867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\symbol.cpython-39.pyc 2025-06-01T21:33:54.5388454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\value_ranges.cpython-39.pyc 2025-06-01T21:33:54.5392415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5401338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\backend_registration.cpython-39.pyc 2025-06-01T21:33:54.5404931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\bundled_inputs.cpython-39.pyc 2025-06-01T21:33:54.5408483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\checkpoint.cpython-39.pyc 2025-06-01T21:33:54.5416582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\collect_env.cpython-39.pyc 2025-06-01T21:33:54.5420264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_backtrace.cpython-39.pyc 2025-06-01T21:33:54.5424046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_extension.cpython-39.pyc 2025-06-01T21:33:54.5428059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\deterministic.cpython-39.pyc 2025-06-01T21:33:54.5431609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\dlpack.cpython-39.pyc 2025-06-01T21:33:54.5435216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\file_baton.cpython-39.pyc 2025-06-01T21:33:54.5440546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\flop_counter.cpython-39.pyc 2025-06-01T21:33:54.5444251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\hooks.cpython-39.pyc 2025-06-01T21:33:54.5449045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mkldnn.cpython-39.pyc 2025-06-01T21:33:54.5454088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mobile_optimizer.cpython-39.pyc 2025-06-01T21:33:54.5459074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\model_zoo.cpython-39.pyc 2025-06-01T21:33:54.5464045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\module_tracker.cpython-39.pyc 2025-06-01T21:33:54.5467808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\show_pickle.cpython-39.pyc 2025-06-01T21:33:54.5472781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\throughput_benchmark.cpython-39.pyc 2025-06-01T21:33:54.5483257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\weak.cpython-39.pyc 2025-06-01T21:33:54.5488247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_appending_byte_serializer.cpython-39.pyc 2025-06-01T21:33:54.5493130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_backport_slots.cpython-39.pyc 2025-06-01T21:33:54.5497300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_config_module.cpython-39.pyc 2025-06-01T21:33:54.5502315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_content_store.cpython-39.pyc 2025-06-01T21:33:54.5507186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_contextlib.cpython-39.pyc 2025-06-01T21:33:54.5512475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_embed_headers.cpython-39.pyc 2025-06-01T21:33:54.5520907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_extension_versioner.cpython-39.pyc 2025-06-01T21:33:54.5526741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cxx_pytree.cpython-39.pyc 2025-06-01T21:33:54.5531950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_device.cpython-39.pyc 2025-06-01T21:33:54.5537104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_dtype_abbrs.cpython-39.pyc 2025-06-01T21:33:54.5542040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_exposed_in.cpython-39.pyc 2025-06-01T21:33:54.5547995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_filelock.cpython-39.pyc 2025-06-01T21:33:54.5551347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_foreach_utils.cpython-39.pyc 2025-06-01T21:33:54.5556375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_freeze.cpython-39.pyc 2025-06-01T21:33:54.5561303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_functools.cpython-39.pyc 2025-06-01T21:33:54.5589272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_get_clean_triton.cpython-39.pyc 2025-06-01T21:33:54.5594541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_import_utils.cpython-39.pyc 2025-06-01T21:33:54.5598088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_mode_utils.cpython-39.pyc 2025-06-01T21:33:54.5603002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_ordered_set.cpython-39.pyc 2025-06-01T21:33:54.5607961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_python_dispatch.cpython-39.pyc 2025-06-01T21:33:54.5612942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_pytree.cpython-39.pyc 2025-06-01T21:33:54.5618418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_stats.cpython-39.pyc 2025-06-01T21:33:54.5623425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_thunk.cpython-39.pyc 2025-06-01T21:33:54.5637091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_traceback.cpython-39.pyc 2025-06-01T21:33:54.5642016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_triton.cpython-39.pyc 2025-06-01T21:33:54.5647112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_typing_utils.cpython-39.pyc 2025-06-01T21:33:54.5650924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_zip.cpython-39.pyc 2025-06-01T21:33:54.5655924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5668919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\memory.py 2025-06-01T21:33:54.5673557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\random.py 2025-06-01T21:33:54.5692942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\streams.py 2025-06-01T21:33:54.5698125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_gpu_trace.py 2025-06-01T21:33:54.5703190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_utils.py 2025-06-01T21:33:54.5706627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__init__.py 2025-06-01T21:33:54.5722496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\memory.cpython-39.pyc 2025-06-01T21:33:54.5727706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\random.cpython-39.pyc 2025-06-01T21:33:54.5731658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\streams.cpython-39.pyc 2025-06-01T21:33:54.5739954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_gpu_trace.cpython-39.pyc 2025-06-01T21:33:54.5744957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:54.5748602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5756285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__init__.py 2025-06-01T21:33:54.5763114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5771222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_aoti.pyi 2025-06-01T21:33:54.5776020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_autograd.pyi 2025-06-01T21:33:54.5779480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cpu.pyi 2025-06-01T21:33:54.5782854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cudnn.pyi 2025-06-01T21:33:54.5786182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cusparselt.pyi 2025-06-01T21:33:54.5794089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_autograd.pyi 2025-06-01T21:33:54.5797654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_c10d.pyi 2025-06-01T21:33:54.5801015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc.pyi 2025-06-01T21:33:54.5804686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc_testing.pyi 2025-06-01T21:33:54.5808296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functions.pyi 2025-06-01T21:33:54.5811790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functorch.pyi 2025-06-01T21:33:54.5815494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_instruction_counter.pyi 2025-06-01T21:33:54.5819063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_itt.pyi 2025-06-01T21:33:54.5822361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy.pyi 2025-06-01T21:33:54.5825713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy_ts_backend.pyi 2025-06-01T21:33:54.5829172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_monitor.pyi 2025-06-01T21:33:54.5832601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nn.pyi 2025-06-01T21:33:54.5837869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nvtx.pyi 2025-06-01T21:33:54.5842752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_onnx.pyi 2025-06-01T21:33:54.5847829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_profiler.pyi 2025-06-01T21:33:54.5851380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_VariableFunctions.pyi 2025-06-01T21:33:54.5865808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_verbose.pyi 2025-06-01T21:33:54.5870587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\__init__.pyi 2025-06-01T21:33:54.5886661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\compiled_autograd.pyi 2025-06-01T21:33:54.5891289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\eval_frame.pyi 2025-06-01T21:33:54.5896279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\guards.pyi 2025-06-01T21:33:54.5901147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\__init__.pyi 2025-06-01T21:33:54.5909726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\pt2_archive_constants.pyi 2025-06-01T21:33:54.5914511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\__init__.pyi 2025-06-01T21:33:54.5925644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\autograd.py 2025-06-01T21:33:54.5930405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\impl.py 2025-06-01T21:33:54.5934789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__init__.py 2025-06-01T21:33:54.5943211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\autograd.cpython-39.pyc 2025-06-01T21:33:54.5948199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\impl.cpython-39.pyc 2025-06-01T21:33:54.5953334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.5967899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C_flatbuffer\__init__.pyi 2025-06-01T21:33:54.5979122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions.py 2025-06-01T21:33:54.5985227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_jvp.py 2025-06-01T21:33:54.5990372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_rng.py 2025-06-01T21:33:54.6000454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__init__.py 2025-06-01T21:33:54.6009161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions.cpython-39.pyc 2025-06-01T21:33:54.6015005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_jvp.cpython-39.pyc 2025-06-01T21:33:54.6019986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_rng.cpython-39.pyc 2025-06-01T21:33:54.6027616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.6038912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\python.py 2025-06-01T21:33:54.6043623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__init__.py 2025-06-01T21:33:54.6051997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\python.cpython-39.pyc 2025-06-01T21:33:54.6056748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.6067684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_analysis.py 2025-06-01T21:33:54.6072655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_transformation.py 2025-06-01T21:33:54.6078933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\cache_size.py 2025-06-01T21:33:54.6086850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\callback.py 2025-06-01T21:33:54.6091535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\codegen.py 2025-06-01T21:33:54.6096622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\code_context.py 2025-06-01T21:33:54.6101537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\compiled_autograd.py 2025-06-01T21:33:54.6106851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\comptime.py 2025-06-01T21:33:54.6110321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\config.py 2025-06-01T21:33:54.6115045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\convert_frame.py 2025-06-01T21:33:54.6120055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\create_parameter_op.py 2025-06-01T21:33:54.6125066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\current_scope_id.py 2025-06-01T21:33:54.6128778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\debug_utils.py 2025-06-01T21:33:54.6134399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\decorators.py 2025-06-01T21:33:54.6139181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\device_interface.py 2025-06-01T21:33:54.6144114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\distributed.py 2025-06-01T21:33:54.6148902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\eval_frame.py 2025-06-01T21:33:54.6154297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\exc.py 2025-06-01T21:33:54.6158001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\external_utils.py 2025-06-01T21:33:54.6162941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\funcname_cache.py 2025-06-01T21:33:54.6168098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_hints.py 2025-06-01T21:33:54.6177490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_deduplication.py 2025-06-01T21:33:54.6181158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_region_tracker.py 2025-06-01T21:33:54.6184595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_utils.py 2025-06-01T21:33:54.6188434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\guards.py 2025-06-01T21:33:54.6194476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\hooks.py 2025-06-01T21:33:54.6197923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\logging.py 2025-06-01T21:33:54.6201275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\metrics_context.py 2025-06-01T21:33:54.6204814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\mutation_guard.py 2025-06-01T21:33:54.6208197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\output_graph.py 2025-06-01T21:33:54.6212539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\pgo.py 2025-06-01T21:33:54.6216418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\profiler.py 2025-06-01T21:33:54.6219984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\replay_record.py 2025-06-01T21:33:54.6228211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\resume_execution.py 2025-06-01T21:33:54.6231715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\side_effects.py 2025-06-01T21:33:54.6236844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\source.py 2025-06-01T21:33:54.6240153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\symbolic_convert.py 2025-06-01T21:33:54.6244929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\tensor_version_op.py 2025-06-01T21:33:54.6248541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\testing.py 2025-06-01T21:33:54.6251772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_case.py 2025-06-01T21:33:54.6255254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_dont_skip_tracing_functions.py 2025-06-01T21:33:54.6258922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_minifier_common.py 2025-06-01T21:33:54.6262383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\trace_rules.py 2025-06-01T21:33:54.6272387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\types.py 2025-06-01T21:33:54.6275775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\utils.py 2025-06-01T21:33:54.6281995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\_trace_wrapped_higher_order_op.py 2025-06-01T21:33:54.6285592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__init__.py 2025-06-01T21:33:54.6292721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\common.py 2025-06-01T21:33:54.6296180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\cudagraphs.py 2025-06-01T21:33:54.6299624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\debugging.py 2025-06-01T21:33:54.6303035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\distributed.py 2025-06-01T21:33:54.6310721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\inductor.py 2025-06-01T21:33:54.6314170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\onnxrt.py 2025-06-01T21:33:54.6317653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\registry.py 2025-06-01T21:33:54.6320865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tensorrt.py 2025-06-01T21:33:54.6324047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\torchxla.py 2025-06-01T21:33:54.6327610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tvm.py 2025-06-01T21:33:54.6330981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__init__.py 2025-06-01T21:33:54.6339197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\common.cpython-39.pyc 2025-06-01T21:33:54.6342759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-06-01T21:33:54.6346167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\debugging.cpython-39.pyc 2025-06-01T21:33:54.6354142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\distributed.cpython-39.pyc 2025-06-01T21:33:54.6357787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\inductor.cpython-39.pyc 2025-06-01T21:33:54.6362062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\onnxrt.cpython-39.pyc 2025-06-01T21:33:54.6365708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\registry.cpython-39.pyc 2025-06-01T21:33:54.6369231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tensorrt.cpython-39.pyc 2025-06-01T21:33:54.6372754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\torchxla.cpython-39.pyc 2025-06-01T21:33:54.6377136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tvm.cpython-39.pyc 2025-06-01T21:33:54.6381056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.6390038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\builtins.py 2025-06-01T21:33:54.6393490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\functools.py 2025-06-01T21:33:54.6396890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\fx.py 2025-06-01T21:33:54.6400688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\itertools.py 2025-06-01T21:33:54.6408866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\loader.py 2025-06-01T21:33:54.6412712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\operator.py 2025-06-01T21:33:54.6416276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\os.py 2025-06-01T21:33:54.6419633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\pytree.py 2025-06-01T21:33:54.6423229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\sys.py 2025-06-01T21:33:54.6426651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\tensor.py 2025-06-01T21:33:54.6430671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__init__.py 2025-06-01T21:33:54.6438019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\builtins.cpython-39.pyc 2025-06-01T21:33:54.6441631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\functools.cpython-39.pyc 2025-06-01T21:33:54.6445095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\fx.cpython-39.pyc 2025-06-01T21:33:54.6452811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\itertools.cpython-39.pyc 2025-06-01T21:33:54.6456251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\loader.cpython-39.pyc 2025-06-01T21:33:54.6460453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\operator.cpython-39.pyc 2025-06-01T21:33:54.6464046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\os.cpython-39.pyc 2025-06-01T21:33:54.6467475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\pytree.cpython-39.pyc 2025-06-01T21:33:54.6470981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\sys.cpython-39.pyc 2025-06-01T21:33:54.6474467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\tensor.cpython-39.pyc 2025-06-01T21:33:54.6478181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.6486493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_aot.py 2025-06-01T21:33:54.6490334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_dynamo.py 2025-06-01T21:33:54.6497405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\aoti.py 2025-06-01T21:33:54.6538811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__init__.py 2025-06-01T21:33:54.6544855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_aot.cpython-39.pyc 2025-06-01T21:33:54.6549145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_dynamo.cpython-39.pyc 2025-06-01T21:33:54.6552498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\aoti.cpython-39.pyc 2025-06-01T21:33:54.6561692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.6571185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\base.py 2025-06-01T21:33:54.6574832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builder.py 2025-06-01T21:33:54.6579852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builtin.py 2025-06-01T21:33:54.6583607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\constant.py 2025-06-01T21:33:54.6587132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\ctx_manager.py 2025-06-01T21:33:54.6595569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\dicts.py 2025-06-01T21:33:54.6600648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\distributed.py 2025-06-01T21:33:54.6604394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\functions.py 2025-06-01T21:33:54.6611728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\higher_order_ops.py 2025-06-01T21:33:54.6617601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\iter.py 2025-06-01T21:33:54.6621987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lazy.py 2025-06-01T21:33:54.6625740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lists.py 2025-06-01T21:33:54.6629359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\misc.py 2025-06-01T21:33:54.6633579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\nn_module.py 2025-06-01T21:33:54.6649484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\optimizer.py 2025-06-01T21:33:54.6653330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\script_object.py 2025-06-01T21:33:54.6656841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\sdpa.py 2025-06-01T21:33:54.6660764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\tensor.py 2025-06-01T21:33:54.6664446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch.py 2025-06-01T21:33:54.6668377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch_function.py 2025-06-01T21:33:54.6672736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\user_defined.py 2025-06-01T21:33:54.6676981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__init__.py 2025-06-01T21:33:54.6685263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\base.cpython-39.pyc 2025-06-01T21:33:54.6689301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builder.cpython-39.pyc 2025-06-01T21:33:54.6693099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builtin.cpython-39.pyc 2025-06-01T21:33:54.6702881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\constant.cpython-39.pyc 2025-06-01T21:33:54.6706653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\ctx_manager.cpython-39.pyc 2025-06-01T21:33:54.6710482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\dicts.cpython-39.pyc 2025-06-01T21:33:54.6716069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\distributed.cpython-39.pyc 2025-06-01T21:33:54.6720939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\functions.cpython-39.pyc 2025-06-01T21:33:54.6724954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\higher_order_ops.cpython-39.pyc 2025-06-01T21:33:54.6731385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\iter.cpython-39.pyc 2025-06-01T21:33:54.6735062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lazy.cpython-39.pyc 2025-06-01T21:33:54.6738788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lists.cpython-39.pyc 2025-06-01T21:33:54.6742365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\misc.cpython-39.pyc 2025-06-01T21:33:54.6746103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\nn_module.cpython-39.pyc 2025-06-01T21:33:54.6749860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\optimizer.cpython-39.pyc 2025-06-01T21:33:54.6753556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\script_object.cpython-39.pyc 2025-06-01T21:33:54.6757416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\sdpa.cpython-39.pyc 2025-06-01T21:33:54.6764908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\tensor.cpython-39.pyc 2025-06-01T21:33:54.6768664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch.cpython-39.pyc 2025-06-01T21:33:54.6772391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch_function.cpython-39.pyc 2025-06-01T21:33:54.6775962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\user_defined.cpython-39.pyc 2025-06-01T21:33:54.6779716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.6788978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_analysis.cpython-39.pyc 2025-06-01T21:33:54.6792691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_transformation.cpython-39.pyc 2025-06-01T21:33:54.6796135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\cache_size.cpython-39.pyc 2025-06-01T21:33:54.6804237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\callback.cpython-39.pyc 2025-06-01T21:33:54.6807760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\codegen.cpython-39.pyc 2025-06-01T21:33:54.6811930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\code_context.cpython-39.pyc 2025-06-01T21:33:54.6818255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\compiled_autograd.cpython-39.pyc 2025-06-01T21:33:54.6831901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\comptime.cpython-39.pyc 2025-06-01T21:33:54.6837340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\config.cpython-39.pyc 2025-06-01T21:33:54.6841163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\convert_frame.cpython-39.pyc 2025-06-01T21:33:54.6846311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\create_parameter_op.cpython-39.pyc 2025-06-01T21:33:54.6851413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\current_scope_id.cpython-39.pyc 2025-06-01T21:33:54.6875172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\debug_utils.cpython-39.pyc 2025-06-01T21:33:54.6880455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\decorators.cpython-39.pyc 2025-06-01T21:33:54.6886353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\device_interface.cpython-39.pyc 2025-06-01T21:33:54.6891474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\distributed.cpython-39.pyc 2025-06-01T21:33:54.6903189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\eval_frame.cpython-39.pyc 2025-06-01T21:33:54.6908525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\exc.cpython-39.pyc 2025-06-01T21:33:54.6913083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\external_utils.cpython-39.pyc 2025-06-01T21:33:54.6917077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\funcname_cache.cpython-39.pyc 2025-06-01T21:33:54.6922312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_break_hints.cpython-39.pyc 2025-06-01T21:33:54.6927906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_deduplication.cpython-39.pyc 2025-06-01T21:33:54.6933027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_region_tracker.cpython-39.pyc 2025-06-01T21:33:54.6937920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_utils.cpython-39.pyc 2025-06-01T21:33:54.6946302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\guards.cpython-39.pyc 2025-06-01T21:33:54.6951678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\hooks.cpython-39.pyc 2025-06-01T21:33:54.6956933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\logging.cpython-39.pyc 2025-06-01T21:33:54.6961894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\metrics_context.cpython-39.pyc 2025-06-01T21:33:54.6967095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\mutation_guard.cpython-39.pyc 2025-06-01T21:33:54.6970718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\output_graph.cpython-39.pyc 2025-06-01T21:33:54.6976289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\pgo.cpython-39.pyc 2025-06-01T21:33:54.6981767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\profiler.cpython-39.pyc 2025-06-01T21:33:54.6986667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\replay_record.cpython-39.pyc 2025-06-01T21:33:54.6994505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\resume_execution.cpython-39.pyc 2025-06-01T21:33:54.6999518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\side_effects.cpython-39.pyc 2025-06-01T21:33:54.7004424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\source.cpython-39.pyc 2025-06-01T21:33:54.7009602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\symbolic_convert.cpython-39.pyc 2025-06-01T21:33:54.7015419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\tensor_version_op.cpython-39.pyc 2025-06-01T21:33:54.7020436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\testing.cpython-39.pyc 2025-06-01T21:33:54.7024146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_case.cpython-39.pyc 2025-06-01T21:33:54.7029643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_dont_skip_tracing_functions.cpython-39.pyc 2025-06-01T21:33:54.7043655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_minifier_common.cpython-39.pyc 2025-06-01T21:33:54.7047594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\trace_rules.cpython-39.pyc 2025-06-01T21:33:54.7053199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\types.cpython-39.pyc 2025-06-01T21:33:54.7058247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.7064246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\_trace_wrapped_higher_order_op.cpython-39.pyc 2025-06-01T21:33:54.7069184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.7081847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\converter.py 2025-06-01T21:33:54.7085949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\error.py 2025-06-01T21:33:54.7090717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\non_strict_utils.py 2025-06-01T21:33:54.7094463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_base.py 2025-06-01T21:33:54.7102226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\tools.py 2025-06-01T21:33:54.7107039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\utils.py 2025-06-01T21:33:54.7110700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\verifier.py 2025-06-01T21:33:54.7114027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\wrappers.py 2025-06-01T21:33:54.7117390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__init__.py 2025-06-01T21:33:54.7124570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\case.py 2025-06-01T21:33:54.7127980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\gen_example.py 2025-06-01T21:33:54.7131350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\logging.py 2025-06-01T21:33:54.7134644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__init__.py 2025-06-01T21:33:54.7143738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\assume_constant_result.py 2025-06-01T21:33:54.7147279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\autograd_function.py 2025-06-01T21:33:54.7150686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\class_method.py 2025-06-01T21:33:54.7158811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_class_method.py 2025-06-01T21:33:54.7162480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nested_function.py 2025-06-01T21:33:54.7166319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nonlocal_variables.py 2025-06-01T21:33:54.7169869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_closed_over_variable.py 2025-06-01T21:33:54.7173545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_operands.py 2025-06-01T21:33:54.7177072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_predicate.py 2025-06-01T21:33:54.7180743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_size_example.py 2025-06-01T21:33:54.7184429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_value_example.py 2025-06-01T21:33:54.7187981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\decorator.py 2025-06-01T21:33:54.7205110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dictionary.py 2025-06-01T21:33:54.7208690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_assert.py 2025-06-01T21:33:54.7250686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_constructor.py 2025-06-01T21:33:54.7255650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_if_guard.py 2025-06-01T21:33:54.7260978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_map.py 2025-06-01T21:33:54.7266280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_round.py 2025-06-01T21:33:54.7275496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_slicing.py 2025-06-01T21:33:54.7279289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_view.py 2025-06-01T21:33:54.7284535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\fn_with_kwargs.py 2025-06-01T21:33:54.7288163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_contains.py 2025-06-01T21:33:54.7291634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_unpack.py 2025-06-01T21:33:54.7295171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\model_attr_mutation.py 2025-06-01T21:33:54.7301022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\nested_function.py 2025-06-01T21:33:54.7304704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\null_context_manager.py 2025-06-01T21:33:54.7312388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\optional_input.py 2025-06-01T21:33:54.7316111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\pytree_flatten.py 2025-06-01T21:33:54.7319654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\scalar_output.py 2025-06-01T21:33:54.7323134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\specialized_attribute.py 2025-06-01T21:33:54.7326798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_for_loop.py 2025-06-01T21:33:54.7331582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_if.py 2025-06-01T21:33:54.7335444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\tensor_setattr.py 2025-06-01T21:33:54.7339100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\type_reflection_method.py 2025-06-01T21:33:54.7343506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\unsupported_operator.py 2025-06-01T21:33:54.7353152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\user_input_mutation.py 2025-06-01T21:33:54.7356560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__init__.py 2025-06-01T21:33:54.7365642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\assume_constant_result.cpython-39.pyc 2025-06-01T21:33:54.7369222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\autograd_function.cpython-39.pyc 2025-06-01T21:33:54.7373235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\class_method.cpython-39.pyc 2025-06-01T21:33:54.7380680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_class_method.cpython-39.pyc 2025-06-01T21:33:54.7384539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nested_function.cpython-39.pyc 2025-06-01T21:33:54.7388124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nonlocal_variables.cpython-39.pyc 2025-06-01T21:33:54.7391806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_closed_over_variable.cpython-39.pyc 2025-06-01T21:33:54.7395604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_operands.cpython-39.pyc 2025-06-01T21:33:54.7398962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_predicate.cpython-39.pyc 2025-06-01T21:33:54.7402573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_size_example.cpython-39.pyc 2025-06-01T21:33:54.7406328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_value_example.cpython-39.pyc 2025-06-01T21:33:54.7409815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\decorator.cpython-39.pyc 2025-06-01T21:33:54.7413396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dictionary.cpython-39.pyc 2025-06-01T21:33:54.7417061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_assert.cpython-39.pyc 2025-06-01T21:33:54.7421454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_constructor.cpython-39.pyc 2025-06-01T21:33:54.7425279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_if_guard.cpython-39.pyc 2025-06-01T21:33:54.7433442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_map.cpython-39.pyc 2025-06-01T21:33:54.7437083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_round.cpython-39.pyc 2025-06-01T21:33:54.7440928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_slicing.cpython-39.pyc 2025-06-01T21:33:54.7444930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_view.cpython-39.pyc 2025-06-01T21:33:54.7448283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\fn_with_kwargs.cpython-39.pyc 2025-06-01T21:33:54.7451844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_contains.cpython-39.pyc 2025-06-01T21:33:54.7455505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_unpack.cpython-39.pyc 2025-06-01T21:33:54.7464211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\model_attr_mutation.cpython-39.pyc 2025-06-01T21:33:54.7467853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\nested_function.cpython-39.pyc 2025-06-01T21:33:54.7471448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\null_context_manager.cpython-39.pyc 2025-06-01T21:33:54.7474934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\optional_input.cpython-39.pyc 2025-06-01T21:33:54.7478657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\pytree_flatten.cpython-39.pyc 2025-06-01T21:33:54.7482175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\scalar_output.cpython-39.pyc 2025-06-01T21:33:54.7486220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\specialized_attribute.cpython-39.pyc 2025-06-01T21:33:54.7489776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_for_loop.cpython-39.pyc 2025-06-01T21:33:54.7503369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_if.cpython-39.pyc 2025-06-01T21:33:54.7508559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\tensor_setattr.cpython-39.pyc 2025-06-01T21:33:54.7512646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\type_reflection_method.cpython-39.pyc 2025-06-01T21:33:54.7516525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\unsupported_operator.cpython-39.pyc 2025-06-01T21:33:54.7520228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\user_input_mutation.cpython-39.pyc 2025-06-01T21:33:54.7524428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.7539273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\case.cpython-39.pyc 2025-06-01T21:33:54.7542849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\gen_example.cpython-39.pyc 2025-06-01T21:33:54.7546335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\logging.cpython-39.pyc 2025-06-01T21:33:54.7553377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.7561839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py 2025-06-01T21:33:54.7565261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\collect_tracepoints_pass.py 2025-06-01T21:33:54.7568626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\constant_folding.py 2025-06-01T21:33:54.7576119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\functionalize_side_effectful_ops_pass.py 2025-06-01T21:33:54.7579699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\insert_custom_op_guards.py 2025-06-01T21:33:54.7583169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\lift_constants_pass.py 2025-06-01T21:33:54.7586684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\remove_runtime_assertions.py 2025-06-01T21:33:54.7590424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_autocast_with_hop_pass.py 2025-06-01T21:33:54.7594016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py 2025-06-01T21:33:54.7597572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_set_grad_with_hop_pass.py 2025-06-01T21:33:54.7602713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py 2025-06-01T21:33:54.7606160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_with_hop_pass_util.py 2025-06-01T21:33:54.7609651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\_node_metadata_hook.py 2025-06-01T21:33:54.7613718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__init__.py 2025-06-01T21:33:54.7621460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\add_runtime_assertions_for_constraints_pass.cpython-39.pyc 2025-06-01T21:33:54.7624969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\collect_tracepoints_pass.cpython-39.pyc 2025-06-01T21:33:54.7632803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\constant_folding.cpython-39.pyc 2025-06-01T21:33:54.7636388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\functionalize_side_effectful_ops_pass.cpython-39.pyc 2025-06-01T21:33:54.7640446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\insert_custom_op_guards.cpython-39.pyc 2025-06-01T21:33:54.7644121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\lift_constants_pass.cpython-39.pyc 2025-06-01T21:33:54.7647688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\remove_runtime_assertions.cpython-39.pyc 2025-06-01T21:33:54.7651300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_autocast_with_hop_pass.cpython-39.pyc 2025-06-01T21:33:54.7654864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_quantized_ops_with_standard_ops_pass.cpython-39.pyc 2025-06-01T21:33:54.7658655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_set_grad_with_hop_pass.cpython-39.pyc 2025-06-01T21:33:54.7662422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_view_ops_with_view_copy_ops_pass.cpython-39.pyc 2025-06-01T21:33:54.7666281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_with_hop_pass_util.cpython-39.pyc 2025-06-01T21:33:54.7669669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\_node_metadata_hook.cpython-39.pyc 2025-06-01T21:33:54.7673227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.7681284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\node_metadata.py 2025-06-01T21:33:54.7684954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\proxy_value.py 2025-06-01T21:33:54.7688356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__init__.py 2025-06-01T21:33:54.7699107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\node_metadata.cpython-39.pyc 2025-06-01T21:33:54.7712379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\proxy_value.cpython-39.pyc 2025-06-01T21:33:54.7753637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.7767296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\aoti_schema.py 2025-06-01T21:33:54.7772510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\dynamic_shapes.py 2025-06-01T21:33:54.7777854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\export_schema.thrift 2025-06-01T21:33:54.7781339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.py 2025-06-01T21:33:54.7790054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.yaml 2025-06-01T21:33:54.7793644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema_check.py 2025-06-01T21:33:54.7797186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\serialize.py 2025-06-01T21:33:54.7803233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\union.py 2025-06-01T21:33:54.7806830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__init__.py 2025-06-01T21:33:54.7813549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\aoti_schema.cpython-39.pyc 2025-06-01T21:33:54.7817414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\dynamic_shapes.cpython-39.pyc 2025-06-01T21:33:54.7820932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema.cpython-39.pyc 2025-06-01T21:33:54.7828496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema_check.cpython-39.pyc 2025-06-01T21:33:54.7832040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\serialize.cpython-39.pyc 2025-06-01T21:33:54.7837357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\union.cpython-39.pyc 2025-06-01T21:33:54.7840972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.7850735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\converter.cpython-39.pyc 2025-06-01T21:33:54.7854568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\error.cpython-39.pyc 2025-06-01T21:33:54.7858164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\non_strict_utils.cpython-39.pyc 2025-06-01T21:33:54.7866178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\pass_base.cpython-39.pyc 2025-06-01T21:33:54.7870068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\tools.cpython-39.pyc 2025-06-01T21:33:54.7873632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.7877283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\verifier.cpython-39.pyc 2025-06-01T21:33:54.7880733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\wrappers.cpython-39.pyc 2025-06-01T21:33:54.7884363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.7894408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\aot_autograd.py 2025-06-01T21:33:54.7898447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\apis.py 2025-06-01T21:33:54.7901810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\autograd_function.py 2025-06-01T21:33:54.7905258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\batch_norm_replacement.py 2025-06-01T21:33:54.7913498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\benchmark_utils.py 2025-06-01T21:33:54.7917016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compilers.py 2025-06-01T21:33:54.7920621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compile_utils.py 2025-06-01T21:33:54.7924141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\config.py 2025-06-01T21:33:54.7927527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\deprecated.py 2025-06-01T21:33:54.7930882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\eager_transforms.py 2025-06-01T21:33:54.7934659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\functional_call.py 2025-06-01T21:33:54.7938205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\fx_minifier.py 2025-06-01T21:33:54.7942029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\make_functional.py 2025-06-01T21:33:54.7945553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\partitioners.py 2025-06-01T21:33:54.7949815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pyfunctorch.py 2025-06-01T21:33:54.7953592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\python_key.py 2025-06-01T21:33:54.7957125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pytree_hacks.py 2025-06-01T21:33:54.7960659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\top_operators_github_usage.py 2025-06-01T21:33:54.7964315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\utils.py 2025-06-01T21:33:54.7967728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\vmap.py 2025-06-01T21:33:54.7971203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__init__.py 2025-06-01T21:33:54.7983439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\ac_logging_utils.py 2025-06-01T21:33:54.7987244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\graph_info_provider.py 2025-06-01T21:33:54.7992508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack.py 2025-06-01T21:33:54.8001340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py 2025-06-01T21:33:54.8005991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__init__.py 2025-06-01T21:33:54.8016239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\ac_logging_utils.cpython-39.pyc 2025-06-01T21:33:54.8020454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\graph_info_provider.cpython-39.pyc 2025-06-01T21:33:54.8025370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack.cpython-39.pyc 2025-06-01T21:33:54.8034628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack_evaluator.cpython-39.pyc 2025-06-01T21:33:54.8039329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.8049025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\autograd_cache.py 2025-06-01T21:33:54.8054111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\collect_metadata_analysis.py 2025-06-01T21:33:54.8059277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py 2025-06-01T21:33:54.8067457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\functional_utils.py 2025-06-01T21:33:54.8072457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\input_output_analysis.py 2025-06-01T21:33:54.8077683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py 2025-06-01T21:33:54.8083243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\logging_utils.py 2025-06-01T21:33:54.8088051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\runtime_wrappers.py 2025-06-01T21:33:54.8093584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\schemas.py 2025-06-01T21:33:54.8098705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_parametrization.py 2025-06-01T21:33:54.8102336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_utils.py 2025-06-01T21:33:54.8107224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\traced_function_transforms.py 2025-06-01T21:33:54.8112410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\utils.py 2025-06-01T21:33:54.8117112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__init__.py 2025-06-01T21:33:54.8126065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\autograd_cache.cpython-39.pyc 2025-06-01T21:33:54.8131081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\collect_metadata_analysis.cpython-39.pyc 2025-06-01T21:33:54.8135935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\dispatch_and_compile_graph.cpython-39.pyc 2025-06-01T21:33:54.8144009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\functional_utils.cpython-39.pyc 2025-06-01T21:33:54.8149042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\input_output_analysis.cpython-39.pyc 2025-06-01T21:33:54.8154026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\jit_compile_runtime_wrappers.cpython-39.pyc 2025-06-01T21:33:54.8158990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\logging_utils.cpython-39.pyc 2025-06-01T21:33:54.8164010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\runtime_wrappers.cpython-39.pyc 2025-06-01T21:33:54.8169347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\schemas.cpython-39.pyc 2025-06-01T21:33:54.8189615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_parametrization.cpython-39.pyc 2025-06-01T21:33:54.8207421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_utils.cpython-39.pyc 2025-06-01T21:33:54.8212913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\traced_function_transforms.cpython-39.pyc 2025-06-01T21:33:54.8218387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.8222211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.8234093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\aot_autograd.cpython-39.pyc 2025-06-01T21:33:54.8237732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\apis.cpython-39.pyc 2025-06-01T21:33:54.8243376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\autograd_function.cpython-39.pyc 2025-06-01T21:33:54.8252007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\batch_norm_replacement.cpython-39.pyc 2025-06-01T21:33:54.8255569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\benchmark_utils.cpython-39.pyc 2025-06-01T21:33:54.8260926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compilers.cpython-39.pyc 2025-06-01T21:33:54.8264803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compile_utils.cpython-39.pyc 2025-06-01T21:33:54.8268649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\config.cpython-39.pyc 2025-06-01T21:33:54.8272074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\deprecated.cpython-39.pyc 2025-06-01T21:33:54.8275637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\eager_transforms.cpython-39.pyc 2025-06-01T21:33:54.8279732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\functional_call.cpython-39.pyc 2025-06-01T21:33:54.8283413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\fx_minifier.cpython-39.pyc 2025-06-01T21:33:54.8286997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\make_functional.cpython-39.pyc 2025-06-01T21:33:54.8292432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\partitioners.cpython-39.pyc 2025-06-01T21:33:54.8296384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pyfunctorch.cpython-39.pyc 2025-06-01T21:33:54.8300020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\python_key.cpython-39.pyc 2025-06-01T21:33:54.8307665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pytree_hacks.cpython-39.pyc 2025-06-01T21:33:54.8311792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\top_operators_github_usage.cpython-39.pyc 2025-06-01T21:33:54.8315889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.8319545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\vmap.cpython-39.pyc 2025-06-01T21:33:54.8323041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.8332258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\aoti_call_delegate.py 2025-06-01T21:33:54.8335939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\associative_scan.py 2025-06-01T21:33:54.8339948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\auto_functionalize.py 2025-06-01T21:33:54.8348751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\base_hop.py 2025-06-01T21:33:54.8352161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\cond.py 2025-06-01T21:33:54.8355631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\effects.py 2025-06-01T21:33:54.8359138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\executorch_call_delegate.py 2025-06-01T21:33:54.8363300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flat_apply.py 2025-06-01T21:33:54.8366938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flex_attention.py 2025-06-01T21:33:54.8370676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\foreach_map.py 2025-06-01T21:33:54.8374315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\hints_wrap.py 2025-06-01T21:33:54.8377795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\invoke_subgraph.py 2025-06-01T21:33:54.8381337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\map.py 2025-06-01T21:33:54.8384677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\out_dtype.py 2025-06-01T21:33:54.8388157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\run_const_graph.py 2025-06-01T21:33:54.8391595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\scan.py 2025-06-01T21:33:54.8395122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\schema.py 2025-06-01T21:33:54.8398530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\strict_mode.py 2025-06-01T21:33:54.8402017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\torchbind.py 2025-06-01T21:33:54.8405547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\triton_kernel_wrap.py 2025-06-01T21:33:54.8409881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\utils.py 2025-06-01T21:33:54.8413591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\while_loop.py 2025-06-01T21:33:54.8422054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\wrap.py 2025-06-01T21:33:54.8425385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\_invoke_quant.py 2025-06-01T21:33:54.8428909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__init__.py 2025-06-01T21:33:54.8436953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\aoti_call_delegate.cpython-39.pyc 2025-06-01T21:33:54.8440477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\associative_scan.cpython-39.pyc 2025-06-01T21:33:54.8444202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\auto_functionalize.cpython-39.pyc 2025-06-01T21:33:54.8454749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\base_hop.cpython-39.pyc 2025-06-01T21:33:54.8459734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\cond.cpython-39.pyc 2025-06-01T21:33:54.8465314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\effects.cpython-39.pyc 2025-06-01T21:33:54.8470453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\executorch_call_delegate.cpython-39.pyc 2025-06-01T21:33:54.8474171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flat_apply.cpython-39.pyc 2025-06-01T21:33:54.8479046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flex_attention.cpython-39.pyc 2025-06-01T21:33:54.8484270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\foreach_map.cpython-39.pyc 2025-06-01T21:33:54.8489167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\hints_wrap.cpython-39.pyc 2025-06-01T21:33:54.8493950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\invoke_subgraph.cpython-39.pyc 2025-06-01T21:33:54.8497663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\map.cpython-39.pyc 2025-06-01T21:33:54.8502645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\out_dtype.cpython-39.pyc 2025-06-01T21:33:54.8507561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\run_const_graph.cpython-39.pyc 2025-06-01T21:33:54.8512435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\scan.cpython-39.pyc 2025-06-01T21:33:54.8517969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\schema.cpython-39.pyc 2025-06-01T21:33:54.8530926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\strict_mode.cpython-39.pyc 2025-06-01T21:33:54.8531696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\torchbind.cpython-39.pyc 2025-06-01T21:33:54.8536783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\triton_kernel_wrap.cpython-39.pyc 2025-06-01T21:33:54.8542090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.8547154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\while_loop.cpython-39.pyc 2025-06-01T21:33:54.8550930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\wrap.cpython-39.pyc 2025-06-01T21:33:54.8556088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\_invoke_quant.cpython-39.pyc 2025-06-01T21:33:54.8561057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.8577727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analyze_preserves_zero_mask.py 2025-06-01T21:33:54.8582639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\aoti_eager.py 2025-06-01T21:33:54.8586188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\async_compile.py 2025-06-01T21:33:54.8596630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autotune_process.py 2025-06-01T21:33:54.8602392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\bounds.py 2025-06-01T21:33:54.8606587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\choices.py 2025-06-01T21:33:54.8610089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codecache.py 2025-06-01T21:33:54.8615814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms.py 2025-06-01T21:33:54.8621193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_analysis.py 2025-06-01T21:33:54.8626106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_lowering.py 2025-06-01T21:33:54.8630928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compiler_bisector.py 2025-06-01T21:33:54.8635863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx.py 2025-06-01T21:33:54.8641185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_async.py 2025-06-01T21:33:54.8644868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_ext.py 2025-06-01T21:33:54.8650179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_subproc.py 2025-06-01T21:33:54.8655137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\config.py 2025-06-01T21:33:54.8660288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\constant_folding.py 2025-06-01T21:33:54.8665094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpp_builder.py 2025-06-01T21:33:54.8668956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpu_vec_isa.py 2025-06-01T21:33:54.8673950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_trees.py 2025-06-01T21:33:54.8679486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_utils.py 2025-06-01T21:33:54.8690064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\custom_graph_pass.py 2025-06-01T21:33:54.8702087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\debug.py 2025-06-01T21:33:54.8707717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\decomposition.py 2025-06-01T21:33:54.8711758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dependencies.py 2025-06-01T21:33:54.8717028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dtype_propagation.py 2025-06-01T21:33:54.8722136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\exc.py 2025-06-01T21:33:54.8727437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\extern_node_serializer.py 2025-06-01T21:33:54.8731241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing.py 2025-06-01T21:33:54.8734671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing_utils.py 2025-06-01T21:33:54.8740046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fuzzer.py 2025-06-01T21:33:54.8743654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_utils.py 2025-06-01T21:33:54.8747210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\graph.py 2025-06-01T21:33:54.8757444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\hooks.py 2025-06-01T21:33:54.8760942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\index_propagation.py 2025-06-01T21:33:54.8764481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\inductor_prims.py 2025-06-01T21:33:54.8767942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ir.py 2025-06-01T21:33:54.8773178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\jagged_lowerings.py 2025-06-01T21:33:54.8776813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\loop_body.py 2025-06-01T21:33:54.8780643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\lowering.py 2025-06-01T21:33:54.8787251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\memory.py 2025-06-01T21:33:54.8790928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\metrics.py 2025-06-01T21:33:54.8794659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_ir.py 2025-06-01T21:33:54.8798570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_lowerings.py 2025-06-01T21:33:54.8802519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mock_cache.py 2025-06-01T21:33:54.8810163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ops_handler.py 2025-06-01T21:33:54.8813747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\optimize_indexing.py 2025-06-01T21:33:54.8817283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\output_code.py 2025-06-01T21:33:54.8821263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\pattern_matcher.py 2025-06-01T21:33:54.8825714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\quantized_lowerings.py 2025-06-01T21:33:54.8829499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_cache.py 2025-06-01T21:33:54.8833068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\scheduler.py 2025-06-01T21:33:54.8837790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\script.ld 2025-06-01T21:33:54.8842635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\select_algorithm.py 2025-06-01T21:33:54.8848198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\sizevars.py 2025-06-01T21:33:54.8859086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\standalone_compile.py 2025-06-01T21:33:54.8862677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\subgraph_lowering.py 2025-06-01T21:33:54.8866689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics.py 2025-06-01T21:33:54.8870685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_case.py 2025-06-01T21:33:54.8874292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_operators.py 2025-06-01T21:33:54.8878199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\triton_bundler.py 2025-06-01T21:33:54.8881783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\utils.py 2025-06-01T21:33:54.8886047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\virtualized.py 2025-06-01T21:33:54.8889612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\wrapper_benchmark.py 2025-06-01T21:33:54.8893177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__autotune_main__.py 2025-06-01T21:33:54.8901209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__init__.py 2025-06-01T21:33:54.8909880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic.py 2025-06-01T21:33:54.8913525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic_utils.py 2025-06-01T21:33:54.8917023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learnedheuristic_interface.py 2025-06-01T21:33:54.8924404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learned_heuristic_controller.py 2025-06-01T21:33:54.8927921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__init__.py 2025-06-01T21:33:54.8934461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py 2025-06-01T21:33:54.8938053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py 2025-06-01T21:33:54.8943128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py 2025-06-01T21:33:54.8951046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py 2025-06-01T21:33:54.8954890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py 2025-06-01T21:33:54.8958257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__init__.py 2025-06-01T21:33:54.8964723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMA100.cpython-39.pyc 2025-06-01T21:33:54.8968327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMH100.cpython-39.pyc 2025-06-01T21:33:54.8971751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingA100.cpython-39.pyc 2025-06-01T21:33:54.8980137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingH100.cpython-39.pyc 2025-06-01T21:33:54.8983713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_PadMMA100.cpython-39.pyc 2025-06-01T21:33:54.8987767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.8995927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic.cpython-39.pyc 2025-06-01T21:33:54.8999514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic_utils.cpython-39.pyc 2025-06-01T21:33:54.9003133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learnedheuristic_interface.cpython-39.pyc 2025-06-01T21:33:54.9010942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learned_heuristic_controller.cpython-39.pyc 2025-06-01T21:33:54.9014471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.9023908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_hipify_utils.py 2025-06-01T21:33:54.9027474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\block_analysis.py 2025-06-01T21:33:54.9031023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\common.py 2025-06-01T21:33:54.9035034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp.py 2025-06-01T21:33:54.9039674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_bmm_template.py 2025-06-01T21:33:54.9047706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_flex_attention_template.py 2025-06-01T21:33:54.9053226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_gemm_template.py 2025-06-01T21:33:54.9058208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_grouped_gemm_template.py 2025-06-01T21:33:54.9061927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_micro_gemm.py 2025-06-01T21:33:54.9065864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template.py 2025-06-01T21:33:54.9069358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template_kernel.py 2025-06-01T21:33:54.9072952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_utils.py 2025-06-01T21:33:54.9076506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu.py 2025-06-01T21:33:54.9081102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py 2025-06-01T21:33:54.9086128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_gpu.py 2025-06-01T21:33:54.9091209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_mps.py 2025-06-01T21:33:54.9096066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpu_device_op_overrides.py 2025-06-01T21:33:54.9099969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda_combined_scheduling.py 2025-06-01T21:33:54.9104813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\debug_utils.py 2025-06-01T21:33:54.9113700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\halide.py 2025-06-01T21:33:54.9117660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\memory_planning.py 2025-06-01T21:33:54.9122703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps.py 2025-06-01T21:33:54.9127675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps_device_op_overrides.py 2025-06-01T21:33:54.9132548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\multi_kernel.py 2025-06-01T21:33:54.9137472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd.py 2025-06-01T21:33:54.9141821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd_kernel_features.py 2025-06-01T21:33:54.9146654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\subgraph.py 2025-06-01T21:33:54.9151568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton.py 2025-06-01T21:33:54.9157149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_combo_kernel.py 2025-06-01T21:33:54.9162059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_split_scan.py 2025-06-01T21:33:54.9167087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_utils.py 2025-06-01T21:33:54.9176175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper.py 2025-06-01T21:33:54.9181707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper_fxir.py 2025-06-01T21:33:54.9186585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__init__.py 2025-06-01T21:33:54.9194594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_runtime\interface.cpp 2025-06-01T21:33:54.9235183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py 2025-06-01T21:33:54.9240339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_env.py 2025-06-01T21:33:54.9246232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_kernel.py 2025-06-01T21:33:54.9251567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_template.py 2025-06-01T21:33:54.9260422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_cache.py 2025-06-01T21:33:54.9265604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_presets.py 2025-06-01T21:33:54.9269432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_python_evt.py 2025-06-01T21:33:54.9273056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_utils.py 2025-06-01T21:33:54.9276601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\device_op_overrides.py 2025-06-01T21:33:54.9281810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\gemm_template.py 2025-06-01T21:33:54.9285868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\serialization.py 2025-06-01T21:33:54.9289561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__init__.py 2025-06-01T21:33:54.9296205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_cpp_scheduling.cpython-39.pyc 2025-06-01T21:33:54.9300355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_env.cpython-39.pyc 2025-06-01T21:33:54.9303540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_kernel.cpython-39.pyc 2025-06-01T21:33:54.9313089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_template.cpython-39.pyc 2025-06-01T21:33:54.9316759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_cache.cpython-39.pyc 2025-06-01T21:33:54.9320787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_presets.cpython-39.pyc 2025-06-01T21:33:54.9324468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_python_evt.cpython-39.pyc 2025-06-01T21:33:54.9328181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_utils.cpython-39.pyc 2025-06-01T21:33:54.9331793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\device_op_overrides.cpython-39.pyc 2025-06-01T21:33:54.9335619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\gemm_template.cpython-39.pyc 2025-06-01T21:33:54.9339532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\serialization.cpython-39.pyc 2025-06-01T21:33:54.9343041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.9352862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_conv_template.py 2025-06-01T21:33:54.9356493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_template.py 2025-06-01T21:33:54.9359869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_template.py 2025-06-01T21:33:54.9363407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py 2025-06-01T21:33:54.9371549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py 2025-06-01T21:33:54.9375159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\compile_command.py 2025-06-01T21:33:54.9378863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_benchmark_request.py 2025-06-01T21:33:54.9382559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py 2025-06-01T21:33:54.9386071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_kernel.py 2025-06-01T21:33:54.9389545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template.py 2025-06-01T21:33:54.9393174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template_buffer.py 2025-06-01T21:33:54.9396659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_utils.py 2025-06-01T21:33:54.9400637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__init__.py 2025-06-01T21:33:54.9407679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_conv_template.cpython-39.pyc 2025-06-01T21:33:54.9411469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_template.cpython-39.pyc 2025-06-01T21:33:54.9414991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_template.cpython-39.pyc 2025-06-01T21:33:54.9423958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_universal_gemm_template.cpython-39.pyc 2025-06-01T21:33:54.9427578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_universal_gemm_template.cpython-39.pyc 2025-06-01T21:33:54.9431391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\compile_command.cpython-39.pyc 2025-06-01T21:33:54.9453438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_benchmark_request.cpython-39.pyc 2025-06-01T21:33:54.9457475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_cpp_scheduling.cpython-39.pyc 2025-06-01T21:33:54.9461260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_kernel.cpython-39.pyc 2025-06-01T21:33:54.9464805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template.cpython-39.pyc 2025-06-01T21:33:54.9469185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template_buffer.cpython-39.pyc 2025-06-01T21:33:54.9472846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_utils.cpython-39.pyc 2025-06-01T21:33:54.9476384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.9484910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\device_op_overrides.py 2025-06-01T21:33:54.9488467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__init__.py 2025-06-01T21:33:54.9502767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\device_op_overrides.cpython-39.pyc 2025-06-01T21:33:54.9503606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.9511141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\aoti_hipify_utils.cpython-39.pyc 2025-06-01T21:33:54.9516003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\block_analysis.cpython-39.pyc 2025-06-01T21:33:54.9521007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\common.cpython-39.pyc 2025-06-01T21:33:54.9529527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp.cpython-39.pyc 2025-06-01T21:33:54.9535569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_bmm_template.cpython-39.pyc 2025-06-01T21:33:54.9540629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_flex_attention_template.cpython-39.pyc 2025-06-01T21:33:54.9545753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_gemm_template.cpython-39.pyc 2025-06-01T21:33:54.9550949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_grouped_gemm_template.cpython-39.pyc 2025-06-01T21:33:54.9555798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_micro_gemm.cpython-39.pyc 2025-06-01T21:33:54.9561311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template.cpython-39.pyc 2025-06-01T21:33:54.9565075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template_kernel.cpython-39.pyc 2025-06-01T21:33:54.9570223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_utils.cpython-39.pyc 2025-06-01T21:33:54.9575199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu.cpython-39.pyc 2025-06-01T21:33:54.9580588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu_array_ref.cpython-39.pyc 2025-06-01T21:33:54.9585660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_gpu.cpython-39.pyc 2025-06-01T21:33:54.9590766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_mps.cpython-39.pyc 2025-06-01T21:33:54.9601379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpu_device_op_overrides.cpython-39.pyc 2025-06-01T21:33:54.9604710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cuda_combined_scheduling.cpython-39.pyc 2025-06-01T21:33:54.9608401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\debug_utils.cpython-39.pyc 2025-06-01T21:33:54.9613078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\halide.cpython-39.pyc 2025-06-01T21:33:54.9616979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\memory_planning.cpython-39.pyc 2025-06-01T21:33:54.9621004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps.cpython-39.pyc 2025-06-01T21:33:54.9625133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps_device_op_overrides.cpython-39.pyc 2025-06-01T21:33:54.9628721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\multi_kernel.cpython-39.pyc 2025-06-01T21:33:54.9637606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd.cpython-39.pyc 2025-06-01T21:33:54.9642450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd_kernel_features.cpython-39.pyc 2025-06-01T21:33:54.9645240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\subgraph.cpython-39.pyc 2025-06-01T21:33:54.9648968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton.cpython-39.pyc 2025-06-01T21:33:54.9654313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_combo_kernel.cpython-39.pyc 2025-06-01T21:33:54.9657595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_split_scan.cpython-39.pyc 2025-06-01T21:33:54.9661465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_utils.cpython-39.pyc 2025-06-01T21:33:54.9665995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper.cpython-39.pyc 2025-06-01T21:33:54.9676873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper_fxir.cpython-39.pyc 2025-06-01T21:33:54.9681537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.9693974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\subproc_pool.py 2025-06-01T21:33:54.9713475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\utils.py 2025-06-01T21:33:54.9719260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__init__.py 2025-06-01T21:33:54.9723695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__main__.py 2025-06-01T21:33:54.9738312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\subproc_pool.cpython-39.pyc 2025-06-01T21:33:54.9741971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:54.9747168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:54.9755012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__main__.cpython-39.pyc 2025-06-01T21:33:54.9765498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\b2b_gemm.py 2025-06-01T21:33:54.9769153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\binary_folding.py 2025-06-01T21:33:54.9772713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\ddp_fusion.py 2025-06-01T21:33:54.9776570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\decompose_mem_bound_mm.py 2025-06-01T21:33:54.9784674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\dedupe_symint_uses.py 2025-06-01T21:33:54.9788214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\efficient_conv_bn_eval.py 2025-06-01T21:33:54.9791818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\freezing_patterns.py 2025-06-01T21:33:54.9797000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fuse_attention.py 2025-06-01T21:33:54.9801030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\group_batch_fusion.py 2025-06-01T21:33:54.9804932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\joint_graph.py 2025-06-01T21:33:54.9808633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\micro_pipeline_tp.py 2025-06-01T21:33:54.9812428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\misc_patterns.py 2025-06-01T21:33:54.9815925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\mkldnn_fusion.py 2025-06-01T21:33:54.9820031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\numeric_utils.py 2025-06-01T21:33:54.9823510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pad_mm.py 2025-06-01T21:33:54.9827147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\post_grad.py 2025-06-01T21:33:54.9831099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pre_grad.py 2025-06-01T21:33:54.9834888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\quantization.py 2025-06-01T21:33:54.9839416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\reinplace.py 2025-06-01T21:33:54.9843194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\replace_random.py 2025-06-01T21:33:54.9855957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\split_cat.py 2025-06-01T21:33:54.9862443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__init__.py 2025-06-01T21:33:54.9874496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py 2025-06-01T21:33:54.9879688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py 2025-06-01T21:33:54.9885214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py 2025-06-01T21:33:55.0401885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py 2025-06-01T21:33:55.0405131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py 2025-06-01T21:33:55.0408814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py 2025-06-01T21:33:55.0412375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py 2025-06-01T21:33:55.0416111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py 2025-06-01T21:33:55.0419953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py 2025-06-01T21:33:55.0423696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py 2025-06-01T21:33:55.0427921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py 2025-06-01T21:33:55.0431742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py 2025-06-01T21:33:55.0435388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py 2025-06-01T21:33:55.0439140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py 2025-06-01T21:33:55.0442890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py 2025-06-01T21:33:55.0446535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py 2025-06-01T21:33:55.0451220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py 2025-06-01T21:33:55.0455111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py 2025-06-01T21:33:55.0459065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py 2025-06-01T21:33:55.1501913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py 2025-06-01T21:33:55.1505480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py 2025-06-01T21:33:55.1509344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py 2025-06-01T21:33:55.1513080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py 2025-06-01T21:33:55.1516870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__init__.py 2025-06-01T21:33:55.1526991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_pattern.cpython-39.pyc 2025-06-01T21:33:55.1531224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\bmm_pattern.cpython-39.pyc 2025-06-01T21:33:55.1534918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\mm_pattern.cpython-39.pyc 2025-06-01T21:33:55.1999983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_1.cpython-39.pyc 2025-06-01T21:33:55.2003538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_10.cpython-39.pyc 2025-06-01T21:33:55.2007156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_11.cpython-39.pyc 2025-06-01T21:33:55.2010714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_12.cpython-39.pyc 2025-06-01T21:33:55.2014474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_13.cpython-39.pyc 2025-06-01T21:33:55.2018276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_14.cpython-39.pyc 2025-06-01T21:33:55.2022002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_15.cpython-39.pyc 2025-06-01T21:33:55.2027275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_16.cpython-39.pyc 2025-06-01T21:33:55.2032301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_17.cpython-39.pyc 2025-06-01T21:33:55.2037324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_18.cpython-39.pyc 2025-06-01T21:33:55.2042322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_19.cpython-39.pyc 2025-06-01T21:33:55.2046329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_2.cpython-39.pyc 2025-06-01T21:33:55.2051895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_20.cpython-39.pyc 2025-06-01T21:33:55.2062790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_3.cpython-39.pyc 2025-06-01T21:33:55.2067830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_4.cpython-39.pyc 2025-06-01T21:33:55.2072953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_5.cpython-39.pyc 2025-06-01T21:33:55.2077996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_6.cpython-39.pyc 2025-06-01T21:33:55.2081831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_7.cpython-39.pyc 2025-06-01T21:33:55.2086971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_8.cpython-39.pyc 2025-06-01T21:33:55.2092000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_9.cpython-39.pyc 2025-06-01T21:33:55.2097218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.2112607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\b2b_gemm.cpython-39.pyc 2025-06-01T21:33:55.2116329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\binary_folding.cpython-39.pyc 2025-06-01T21:33:55.2121222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\ddp_fusion.cpython-39.pyc 2025-06-01T21:33:55.2130774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\decompose_mem_bound_mm.cpython-39.pyc 2025-06-01T21:33:55.2134433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\dedupe_symint_uses.cpython-39.pyc 2025-06-01T21:33:55.2139593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\efficient_conv_bn_eval.cpython-39.pyc 2025-06-01T21:33:55.2144553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\freezing_patterns.cpython-39.pyc 2025-06-01T21:33:55.2149388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fuse_attention.cpython-39.pyc 2025-06-01T21:33:55.2154392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\group_batch_fusion.cpython-39.pyc 2025-06-01T21:33:55.2159919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\joint_graph.cpython-39.pyc 2025-06-01T21:33:55.2163985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\micro_pipeline_tp.cpython-39.pyc 2025-06-01T21:33:55.2168866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\misc_patterns.cpython-39.pyc 2025-06-01T21:33:55.2173794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\mkldnn_fusion.cpython-39.pyc 2025-06-01T21:33:55.2179260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\numeric_utils.cpython-39.pyc 2025-06-01T21:33:55.2184229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pad_mm.cpython-39.pyc 2025-06-01T21:33:55.2189104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\post_grad.cpython-39.pyc 2025-06-01T21:33:55.2198627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pre_grad.cpython-39.pyc 2025-06-01T21:33:55.2203631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\quantization.cpython-39.pyc 2025-06-01T21:33:55.2208902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\reinplace.cpython-39.pyc 2025-06-01T21:33:55.2220353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\replace_random.cpython-39.pyc 2025-06-01T21:33:55.2225282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\split_cat.cpython-39.pyc 2025-06-01T21:33:55.2230575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.2253461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\bmm.py 2025-06-01T21:33:55.2257022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\conv.py 2025-06-01T21:33:55.2262002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex_attention.py 2025-06-01T21:33:55.2267949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex_decoding.py 2025-06-01T21:33:55.2273196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm.py 2025-06-01T21:33:55.2281288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_common.py 2025-06-01T21:33:55.2284759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_plus_mm.py 2025-06-01T21:33:55.2289800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_scaled_grouped.py 2025-06-01T21:33:55.2293436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__init__.py 2025-06-01T21:33:55.2301356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\bmm.cpython-39.pyc 2025-06-01T21:33:55.2306762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\conv.cpython-39.pyc 2025-06-01T21:33:55.2310214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\flex_attention.cpython-39.pyc 2025-06-01T21:33:55.2319106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\flex_decoding.cpython-39.pyc 2025-06-01T21:33:55.2322765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm.cpython-39.pyc 2025-06-01T21:33:55.2326486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_common.cpython-39.pyc 2025-06-01T21:33:55.2330118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_plus_mm.cpython-39.pyc 2025-06-01T21:33:55.2334201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_scaled_grouped.cpython-39.pyc 2025-06-01T21:33:55.2339318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.2348669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\build_package.py 2025-06-01T21:33:55.2352108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\package.py 2025-06-01T21:33:55.2355395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__init__.py 2025-06-01T21:33:55.2363749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\build_package.cpython-39.pyc 2025-06-01T21:33:55.2367627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\package.cpython-39.pyc 2025-06-01T21:33:55.2372346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.2385054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\autotune_cache.py 2025-06-01T21:33:55.2388624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\benchmarking.py 2025-06-01T21:33:55.2391998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\cache_dir_utils.py 2025-06-01T21:33:55.2395413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\compile_tasks.py 2025-06-01T21:33:55.2403178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\coordinate_descent_tuner.py 2025-06-01T21:33:55.2406699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\halide_helpers.py 2025-06-01T21:33:55.2410177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\hints.py 2025-06-01T21:33:55.2413470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\runtime_utils.py 2025-06-01T21:33:55.2416804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\static_cuda_launcher.py 2025-06-01T21:33:55.2420328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_compat.py 2025-06-01T21:33:55.2423710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_helpers.py 2025-06-01T21:33:55.2427692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_heuristics.py 2025-06-01T21:33:55.2432036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__init__.py 2025-06-01T21:33:55.2438625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\autotune_cache.cpython-39.pyc 2025-06-01T21:33:55.2442505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\benchmarking.cpython-39.pyc 2025-06-01T21:33:55.2446015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\cache_dir_utils.cpython-39.pyc 2025-06-01T21:33:55.2454552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\compile_tasks.cpython-39.pyc 2025-06-01T21:33:55.2458260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\coordinate_descent_tuner.cpython-39.pyc 2025-06-01T21:33:55.2461812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\halide_helpers.cpython-39.pyc 2025-06-01T21:33:55.2465359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\hints.cpython-39.pyc 2025-06-01T21:33:55.2469166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\runtime_utils.cpython-39.pyc 2025-06-01T21:33:55.2472649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\static_cuda_launcher.cpython-39.pyc 2025-06-01T21:33:55.2476199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_compat.cpython-39.pyc 2025-06-01T21:33:55.2479736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_helpers.cpython-39.pyc 2025-06-01T21:33:55.2483277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_heuristics.cpython-39.pyc 2025-06-01T21:33:55.2487265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.2496883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\analyze_preserves_zero_mask.cpython-39.pyc 2025-06-01T21:33:55.2500663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\aoti_eager.cpython-39.pyc 2025-06-01T21:33:55.2504147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\async_compile.cpython-39.pyc 2025-06-01T21:33:55.2512235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\autotune_process.cpython-39.pyc 2025-06-01T21:33:55.2516007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\bounds.cpython-39.pyc 2025-06-01T21:33:55.2519437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\choices.cpython-39.pyc 2025-06-01T21:33:55.2522978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\codecache.cpython-39.pyc 2025-06-01T21:33:55.2529264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms.cpython-39.pyc 2025-06-01T21:33:55.2533322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_analysis.cpython-39.pyc 2025-06-01T21:33:55.2536985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_lowering.cpython-39.pyc 2025-06-01T21:33:55.2540656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compiler_bisector.cpython-39.pyc 2025-06-01T21:33:55.2544588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx.cpython-39.pyc 2025-06-01T21:33:55.2548426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_async.cpython-39.pyc 2025-06-01T21:33:55.2552050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_ext.cpython-39.pyc 2025-06-01T21:33:55.2555930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_subproc.cpython-39.pyc 2025-06-01T21:33:55.2559523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\config.cpython-39.pyc 2025-06-01T21:33:55.2568067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\constant_folding.cpython-39.pyc 2025-06-01T21:33:55.2571793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpp_builder.cpython-39.pyc 2025-06-01T21:33:55.2575778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpu_vec_isa.cpython-39.pyc 2025-06-01T21:33:55.2579510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_trees.cpython-39.pyc 2025-06-01T21:33:55.2583398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_utils.cpython-39.pyc 2025-06-01T21:33:55.2587226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\custom_graph_pass.cpython-39.pyc 2025-06-01T21:33:55.2590830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\debug.cpython-39.pyc 2025-06-01T21:33:55.2594446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\decomposition.cpython-39.pyc 2025-06-01T21:33:55.2602342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dependencies.cpython-39.pyc 2025-06-01T21:33:55.2606143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dtype_propagation.cpython-39.pyc 2025-06-01T21:33:55.2609960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\exc.cpython-39.pyc 2025-06-01T21:33:55.2613622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\extern_node_serializer.cpython-39.pyc 2025-06-01T21:33:55.2617425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing.cpython-39.pyc 2025-06-01T21:33:55.2621599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing_utils.cpython-39.pyc 2025-06-01T21:33:55.2624992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fuzzer.cpython-39.pyc 2025-06-01T21:33:55.2629980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fx_utils.cpython-39.pyc 2025-06-01T21:33:55.2633744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\graph.cpython-39.pyc 2025-06-01T21:33:55.2644585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\hooks.cpython-39.pyc 2025-06-01T21:33:55.2649630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\index_propagation.cpython-39.pyc 2025-06-01T21:33:55.2654760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\inductor_prims.cpython-39.pyc 2025-06-01T21:33:55.2659652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ir.cpython-39.pyc 2025-06-01T21:33:55.2666200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\jagged_lowerings.cpython-39.pyc 2025-06-01T21:33:55.2669813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\loop_body.cpython-39.pyc 2025-06-01T21:33:55.2675068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\lowering.cpython-39.pyc 2025-06-01T21:33:55.2681279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\memory.cpython-39.pyc 2025-06-01T21:33:55.2696353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\metrics.cpython-39.pyc 2025-06-01T21:33:55.2705000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_ir.cpython-39.pyc 2025-06-01T21:33:55.2709222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_lowerings.cpython-39.pyc 2025-06-01T21:33:55.2714449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mock_cache.cpython-39.pyc 2025-06-01T21:33:55.2735391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ops_handler.cpython-39.pyc 2025-06-01T21:33:55.2739913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\optimize_indexing.cpython-39.pyc 2025-06-01T21:33:55.2744275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\output_code.cpython-39.pyc 2025-06-01T21:33:55.2748740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\pattern_matcher.cpython-39.pyc 2025-06-01T21:33:55.2760548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\quantized_lowerings.cpython-39.pyc 2025-06-01T21:33:55.2765658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_cache.cpython-39.pyc 2025-06-01T21:33:55.2771066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\scheduler.cpython-39.pyc 2025-06-01T21:33:55.2778312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\select_algorithm.cpython-39.pyc 2025-06-01T21:33:55.2782609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\sizevars.cpython-39.pyc 2025-06-01T21:33:55.2788036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\standalone_compile.cpython-39.pyc 2025-06-01T21:33:55.2792293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\subgraph_lowering.cpython-39.pyc 2025-06-01T21:33:55.2796198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_heuristics.cpython-39.pyc 2025-06-01T21:33:55.2806824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_case.cpython-39.pyc 2025-06-01T21:33:55.2810532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_operators.cpython-39.pyc 2025-06-01T21:33:55.2814388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\triton_bundler.cpython-39.pyc 2025-06-01T21:33:55.2817928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:55.2822880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\virtualized.cpython-39.pyc 2025-06-01T21:33:55.2826821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\wrapper_benchmark.cpython-39.pyc 2025-06-01T21:33:55.2830432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__autotune_main__.cpython-39.pyc 2025-06-01T21:33:55.2835358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.2849979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\closure.py 2025-06-01T21:33:55.2853369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\computation.py 2025-06-01T21:33:55.2856736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\config.py 2025-06-01T21:33:55.2860135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\debug.py 2025-06-01T21:33:55.2863309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\device_context.py 2025-06-01T21:33:55.2872319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\extract_compiled_graph.py 2025-06-01T21:33:55.2876782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ir_cache.py 2025-06-01T21:33:55.2880065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\metrics.py 2025-06-01T21:33:55.2884352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\tensor_factory_functions.py 2025-06-01T21:33:55.2888243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ts_backend.py 2025-06-01T21:33:55.2891630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__init__.py 2025-06-01T21:33:55.2899186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\closure.cpython-39.pyc 2025-06-01T21:33:55.2902866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\computation.cpython-39.pyc 2025-06-01T21:33:55.2906389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\config.cpython-39.pyc 2025-06-01T21:33:55.2914342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\debug.cpython-39.pyc 2025-06-01T21:33:55.2917879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\device_context.cpython-39.pyc 2025-06-01T21:33:55.2921428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\extract_compiled_graph.cpython-39.pyc 2025-06-01T21:33:55.2924812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ir_cache.cpython-39.pyc 2025-06-01T21:33:55.2928341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\metrics.cpython-39.pyc 2025-06-01T21:33:55.2932115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\tensor_factory_functions.cpython-39.pyc 2025-06-01T21:33:55.2935754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ts_backend.cpython-39.pyc 2025-06-01T21:33:55.2939272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.2951966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\autograd.py 2025-06-01T21:33:55.2955388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\custom_ops.py 2025-06-01T21:33:55.2959825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_class_registry.py 2025-06-01T21:33:55.2963323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_impl.py 2025-06-01T21:33:55.2970880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_profile.py 2025-06-01T21:33:55.2974220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\infer_schema.py 2025-06-01T21:33:55.2977653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\simple_registry.py 2025-06-01T21:33:55.2984390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\triton.py 2025-06-01T21:33:55.2987613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\utils.py 2025-06-01T21:33:55.2990937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__init__.py 2025-06-01T21:33:55.2998098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\autograd.cpython-39.pyc 2025-06-01T21:33:55.3002068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\custom_ops.cpython-39.pyc 2025-06-01T21:33:55.3005947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_class_registry.cpython-39.pyc 2025-06-01T21:33:55.3014952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_impl.cpython-39.pyc 2025-06-01T21:33:55.3018743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_profile.cpython-39.pyc 2025-06-01T21:33:55.3022259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\infer_schema.cpython-39.pyc 2025-06-01T21:33:55.3025882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\simple_registry.cpython-39.pyc 2025-06-01T21:33:55.3029527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\triton.cpython-39.pyc 2025-06-01T21:33:55.3034602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:55.3039829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3049164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\scribe.py 2025-06-01T21:33:55.3054123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\structured.py 2025-06-01T21:33:55.3058948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_internal.py 2025-06-01T21:33:55.3063956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_registrations.py 2025-06-01T21:33:55.3072524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__init__.py 2025-06-01T21:33:55.3082605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\scribe.cpython-39.pyc 2025-06-01T21:33:55.3087134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\structured.cpython-39.pyc 2025-06-01T21:33:55.3090908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_internal.cpython-39.pyc 2025-06-01T21:33:55.3100250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_registrations.cpython-39.pyc 2025-06-01T21:33:55.3105143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3116534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\fft.py 2025-06-01T21:33:55.3120123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\linalg.py 2025-06-01T21:33:55.3124806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\random.py 2025-06-01T21:33:55.3129670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_binary_ufuncs_impl.py 2025-06-01T21:33:55.3134402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_casting_dicts.py 2025-06-01T21:33:55.3143722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes.py 2025-06-01T21:33:55.3148547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes_impl.py 2025-06-01T21:33:55.3153206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs.py 2025-06-01T21:33:55.3157893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs_impl.py 2025-06-01T21:33:55.3163262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_getlimits.py 2025-06-01T21:33:55.3166736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ndarray.py 2025-06-01T21:33:55.3171469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_normalizations.py 2025-06-01T21:33:55.3176428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_reductions_impl.py 2025-06-01T21:33:55.3181279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ufuncs.py 2025-06-01T21:33:55.3184776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_unary_ufuncs_impl.py 2025-06-01T21:33:55.3189669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_util.py 2025-06-01T21:33:55.3194306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__init__.py 2025-06-01T21:33:55.3202522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\utils.py 2025-06-01T21:33:55.3207794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__init__.py 2025-06-01T21:33:55.3217734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\utils.cpython-39.pyc 2025-06-01T21:33:55.3238183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3249848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\fft.cpython-39.pyc 2025-06-01T21:33:55.3255056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\linalg.cpython-39.pyc 2025-06-01T21:33:55.3258964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\random.cpython-39.pyc 2025-06-01T21:33:55.3268726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_binary_ufuncs_impl.cpython-39.pyc 2025-06-01T21:33:55.3273929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_casting_dicts.cpython-39.pyc 2025-06-01T21:33:55.3277760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes.cpython-39.pyc 2025-06-01T21:33:55.3281341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes_impl.cpython-39.pyc 2025-06-01T21:33:55.3284934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs.cpython-39.pyc 2025-06-01T21:33:55.3290483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs_impl.cpython-39.pyc 2025-06-01T21:33:55.3294309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_getlimits.cpython-39.pyc 2025-06-01T21:33:55.3297820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ndarray.cpython-39.pyc 2025-06-01T21:33:55.3301615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_normalizations.cpython-39.pyc 2025-06-01T21:33:55.3305305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_reductions_impl.cpython-39.pyc 2025-06-01T21:33:55.3308911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ufuncs.cpython-39.pyc 2025-06-01T21:33:55.3312559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_unary_ufuncs_impl.cpython-39.pyc 2025-06-01T21:33:55.3316012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_util.cpython-39.pyc 2025-06-01T21:33:55.3321221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3333553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\context.py 2025-06-01T21:33:55.3337286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\debug_prims.py 2025-06-01T21:33:55.3340986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\executor.py 2025-06-01T21:33:55.3344286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\rng_prims.py 2025-06-01T21:33:55.3347628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__init__.py 2025-06-01T21:33:55.3359190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\context.cpython-39.pyc 2025-06-01T21:33:55.3362869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\debug_prims.cpython-39.pyc 2025-06-01T21:33:55.3366439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\executor.cpython-39.pyc 2025-06-01T21:33:55.3375969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\rng_prims.cpython-39.pyc 2025-06-01T21:33:55.3379986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3388265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\wrappers.py 2025-06-01T21:33:55.3391617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__init__.py 2025-06-01T21:33:55.3399007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\wrappers.cpython-39.pyc 2025-06-01T21:33:55.3402527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3410709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\fft.py 2025-06-01T21:33:55.3414711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\_conversions.py 2025-06-01T21:33:55.3418153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__init__.py 2025-06-01T21:33:55.3426705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__init__.py 2025-06-01T21:33:55.3434014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3441800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__init__.py 2025-06-01T21:33:55.3448710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__init__.py 2025-06-01T21:33:55.3456444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3464216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3477602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__init__.py 2025-06-01T21:33:55.3486134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3496391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\fft.cpython-39.pyc 2025-06-01T21:33:55.3501403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\_conversions.cpython-39.pyc 2025-06-01T21:33:55.3505737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3522305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\cli_function_profiler.py 2025-06-01T21:33:55.3527350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\compile_time_profiler.py 2025-06-01T21:33:55.3532097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__init__.py 2025-06-01T21:33:55.3544341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-06-01T21:33:55.3549173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\compile_time_profiler.cpython-39.pyc 2025-06-01T21:33:55.3554116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3568553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_impls.py 2025-06-01T21:33:55.3573635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_tensor.py 2025-06-01T21:33:55.3579534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_utils.py 2025-06-01T21:33:55.3587237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\functional_tensor.py 2025-06-01T21:33:55.3592314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\meta_utils.py 2025-06-01T21:33:55.3597852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\schema_check_mode.py 2025-06-01T21:33:55.3602775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\_fake_tensor_utils.py 2025-06-01T21:33:55.3607568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__init__.py 2025-06-01T21:33:55.3616379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_impls.cpython-39.pyc 2025-06-01T21:33:55.3621733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_tensor.cpython-39.pyc 2025-06-01T21:33:55.3627477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_utils.cpython-39.pyc 2025-06-01T21:33:55.3636967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\functional_tensor.cpython-39.pyc 2025-06-01T21:33:55.3640708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\meta_utils.cpython-39.pyc 2025-06-01T21:33:55.3645828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\schema_check_mode.cpython-39.pyc 2025-06-01T21:33:55.3650662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\_fake_tensor_utils.cpython-39.pyc 2025-06-01T21:33:55.3656140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3667527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__init__.py 2025-06-01T21:33:55.3674759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\version.py 2025-06-01T21:33:55.3679490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\_structures.py 2025-06-01T21:33:55.3684391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__init__.py 2025-06-01T21:33:55.3698343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\version.cpython-39.pyc 2025-06-01T21:33:55.3703601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\_structures.cpython-39.pyc 2025-06-01T21:33:55.3708312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3722506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3741514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\functional.cpython-39.pyc 2025-06-01T21:33:55.3747417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\hub.cpython-39.pyc 2025-06-01T21:33:55.3753454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\library.cpython-39.pyc 2025-06-01T21:33:55.3761950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\overrides.cpython-39.pyc 2025-06-01T21:33:55.3766662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\quasirandom.cpython-39.pyc 2025-06-01T21:33:55.3771970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\random.cpython-39.pyc 2025-06-01T21:33:55.3776224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\return_types.cpython-39.pyc 2025-06-01T21:33:55.3779938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\serialization.cpython-39.pyc 2025-06-01T21:33:55.3785818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\storage.cpython-39.pyc 2025-06-01T21:33:55.3789894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\torch_version.cpython-39.pyc 2025-06-01T21:33:55.3793572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\types.cpython-39.pyc 2025-06-01T21:33:55.3797103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\version.cpython-39.pyc 2025-06-01T21:33:55.3800776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_appdirs.cpython-39.pyc 2025-06-01T21:33:55.3804540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_classes.cpython-39.pyc 2025-06-01T21:33:55.3808089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_compile.cpython-39.pyc 2025-06-01T21:33:55.3811608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_custom_ops.cpython-39.pyc 2025-06-01T21:33:55.3816814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_deploy.cpython-39.pyc 2025-06-01T21:33:55.3824803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_environment.cpython-39.pyc 2025-06-01T21:33:55.3828452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_guards.cpython-39.pyc 2025-06-01T21:33:55.3832320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_jit_internal.cpython-39.pyc 2025-06-01T21:33:55.3836250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_linalg_utils.cpython-39.pyc 2025-06-01T21:33:55.3839828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lobpcg.cpython-39.pyc 2025-06-01T21:33:55.3843623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lowrank.cpython-39.pyc 2025-06-01T21:33:55.3847179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_meta_registrations.cpython-39.pyc 2025-06-01T21:33:55.3852179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_namedtensor_internals.cpython-39.pyc 2025-06-01T21:33:55.3859598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_ops.cpython-39.pyc 2025-06-01T21:33:55.3863477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_python_dispatcher.cpython-39.pyc 2025-06-01T21:33:55.3867274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_size_docs.cpython-39.pyc 2025-06-01T21:33:55.3872202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_sources.cpython-39.pyc 2025-06-01T21:33:55.3875821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_storage_docs.cpython-39.pyc 2025-06-01T21:33:55.3881056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_streambase.cpython-39.pyc 2025-06-01T21:33:55.3884818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor.cpython-39.pyc 2025-06-01T21:33:55.3888514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_docs.cpython-39.pyc 2025-06-01T21:33:55.3893044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_str.cpython-39.pyc 2025-06-01T21:33:55.3900973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_thread_safe_fork.cpython-39.pyc 2025-06-01T21:33:55.3904778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_torch_docs.cpython-39.pyc 2025-06-01T21:33:55.3910484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils.cpython-39.pyc 2025-06-01T21:33:55.3914379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils_internal.cpython-39.pyc 2025-06-01T21:33:55.3917947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_VF.cpython-39.pyc 2025-06-01T21:33:55.3921575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_vmap_internals.cpython-39.pyc 2025-06-01T21:33:55.3925859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_weights_only_unpickler.cpython-39.pyc 2025-06-01T21:33:55.3929546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__config__.cpython-39.pyc 2025-06-01T21:33:55.3941031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__future__.cpython-39.pyc 2025-06-01T21:33:55.3944786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__init__.cpython-39.pyc 2025-06-01T21:33:55.3953550Z 13350 File(s) copied 2025-06-01T21:33:55.6472350Z ********************************************************************** 2025-06-01T21:33:55.6472799Z ** Visual Studio 2019 Developer Command Prompt v16.11.44 2025-06-01T21:33:55.6473159Z ** Copyright (c) 2021 Microsoft Corporation 2025-06-01T21:33:55.6473455Z ********************************************************************** 2025-06-01T21:33:56.1117740Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-06-01T21:33:56.1149856Z 2025-06-01T21:33:56.1150314Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-06-01T21:33:56.1154250Z 2025-06-01T21:33:56.1154782Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-06-01T21:33:56.1157372Z 2025-06-01T21:33:56.1157732Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-06-01T21:33:56.1160203Z 2025-06-01T21:33:56.1160763Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-06-01T21:33:56.1162865Z 2025-06-01T21:33:56.1163008Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-06-01T21:33:56.1163954Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-06-01T21:33:56.1164406Z ALLUSERSPROFILE=C:\ProgramData 2025-06-01T21:33:56.1164778Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-06-01T21:33:56.1165193Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-06-01T21:33:56.1165492Z AWS_DEFAULT_REGION=us-east-1 2025-06-01T21:33:56.1165781Z AWS_EXECUTION_ENV=EC2 2025-06-01T21:33:56.1166021Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-06-01T21:33:56.1166356Z CI=true 2025-06-01T21:33:56.1166539Z CommandPromptType=Native 2025-06-01T21:33:56.1166814Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-06-01T21:33:56.1167139Z COMPUTERNAME=EC2AMAZ-DD9BHOF 2025-06-01T21:33:56.1167402Z COMSPEC=C:\Windows\system32\cmd.exe 2025-06-01T21:33:56.1167757Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T21:33:56.1168136Z CONDA_DEFAULT_ENV=base 2025-06-01T21:33:56.1168387Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-06-01T21:33:56.1168779Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T21:33:56.1169134Z CONDA_PARENT_DIR=C:\Jenkins 2025-06-01T21:33:56.1169373Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-06-01T21:33:56.1169638Z CONDA_PROMPT_MODIFIER=(base) 2025-06-01T21:33:56.1169913Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-06-01T21:33:56.1170357Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T21:33:56.1170741Z CONDA_SHLVL=1 2025-06-01T21:33:56.1170942Z CONTINUE_THROUGH_ERROR=False 2025-06-01T21:33:56.1171269Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-06-01T21:33:56.1171823Z CUDA_PATH_V11_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8 2025-06-01T21:33:56.1172513Z CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4 2025-06-01T21:33:56.1172991Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-06-01T21:33:56.1173476Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-06-01T21:33:56.1173838Z CUDA_VERSION=cpu 2025-06-01T21:33:56.1174080Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-06-01T21:33:56.1174458Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-06-01T21:33:56.1174855Z CommonProgramW6432=C:\Program Files\Common Files 2025-06-01T21:33:56.1175461Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\ 2025-06-01T21:33:56.1175949Z DISTUTILS_USE_SDK=1 2025-06-01T21:33:56.1176201Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-06-01T21:33:56.1176525Z EC2LAUNCH_TELEMETRY=1 2025-06-01T21:33:56.1176900Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-06-01T21:33:56.1177472Z Framework40Version=v4.0 2025-06-01T21:33:56.1177780Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-06-01T21:33:56.1178263Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-06-01T21:33:56.1178610Z FrameworkVersion=v4.0.30319 2025-06-01T21:33:56.1178853Z FrameworkVersion64=v4.0.30319 2025-06-01T21:33:56.1179105Z GITHUB_ACTION=test 2025-06-01T21:33:56.1179297Z GITHUB_ACTIONS=true 2025-06-01T21:33:56.1179500Z GITHUB_ACTION_REF= 2025-06-01T21:33:56.1179695Z GITHUB_ACTION_REPOSITORY= 2025-06-01T21:33:56.1179932Z GITHUB_ACTOR=pytorchmergebot 2025-06-01T21:33:56.1180168Z GITHUB_ACTOR_ID=97764156 2025-06-01T21:33:56.1180435Z GITHUB_API_URL=https://api.github.com 2025-06-01T21:33:56.1180696Z GITHUB_BASE_REF= 2025-06-01T21:33:56.1181136Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_a2499dae-c466-4c48-8f95-f62482e6fb04 2025-06-01T21:33:56.1181649Z GITHUB_EVENT_NAME=push 2025-06-01T21:33:56.1182003Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-06-01T21:33:56.1182467Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-06-01T21:33:56.1182772Z GITHUB_HEAD_REF= 2025-06-01T21:33:56.1183013Z GITHUB_JOB=test 2025-06-01T21:33:56.1183508Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_a2499dae-c466-4c48-8f95-f62482e6fb04 2025-06-01T21:33:56.1184294Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_a2499dae-c466-4c48-8f95-f62482e6fb04 2025-06-01T21:33:56.1184805Z GITHUB_REF=refs/heads/main 2025-06-01T21:33:56.1185046Z GITHUB_REF_NAME=main 2025-06-01T21:33:56.1185259Z GITHUB_REF_PROTECTED=true 2025-06-01T21:33:56.1185489Z GITHUB_REF_TYPE=branch 2025-06-01T21:33:56.1185725Z GITHUB_REPOSITORY=pytorch/pytorch 2025-06-01T21:33:56.1185983Z GITHUB_REPOSITORY_ID=65600975 2025-06-01T21:33:56.1186241Z GITHUB_REPOSITORY_OWNER=pytorch 2025-06-01T21:33:56.1186490Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-06-01T21:33:56.1186765Z GITHUB_RETENTION_DAYS=90 2025-06-01T21:33:56.1186987Z GITHUB_RUN_ATTEMPT=1 2025-06-01T21:33:56.1187198Z GITHUB_RUN_ID=15379340894 2025-06-01T21:33:56.1187412Z GITHUB_RUN_NUMBER=129555 2025-06-01T21:33:56.1187661Z GITHUB_SERVER_URL=https://github.com 2025-06-01T21:33:56.1187968Z GITHUB_SHA=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:33:56.1188525Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_a2499dae-c466-4c48-8f95-f62482e6fb04 2025-06-01T21:33:56.1189396Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_a2499dae-c466-4c48-8f95-f62482e6fb04 2025-06-01T21:33:56.1190025Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-06-01T21:33:56.1190315Z GITHUB_WORKFLOW=trunk 2025-06-01T21:33:56.1190683Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-06-01T21:33:56.1191185Z GITHUB_WORKFLOW_SHA=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:33:56.1191604Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:33:56.1192026Z GIT_DEFAULT_BRANCH=main 2025-06-01T21:33:56.1192254Z HOME=C:\Users\runneruser 2025-06-01T21:33:56.1193957Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\include;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\cppwinrt 2025-06-01T21:33:56.1196192Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-06-01T21:33:56.1196720Z INSTALL_WINDOWS_SDK=1 2025-06-01T21:33:56.1196934Z JOB_ID=43268628846 2025-06-01T21:33:56.1197337Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T21:33:56.1199153Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\um\x64 2025-06-01T21:33:56.1202743Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-06-01T21:33:56.1205093Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-06-01T21:33:56.1205694Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-06-01T21:33:56.1206188Z NO_TD=False 2025-06-01T21:33:56.1206471Z NO_TEST_TIMEOUT=False 2025-06-01T21:33:56.1206825Z NUMBER_OF_PROCESSORS=16 2025-06-01T21:33:56.1207193Z NUM_TEST_SHARDS=3 2025-06-01T21:33:56.1207507Z OLDPWD=C:/15379340894/build-results 2025-06-01T21:33:56.1207886Z OS=Windows_NT 2025-06-01T21:33:56.1215148Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\\MSBuild\Current\Bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:33:56.1222706Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-06-01T21:33:56.1223052Z Platform=x64 2025-06-01T21:33:56.1223254Z PROCESSOR_ARCHITECTURE=AMD64 2025-06-01T21:33:56.1223634Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-06-01T21:33:56.1224025Z PROCESSOR_LEVEL=6 2025-06-01T21:33:56.1224309Z PROCESSOR_REVISION=5507 2025-06-01T21:33:56.1224541Z PROGRAMFILES=C:\Program Files 2025-06-01T21:33:56.1224875Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-06-01T21:33:56.1225298Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-06-01T21:33:56.1225750Z PROMPT=(base) $P$G 2025-06-01T21:33:56.1225957Z PR_NUMBER= 2025-06-01T21:33:56.1226419Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-06-01T21:33:56.1227024Z PUBLIC=C:\Users\Public 2025-06-01T21:33:56.1228147Z *** 2025-06-01T21:33:56.1228452Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-06-01T21:33:56.1228862Z PYTHON_VERSION=3.9 2025-06-01T21:33:56.1229130Z PYTORCH_FINAL_PACKAGE_DIR=C:/15379340894/build-results/ 2025-06-01T21:33:56.1229533Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\15379340894\build-results\ 2025-06-01T21:33:56.1229889Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-06-01T21:33:56.1230173Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-06-01T21:33:56.1230449Z ProgramData=C:\ProgramData 2025-06-01T21:33:56.1230751Z ProgramFiles(x86)=C:\Program Files (x86) 2025-06-01T21:33:56.1231082Z ProgramW6432=C:\Program Files 2025-06-01T21:33:56.1231317Z REENABLED_ISSUES= 2025-06-01T21:33:56.1231559Z RUNNER_ARCH=X64 2025-06-01T21:33:56.1231797Z RUNNER_ENVIRONMENT=self-hosted 2025-06-01T21:33:56.1232065Z RUNNER_NAME=i-0f21781113bd7224a 2025-06-01T21:33:56.1232338Z RUNNER_OS=Windows 2025-06-01T21:33:56.1232600Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-06-01T21:33:56.1232962Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-06-01T21:33:56.1233387Z RUNNER_TRACKING_ID=github_78b3d756-8851-441b-a6fc-392b9ab88234 2025-06-01T21:33:56.1233822Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-06-01T21:33:56.1234382Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-06-01T21:33:56.1234916Z SHA1=f7c09f864a6c6467a7454f1431340d3338473fd1 2025-06-01T21:33:56.1235230Z SHARD_NUMBER=3 2025-06-01T21:33:56.1235408Z SHLVL=2 2025-06-01T21:33:56.1235689Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-06-01T21:33:56.1236056Z SYSTEMDRIVE=C: 2025-06-01T21:33:56.1236281Z SYSTEMROOT=C:\Windows 2025-06-01T21:33:56.1236523Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:33:56.1236838Z TERM=xterm-256color 2025-06-01T21:33:56.1237085Z TEST_CONFIG=default 2025-06-01T21:33:56.1237377Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-06-01T21:33:56.1237797Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-06-01T21:33:56.1238172Z TEST_SHOWLOCALS=False 2025-06-01T21:33:56.1238394Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:33:56.1238746Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T21:33:56.1239166Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-06-01T21:33:56.1239656Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-06-01T21:33:56.1240048Z TORCH_CUDA_ARCH_LIST=8.6 2025-06-01T21:33:56.1240327Z TORCH_SERIALIZATION_DEBUG=1 2025-06-01T21:33:56.1240562Z UCRTVersion=10.0.19041.0 2025-06-01T21:33:56.1240898Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-06-01T21:33:56.1241307Z UPDATEFILE=update.finished 2025-06-01T21:33:56.1241593Z USERDOMAIN=EC2AMAZ-DD9BHOF 2025-06-01T21:33:56.1241871Z USERNAME=runneruser 2025-06-01T21:33:56.1242107Z USERPROFILE=C:\Users\runneruser 2025-06-01T21:33:56.1242362Z USE_CUDA=0 2025-06-01T21:33:56.1242786Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\VC\ 2025-06-01T21:33:56.1243655Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\ 2025-06-01T21:33:56.1244524Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\ 2025-06-01T21:33:56.1245386Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Redist\MSVC\14.29.30133\ 2025-06-01T21:33:56.1246007Z VCToolsVersion=14.29.30133 2025-06-01T21:33:56.1246274Z VC_PRODUCT=BuildTools 2025-06-01T21:33:56.1246484Z VC_VERSION= 2025-06-01T21:33:56.1246695Z VC_YEAR=2019 2025-06-01T21:33:56.1246903Z VERBOSE_ARG='SilentlyContinue' 2025-06-01T21:33:56.1247184Z VERBOSE_TEST_LOGS=False 2025-06-01T21:33:56.1247580Z VisualStudioVersion=16.0 2025-06-01T21:33:56.1248065Z VS160COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\ 2025-06-01T21:33:56.1248616Z VSCMD_ARG_app_plat=Desktop 2025-06-01T21:33:56.1248954Z VSCMD_ARG_HOST_ARCH=x64 2025-06-01T21:33:56.1249164Z VSCMD_ARG_TGT_ARCH=x64 2025-06-01T21:33:56.1249425Z VSCMD_VER=16.11.44 2025-06-01T21:33:56.1249760Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\ 2025-06-01T21:33:56.1250173Z VS_VERSION=16.8.6 2025-06-01T21:33:56.1250364Z WINDIR=C:\Windows 2025-06-01T21:33:56.1250928Z WindowsLibPath=C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0 2025-06-01T21:33:56.1261977Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-06-01T21:33:56.1262530Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-06-01T21:33:56.1262875Z WindowsSDKLibVersion=10.0.19041.0\ 2025-06-01T21:33:56.1263311Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-06-01T21:33:56.1263767Z WindowsSDKVersion=10.0.19041.0\ 2025-06-01T21:33:56.1264267Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-06-01T21:33:56.1265037Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-06-01T21:33:56.1265756Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-06-01T21:33:56.1266254Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-06-01T21:33:56.1266766Z __devinit_path=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\devinit\devinit.exe 2025-06-01T21:33:56.1267353Z __DOTNET_ADD_64BIT=1 2025-06-01T21:33:56.1267626Z __DOTNET_PREFERRED_BITNESS=64 2025-06-01T21:33:56.1270919Z __VSCMD_PREINIT_PATH=C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-06-01T21:33:56.1274230Z 2025-06-01T21:33:56.1274419Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-06-01T21:33:56.1274813Z echo "setup pytorch env failed" 2025-06-01T21:33:56.1275065Z echo 0 2025-06-01T21:33:56.1275244Z exit /b 2025-06-01T21:33:56.1275422Z ) 2025-06-01T21:33:56.1275514Z 2025-06-01T21:33:56.1275665Z (base) C:\actions-runner\_work\pytorch\pytorch>pushd test 2025-06-01T21:33:56.1275949Z 2025-06-01T21:33:56.1276360Z (base) C:\actions-runner\_work\pytorch\pytorch\test>set GFLAGS_EXE="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" 2025-06-01T21:33:56.1276985Z 2025-06-01T21:33:56.1277388Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if "3" == "1" (if exist "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" ( 2025-06-01T21:33:56.1277980Z echo Some smoke tests 2025-06-01T21:33:56.1278367Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe +sls 2025-06-01T21:33:56.1279075Z python C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\run_python_nn_smoketests.py 2025-06-01T21:33:56.1279635Z if ERRORLEVEL 1 goto fail 2025-06-01T21:33:56.1280033Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe -sls 2025-06-01T21:33:56.1280573Z if ERRORLEVEL 1 goto fail 2025-06-01T21:33:56.1280791Z ) ) 2025-06-01T21:33:56.1280903Z 2025-06-01T21:33:56.1281150Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Copying over test times file 2025-06-01T21:33:56.1282180Z Copying over test times file 2025-06-01T21:33:56.1282346Z 2025-06-01T21:33:56.1282932Z (base) C:\actions-runner\_work\pytorch\pytorch\test>robocopy /E "C:\15379340894\build-results\\.additional_ci_files" "C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files" 2025-06-01T21:33:56.1334500Z 2025-06-01T21:33:56.1335073Z ------------------------------------------------------------------------------- 2025-06-01T21:33:56.1340268Z ROBOCOPY :: Robust File Copy for Windows 2025-06-01T21:33:56.1340756Z ------------------------------------------------------------------------------- 2025-06-01T21:33:56.1341042Z 2025-06-01T21:33:56.1341150Z Started : Sunday, June 1, 2025 9:33:56 PM 2025-06-01T21:33:56.1341530Z Source : C:\15379340894\build-results\.additional_ci_files\ 2025-06-01T21:33:56.1341976Z Dest : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-06-01T21:33:56.1342271Z 2025-06-01T21:33:56.1342350Z Files : *.* 2025-06-01T21:33:56.1342541Z 2025-06-01T21:33:56.1342771Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-06-01T21:33:56.1343012Z 2025-06-01T21:33:56.1343165Z ------------------------------------------------------------------------------ 2025-06-01T21:33:56.1346351Z 2025-06-01T21:33:56.1353464Z 2 C:\15379340894\build-results\.additional_ci_files\ 2025-06-01T21:33:56.1354232Z *EXTRA File 69992 td_results.json 2025-06-01T21:33:56.1363872Z New File 6.0 m test-class-times.json 2025-06-01T21:33:56.1366915Z 8.2% 2025-06-01T21:33:56.1370654Z 16.5% 2025-06-01T21:33:56.1373752Z 24.8% 2025-06-01T21:33:56.1377305Z 33.0% 2025-06-01T21:33:56.1380334Z 41.3% 2025-06-01T21:33:56.1383842Z 49.6% 2025-06-01T21:33:56.1386901Z 57.8% 2025-06-01T21:33:56.1390668Z 66.1% 2025-06-01T21:33:56.1393578Z 74.4% 2025-06-01T21:33:56.1397234Z 82.7% 2025-06-01T21:33:56.1400505Z 90.9% 2025-06-01T21:33:56.1401696Z 99.2% 2025-06-01T21:33:56.1404232Z 100% 2025-06-01T21:33:56.1413186Z New File 1.6 m test-times.json 2025-06-01T21:33:56.1415121Z 14% 2025-06-01T21:33:56.1417218Z 29% 2025-06-01T21:33:56.1419635Z 44% 2025-06-01T21:33:56.1421740Z 59% 2025-06-01T21:33:56.1423440Z 74% 2025-06-01T21:33:56.1424739Z 89% 2025-06-01T21:33:56.1427238Z 100% 2025-06-01T21:33:56.1427451Z 2025-06-01T21:33:56.1427661Z ------------------------------------------------------------------------------ 2025-06-01T21:33:56.1428027Z 2025-06-01T21:33:56.1429187Z Total Copied Skipped Mismatch FAILED Extras 2025-06-01T21:33:56.1430134Z Dirs : 1 0 1 0 0 0 2025-06-01T21:33:56.1431317Z Files : 2 2 0 0 0 1 2025-06-01T21:33:56.1432357Z Bytes : 7.71 m 7.71 m 0 0 0 68.3 k 2025-06-01T21:33:56.1433421Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-06-01T21:33:56.1433827Z 2025-06-01T21:33:56.1434273Z 2025-06-01T21:33:56.1435498Z Speed : 1011223250 Bytes/sec. 2025-06-01T21:33:56.1436586Z Speed : 57862.658 MegaBytes/min. 2025-06-01T21:33:56.1436930Z Ended : Sunday, June 1, 2025 9:33:56 PM 2025-06-01T21:33:56.1437201Z 2025-06-01T21:33:56.1455050Z 2025-06-01T21:33:56.1455539Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Run nn tests 2025-06-01T21:33:56.1456151Z Run nn tests 2025-06-01T21:33:56.1457349Z 2025-06-01T21:33:56.1458248Z (base) C:\actions-runner\_work\pytorch\pytorch\test>python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "3" "3" --verbose 2025-06-01T21:33:56.3241717Z C:\actions-runner\_work\pytorch\pytorch\test\run_test.py:24: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html 2025-06-01T21:34:08.7802263Z import pkg_resources 2025-06-01T21:34:08.7802578Z Found test times from artifacts 2025-06-01T21:34:08.8891231Z Found test times from artifacts 2025-06-01T21:34:08.8929497Z Running all tests 2025-06-01T21:34:08.9405709Z Running parallel tests on 3 processes 2025-06-01T21:34:08.9421021Z Name: tests to run (est. time: 92.02min) 2025-06-01T21:34:08.9421340Z Serial tests (0): 2025-06-01T21:34:08.9421606Z Parallel tests (143): 2025-06-01T21:34:08.9421826Z test_testing 1/1 2025-06-01T21:34:08.9422046Z test_sparse_semi_structured 1/1 2025-06-01T21:34:08.9422312Z export/test_sparse 1/1 2025-06-01T21:34:08.9422576Z inductor/test_torchinductor_strided_blocks 1/1 2025-06-01T21:34:08.9422900Z export/test_retraceability 1/1 2025-06-01T21:34:08.9423175Z inductor/test_cpp_wrapper_hipify 1/1 2025-06-01T21:34:08.9423546Z inductor/test_compiled_autograd 1/1 2025-06-01T21:34:08.9423828Z inductor/test_aot_inductor_arrayref 1/1 2025-06-01T21:34:08.9424112Z test_transformers 2/4 2025-06-01T21:34:08.9424333Z test_transformers 3/4 2025-06-01T21:34:08.9424562Z test_transformers 4/4 2025-06-01T21:34:08.9424782Z dynamo/test_resume 1/1 2025-06-01T21:34:08.9425007Z inductor/test_smoke 1/1 2025-06-01T21:34:08.9425223Z dynamo/test_global 1/1 2025-06-01T21:34:08.9425469Z inductor/test_provenance_tracing 1/1 2025-06-01T21:34:08.9425751Z inductor/test_ordered_set 1/1 2025-06-01T21:34:08.9425998Z dynamo/test_functions 1/1 2025-06-01T21:34:08.9426243Z dynamo/test_interop 1/1 2025-06-01T21:34:08.9426476Z inductor/test_memory_planning 1/1 2025-06-01T21:34:08.9426787Z dynamo/test_modules 1/1 2025-06-01T21:34:08.9427024Z inductor/test_gpu_cpp_wrapper 1/1 2025-06-01T21:34:08.9427342Z inductor/test_fp8 1/1 2025-06-01T21:34:08.9427579Z inductor/test_torchinductor_opinfo 1/1 2025-06-01T21:34:08.9427871Z inductor/test_combo_kernels 1/1 2025-06-01T21:34:08.9428155Z inductor/test_coordinate_descent_tuner 1/1 2025-06-01T21:34:08.9428453Z functorch/test_ops 2/8 2025-06-01T21:34:08.9428680Z functorch/test_ops 3/8 2025-06-01T21:34:08.9428910Z functorch/test_ops 4/8 2025-06-01T21:34:08.9429133Z functorch/test_ops 8/8 2025-06-01T21:34:08.9429364Z inductor/test_torchinductor 1/1 2025-06-01T21:34:08.9429624Z test_binary_ufuncs 1/1 2025-06-01T21:34:08.9429845Z test_native_functions 1/1 2025-06-01T21:34:08.9430084Z inductor/test_foreach 1/1 2025-06-01T21:34:08.9430328Z functorch/test_aotdispatch 1/7 2025-06-01T21:34:08.9430599Z functorch/test_aotdispatch 2/7 2025-06-01T21:34:08.9430857Z functorch/test_aotdispatch 6/7 2025-06-01T21:34:08.9431120Z functorch/test_aotdispatch 7/7 2025-06-01T21:34:08.9431382Z inductor/test_autoheuristic 1/1 2025-06-01T21:34:08.9431637Z inductor/test_config 1/1 2025-06-01T21:34:08.9431891Z dynamo/test_fx_passes_pre_grad 1/1 2025-06-01T21:34:08.9432178Z inductor/test_cooperative_reductions 1/1 2025-06-01T21:34:08.9432520Z inductor/test_profiler 1/1 2025-06-01T21:34:08.9432748Z test_meta 1/5 2025-06-01T21:34:08.9433004Z inductor/test_minifier 1/1 2025-06-01T21:34:08.9433399Z export/test_schema 1/1 2025-06-01T21:34:08.9433649Z inductor/test_group_batch_fusion 1/1 2025-06-01T21:34:08.9433925Z backends/xeon/test_launch 1/1 2025-06-01T21:34:08.9434215Z torch_np/numpy_tests/core/test_einsum 1/1 2025-06-01T21:34:08.9434509Z export/test_passes 1/1 2025-06-01T21:34:08.9434726Z test_openmp 1/1 2025-06-01T21:34:08.9434928Z test_module_tracker 1/1 2025-06-01T21:34:08.9435163Z inductor/test_block_analysis 1/1 2025-06-01T21:34:08.9435426Z export/test_db 1/1 2025-06-01T21:34:08.9435630Z dynamo/test_config 1/1 2025-06-01T21:34:08.9435870Z higher_order_ops/test_invoke_quant 1/1 2025-06-01T21:34:08.9436296Z test_compile_benchmark_util 1/1 2025-06-01T21:34:08.9436585Z inductor/test_graph_transform_observer 1/1 2025-06-01T21:34:08.9436858Z test_jit 1/1 2025-06-01T21:34:08.9437126Z inductor/test_torchinductor_codegen_dynamic_shapes 1/1 2025-06-01T21:34:08.9437583Z inductor/test_torchinductor_dynamic_shapes 1/1 2025-06-01T21:34:08.9437879Z test_fx_passes 1/1 2025-06-01T21:34:08.9438134Z test_legacy_vmap 1/1 2025-06-01T21:34:08.9438356Z dynamo/test_view 1/1 2025-06-01T21:34:08.9438627Z torch_np/test_basic 1/1 2025-06-01T21:34:08.9438871Z inductor/test_cudacodecache 1/1 2025-06-01T21:34:08.9439141Z profiler/test_kineto 1/1 2025-06-01T21:34:08.9439384Z inductor/test_aot_inductor_utils 1/1 2025-06-01T21:34:08.9439668Z test_segment_reductions 1/1 2025-06-01T21:34:08.9439944Z inductor/test_split_cat_fx_aten_passes 1/1 2025-06-01T21:34:08.9440236Z functorch/test_ac_knapsack 1/1 2025-06-01T21:34:08.9440503Z test_tensorexpr_pybind 1/1 2025-06-01T21:34:08.9440757Z inductor/test_split_cat_fx_passes 1/1 2025-06-01T21:34:08.9441031Z test_complex 1/1 2025-06-01T21:34:08.9441235Z test_numpy_interop 1/1 2025-06-01T21:34:08.9441488Z torch_np/test_function_base 1/1 2025-06-01T21:34:08.9441748Z inductor/test_multi_kernel 1/1 2025-06-01T21:34:08.9442010Z test_nestedtensor 1/4 2025-06-01T21:34:08.9442228Z test_nestedtensor 4/4 2025-06-01T21:34:08.9442449Z dynamo/test_misc 1/1 2025-06-01T21:34:08.9442676Z export/test_torchbind 1/1 2025-06-01T21:34:08.9442901Z test_hub 1/1 2025-06-01T21:34:08.9443116Z distributions/test_constraints 1/1 2025-06-01T21:34:08.9443384Z functorch/test_vmap 1/2 2025-06-01T21:34:08.9443615Z inductor/test_perf 1/1 2025-06-01T21:34:08.9443882Z test_ops_jit 2/3 2025-06-01T21:34:08.9444100Z optim/test_lrscheduler 1/1 2025-06-01T21:34:08.9444377Z xpu/test_gemm 1/1 2025-06-01T21:34:08.9444590Z test_ops_gradients 2/2 2025-06-01T21:34:08.9444821Z inductor/test_snode_runtime 1/1 2025-06-01T21:34:08.9445133Z dynamo/test_cudagraphs_expandable_segments 1/1 2025-06-01T21:34:08.9445436Z dynamo/test_modes 1/1 2025-06-01T21:34:08.9445683Z inductor/test_mkldnn_pattern_matcher 1/1 2025-06-01T21:34:08.9445977Z dynamo/test_model_output 1/1 2025-06-01T21:34:08.9446276Z torch_np/numpy_tests/core/test_numeric 1/1 2025-06-01T21:34:08.9446567Z test_numba_integration 1/1 2025-06-01T21:34:08.9446816Z profiler/test_record_function 1/1 2025-06-01T21:34:08.9447087Z nn/test_lazy_modules 1/1 2025-06-01T21:34:08.9447314Z test_type_hints 1/1 2025-06-01T21:34:08.9447532Z test_jiterator 1/1 2025-06-01T21:34:08.9447734Z test_matmul_cuda 1/1 2025-06-01T21:34:08.9447965Z nn/test_parametrization 1/1 2025-06-01T21:34:08.9448199Z test_datapipe 1/1 2025-06-01T21:34:08.9448423Z inductor/test_unbacked_symints 1/1 2025-06-01T21:34:08.9448693Z test_maskedtensor 1/1 2025-06-01T21:34:08.9448907Z test_monitor 1/1 2025-06-01T21:34:08.9449144Z inductor/test_efficient_conv_bn_eval 1/1 2025-06-01T21:34:08.9449412Z test_decomp 1/15 2025-06-01T21:34:08.9449673Z test_decomp 5/15 2025-06-01T21:34:08.9449870Z test_decomp 8/15 2025-06-01T21:34:08.9450115Z test_decomp 10/15 2025-06-01T21:34:08.9450410Z test_decomp 14/15 2025-06-01T21:34:08.9450638Z dynamo/test_profiler 1/1 2025-06-01T21:34:08.9450869Z optim/test_optim 1/1 2025-06-01T21:34:08.9451090Z dynamo/test_debug_utils 1/1 2025-06-01T21:34:08.9451323Z dynamo/test_base_hop 1/1 2025-06-01T21:34:08.9451562Z test_cuda_sanitizer 1/1 2025-06-01T21:34:08.9451796Z dynamo/test_trace_rules 1/1 2025-06-01T21:34:08.9452031Z dynamo/test_unspec 1/1 2025-06-01T21:34:08.9452259Z optim/test_swa_utils 1/1 2025-06-01T21:34:08.9452485Z dynamo/test_torchrec 1/1 2025-06-01T21:34:08.9452729Z dynamo/test_bytecode_utils 1/1 2025-06-01T21:34:08.9452975Z dynamo/test_exc 1/1 2025-06-01T21:34:08.9453337Z torch_np/numpy_tests/core/test_shape_base 1/1 2025-06-01T21:34:08.9453643Z test_functional_optim 1/1 2025-06-01T21:34:08.9453930Z torch_np/numpy_tests/lib/test_twodim_base 1/1 2025-06-01T21:34:08.9454220Z test_schema_check 1/1 2025-06-01T21:34:08.9454482Z torch_np/numpy_tests/lib/test_arraysetops 1/1 2025-06-01T21:34:08.9454841Z dynamo/test_hooks 1/1 2025-06-01T21:34:08.9455067Z test_scatter_gather_ops 1/1 2025-06-01T21:34:08.9455363Z test_dataloader 1/2 2025-06-01T21:34:08.9455626Z dynamo/test_subclasses 1/1 2025-06-01T21:34:08.9455863Z test_ops 2/8 2025-06-01T21:34:08.9456043Z test_ops 6/8 2025-06-01T21:34:08.9456229Z test_ops 7/8 2025-06-01T21:34:08.9456418Z test_cuda_multigpu 1/1 2025-06-01T21:34:08.9456650Z test_quantization 2/2 2025-06-01T21:34:08.9456999Z cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 2025-06-01T21:34:08.9457426Z dynamo/test_guard_serialization 1/1 2025-06-01T21:34:08.9457790Z dynamo/test_unittest 1/1 2025-06-01T21:34:08.9458035Z inductor/test_alignment 1/1 2025-06-01T21:34:08.9458301Z inductor/test_compile_subprocess 1/1 2025-06-01T21:34:08.9458583Z inductor/test_online_softmax 1/1 2025-06-01T21:34:08.9458868Z inductor/test_subgraph_choice 1/1 2025-06-01T21:34:08.9459148Z Name: excluded (est. time: 0.0min) 2025-06-01T21:34:08.9459396Z Serial tests (0): 2025-06-01T21:34:08.9459593Z Parallel tests (0): 2025-06-01T21:34:08.9920380Z Running test_testing 1/1 ... [2025-06-01 21:34:08.991742] 2025-06-01T21:34:08.9920784Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:34:08.9927322Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_testing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:34:08.992345] 2025-06-01T21:34:08.9929106Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-06-01T21:34:08.9929953Z Ignoring disabled issues: [''] 2025-06-01T21:34:24.5992116Z 2025-06-01T21:34:24.5993139Z test_testing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_testing_1.1_0f0f86744123cdf1_.log 2025-06-01T21:34:24.5993842Z Running 0 items in this shard: 2025-06-01T21:34:24.5994012Z 2025-06-01T21:34:24.5999248Z Running test_sparse_semi_structured 1/1 ... [2025-06-01 21:34:24.592539] 2025-06-01T21:34:24.5999674Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:34:24.6005651Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse_semi_structured.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:34:24.592539] 2025-06-01T21:34:41.6464118Z 2025-06-01T21:34:41.6465355Z test_sparse_semi_structured 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_semi_structured_1.1_8985ab5931ecda59_.log 2025-06-01T21:34:41.6466118Z Running 0 items in this shard: 2025-06-01T21:34:41.6466309Z 2025-06-01T21:34:41.6470751Z Running export/test_sparse 1/1 ... [2025-06-01 21:34:41.644037] 2025-06-01T21:34:41.6471356Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:34:41.6477226Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:34:41.644037] 2025-06-01T21:34:46.2043178Z 2025-06-01T21:34:46.2044337Z export/test_sparse 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_1.1_8e0e0c8f0eded06e_.log 2025-06-01T21:34:46.2045072Z Running 0 items in this shard: 2025-06-01T21:34:46.2045294Z 2025-06-01T21:34:46.2051062Z Running inductor/test_torchinductor_strided_blocks 1/1 ... [2025-06-01 21:34:46.204561] 2025-06-01T21:34:46.2051591Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:34:46.2059903Z 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-06-01 21:34:46.205736] 2025-06-01T21:34:56.5137571Z 2025-06-01T21:34:56.5138919Z 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_912e2e679c0f9adc_.log 2025-06-01T21:34:56.5139733Z 2025-06-01T21:34:56.5143276Z Running export/test_retraceability 1/1 ... [2025-06-01 21:34:56.514052] 2025-06-01T21:34:56.5149077Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:34:56.5150173Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_retraceability.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:34:56.514625] 2025-06-01T21:35:06.1857314Z 2025-06-01T21:35:06.1858478Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_bfb6f1446ab6e757_.log 2025-06-01T21:35:06.1859192Z 2025-06-01T21:35:06.1864830Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-06-01 21:35:06.186153] 2025-06-01T21:35:06.1865282Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:06.1871932Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:35:06.186153] 2025-06-01T21:35:10.2608061Z 2025-06-01T21:35:10.2609241Z inductor/test_cpp_wrapper_hipify 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpp_wrapper_hipify_1.1_403901283ae326c5_.log 2025-06-01T21:35:10.2609992Z 2025-06-01T21:35:10.2613657Z Running inductor/test_compiled_autograd 1/1 ... [2025-06-01 21:35:10.261148] 2025-06-01T21:35:10.2614132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:10.2619944Z 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-06-01 21:35:10.261731] 2025-06-01T21:35:21.6493456Z 2025-06-01T21:35:21.6494648Z 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_eaf362e713ff65e1_.log 2025-06-01T21:35:21.6495450Z 2025-06-01T21:35:21.6499696Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-06-01 21:35:21.649039] 2025-06-01T21:35:21.6500154Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:21.6506638Z 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-06-01 21:35:21.649039] 2025-06-01T21:35:25.9639193Z 2025-06-01T21:35:25.9640542Z 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_8bbd6e5e8c47e3ae_.log 2025-06-01T21:35:25.9641318Z 2025-06-01T21:35:25.9646893Z Running test_transformers 2/4 ... [2025-06-01 21:35:25.964313] 2025-06-01T21:35:25.9647315Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:25.9671949Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'serial', '--shard-id=2', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:35:25.966574] 2025-06-01T21:35:33.1054603Z 2025-06-01T21:35:33.1055732Z test_transformers 2/4 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_2.4_1cb0192be3cebf2d_.log 2025-06-01T21:35:33.1056460Z Running 0 items in this shard: 2025-06-01T21:35:33.1056634Z 2025-06-01T21:35:33.1061408Z Running test_transformers 3/4 ... [2025-06-01 21:35:33.102398] 2025-06-01T21:35:33.1061833Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:33.1067977Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.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-06-01 21:35:33.102398] 2025-06-01T21:35:40.2896185Z 2025-06-01T21:35:40.2897241Z test_transformers 3/4 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_3.4_c9eb5cd0504546be_.log 2025-06-01T21:35:40.2897970Z Running 0 items in this shard: 2025-06-01T21:35:40.2898170Z 2025-06-01T21:35:40.2902791Z Running test_transformers 4/4 ... [2025-06-01 21:35:40.285311] 2025-06-01T21:35:40.2903177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:40.2909583Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.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-06-01 21:35:40.285311] 2025-06-01T21:35:47.5080046Z 2025-06-01T21:35:47.5080900Z test_transformers 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_4.4_cfbb02572ef99ca4_.log 2025-06-01T21:35:47.5081632Z Running 0 items in this shard: 2025-06-01T21:35:47.5081819Z 2025-06-01T21:35:47.5085672Z Running dynamo/test_resume 1/1 ... [2025-06-01 21:35:47.507979] 2025-06-01T21:35:47.5086067Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:47.5097610Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_resume.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:35:47.509116] 2025-06-01T21:35:52.0782278Z 2025-06-01T21:35:52.0783128Z dynamo/test_resume 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_resume_1.1_e0ca18b0f6649c13_.log 2025-06-01T21:35:52.0783746Z 2025-06-01T21:35:52.0789769Z Running inductor/test_smoke 1/1 ... [2025-06-01 21:35:52.078696] 2025-06-01T21:35:52.0790160Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:35:52.0798684Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_smoke.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:35:52.079281] 2025-06-01T21:36:02.1754976Z 2025-06-01T21:36:02.1755827Z inductor/test_smoke 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_smoke_1.1_e0ba03e53b083914_.log 2025-06-01T21:36:02.1756460Z 2025-06-01T21:36:02.1760398Z Running dynamo/test_global 1/1 ... [2025-06-01 21:36:02.168686] 2025-06-01T21:36:02.1760779Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:02.1767441Z 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-06-01 21:36:02.168686] 2025-06-01T21:36:06.8420677Z 2025-06-01T21:36:06.8421948Z dynamo/test_global 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_global_1.1_cf160dd372eb4061_.log 2025-06-01T21:36:06.8422575Z 2025-06-01T21:36:06.8434297Z Running inductor/test_provenance_tracing 1/1 ... [2025-06-01 21:36:06.843033] 2025-06-01T21:36:06.8434932Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:06.8441219Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_provenance_tracing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:36:06.843614] 2025-06-01T21:36:16.9154824Z 2025-06-01T21:36:16.9155852Z inductor/test_provenance_tracing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_provenance_tracing_1.1_1cd6408bdf6b6218_.log 2025-06-01T21:36:16.9156589Z 2025-06-01T21:36:16.9160291Z Running inductor/test_ordered_set 1/1 ... [2025-06-01 21:36:16.915724] 2025-06-01T21:36:16.9160723Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:16.9167077Z 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-06-01 21:36:16.916295] 2025-06-01T21:36:21.4461648Z 2025-06-01T21:36:21.4462883Z 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_6f9e14ae7e1dad10_.log 2025-06-01T21:36:21.4463582Z 2025-06-01T21:36:21.4469291Z Running dynamo/test_functions 1/1 ... [2025-06-01 21:36:21.446467] 2025-06-01T21:36:21.4469715Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:21.4478667Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_functions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:36:21.447644] 2025-06-01T21:36:31.4865658Z 2025-06-01T21:36:31.4866632Z dynamo/test_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_functions_1.1_e77f17dda42fda03_.log 2025-06-01T21:36:31.4867342Z 2025-06-01T21:36:31.4873579Z Running dynamo/test_interop 1/1 ... [2025-06-01 21:36:31.486866] 2025-06-01T21:36:31.4873977Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:31.4884735Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_interop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:36:31.488123] 2025-06-01T21:36:36.3179274Z 2025-06-01T21:36:36.3180200Z dynamo/test_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_interop_1.1_312aea41f65b6319_.log 2025-06-01T21:36:36.3180863Z 2025-06-01T21:36:36.3185138Z Running inductor/test_memory_planning 1/1 ... [2025-06-01 21:36:36.318402] 2025-06-01T21:36:36.3185769Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:36.3191821Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_memory_planning.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:36:36.318502] 2025-06-01T21:36:46.4035232Z 2025-06-01T21:36:46.4036416Z inductor/test_memory_planning 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_memory_planning_1.1_7d848eb932671fbc_.log 2025-06-01T21:36:46.4037125Z 2025-06-01T21:36:46.4040881Z Running dynamo/test_modules 1/1 ... [2025-06-01 21:36:46.398276] 2025-06-01T21:36:46.4041567Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:46.4057171Z 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-06-01 21:36:46.398276] 2025-06-01T21:36:56.6199179Z 2025-06-01T21:36:56.6200262Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_d0ac2a2bab00d527_.log 2025-06-01T21:36:56.6200895Z 2025-06-01T21:36:56.6204508Z Running inductor/test_gpu_cpp_wrapper 1/1 ... [2025-06-01 21:36:56.618315] 2025-06-01T21:36:56.6204934Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:36:56.6211250Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_gpu_cpp_wrapper.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:36:56.618315] 2025-06-01T21:37:07.1008539Z 2025-06-01T21:37:07.1009490Z inductor/test_gpu_cpp_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_gpu_cpp_wrapper_1.1_e6ad23987178e00f_.log 2025-06-01T21:37:07.1010261Z 2025-06-01T21:37:07.1013952Z Running inductor/test_fp8 1/1 ... [2025-06-01 21:37:07.101063] 2025-06-01T21:37:07.1014346Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:37:07.1021171Z 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-06-01 21:37:07.101631] 2025-06-01T21:37:17.9584895Z 2025-06-01T21:37:17.9585798Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_82601dd53fc3b027_.log 2025-06-01T21:37:17.9586983Z 2025-06-01T21:37:17.9590476Z Running inductor/test_torchinductor_opinfo 1/1 ... [2025-06-01 21:37:17.958684] 2025-06-01T21:37:17.9590927Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:37:17.9597772Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_opinfo.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:37:17.958684] 2025-06-01T21:37:29.6946073Z 2025-06-01T21:37:29.6947086Z inductor/test_torchinductor_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_opinfo_1.1_1c6d6757b906ecbd_.log 2025-06-01T21:37:29.6947839Z 2025-06-01T21:37:29.6952094Z Running inductor/test_combo_kernels 1/1 ... [2025-06-01 21:37:29.692166] 2025-06-01T21:37:29.6952554Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:37:29.6958396Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_combo_kernels.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:37:29.692166] 2025-06-01T21:37:39.9664450Z 2025-06-01T21:37:39.9665489Z inductor/test_combo_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_combo_kernels_1.1_4859b5aa831774a0_.log 2025-06-01T21:37:39.9666193Z 2025-06-01T21:37:39.9670039Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-06-01 21:37:39.965310] 2025-06-01T21:37:39.9670524Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:37:39.9677233Z 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-06-01 21:37:39.965310] 2025-06-01T21:37:50.0348538Z 2025-06-01T21:37:50.0349769Z 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_b7063d7ecc169e02_.log 2025-06-01T21:37:50.0350749Z 2025-06-01T21:37:50.0353770Z Running functorch/test_ops 2/8 ... [2025-06-01 21:37:50.029778] 2025-06-01T21:37:50.0354170Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:37:50.0360584Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=2', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:37:50.029778] 2025-06-01T21:37:59.2297102Z 2025-06-01T21:37:59.2298230Z functorch/test_ops 2/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_2.8_3052527d480c60e4_.log 2025-06-01T21:37:59.2298940Z Running 0 items in this shard: 2025-06-01T21:37:59.2299130Z 2025-06-01T21:37:59.2304302Z Running functorch/test_ops 3/8 ... [2025-06-01 21:37:59.226579] 2025-06-01T21:37:59.2304709Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:37:59.2310907Z 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-06-01 21:37:59.226579] 2025-06-01T21:38:08.3125819Z 2025-06-01T21:38:08.3126666Z functorch/test_ops 3/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_3.8_c07c99989cf033f6_.log 2025-06-01T21:38:08.3127383Z Running 0 items in this shard: 2025-06-01T21:38:08.3127557Z 2025-06-01T21:38:08.3133472Z Running functorch/test_ops 4/8 ... [2025-06-01 21:38:08.313016] 2025-06-01T21:38:08.3133906Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:38:08.3141590Z 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-06-01 21:38:08.313597] 2025-06-01T21:38:17.7190928Z 2025-06-01T21:38:17.7192093Z functorch/test_ops 4/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_4.8_78d042d542b02bde_.log 2025-06-01T21:38:17.7192875Z Running 0 items in this shard: 2025-06-01T21:38:17.7193051Z 2025-06-01T21:38:17.7196527Z Running functorch/test_ops 8/8 ... [2025-06-01 21:38:17.711881] 2025-06-01T21:38:17.7196924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:38:17.7203106Z 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-06-01 21:38:17.711881] 2025-06-01T21:38:27.2842467Z 2025-06-01T21:38:27.2843586Z functorch/test_ops 8/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_8.8_1a1b8a9a1a996691_.log 2025-06-01T21:38:27.2844949Z Running 0 items in this shard: 2025-06-01T21:38:27.2845147Z 2025-06-01T21:38:27.2848016Z Running inductor/test_torchinductor 1/1 ... [2025-06-01 21:38:27.277810] 2025-06-01T21:38:27.2848458Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:38:27.2871255Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:38:27.277810] 2025-06-01T21:38:37.6825682Z 2025-06-01T21:38:37.6827878Z inductor/test_torchinductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_1.1_3433543d6a264662_.log 2025-06-01T21:38:37.6828709Z 2025-06-01T21:38:37.6831763Z Running test_binary_ufuncs 1/1 ... [2025-06-01 21:38:37.682918] 2025-06-01T21:38:37.6832334Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:38:37.6838296Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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-06-01 21:38:37.683538] 2025-06-01T21:38:46.9448418Z 2025-06-01T21:38:46.9449365Z test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_binary_ufuncs_1.1_e70967635d0c9fd9_.log 2025-06-01T21:38:46.9450054Z Running 0 items in this shard: 2025-06-01T21:38:46.9450229Z 2025-06-01T21:38:46.9456307Z Running test_native_functions 1/1 ... [2025-06-01 21:38:46.945221] 2025-06-01T21:38:46.9456696Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:38:46.9485830Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_native_functions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:38:46.948402] 2025-06-01T21:38:51.6367191Z 2025-06-01T21:38:51.6368109Z test_native_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_native_functions_1.1_0af00a859fedbb37_.log 2025-06-01T21:38:51.6368843Z Running 0 items in this shard: 2025-06-01T21:38:51.6369024Z 2025-06-01T21:38:51.6372811Z Running inductor/test_foreach 1/1 ... [2025-06-01 21:38:51.636750] 2025-06-01T21:38:51.6373207Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:38:51.6379469Z 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-06-01 21:38:51.636750] 2025-06-01T21:39:02.3024482Z 2025-06-01T21:39:02.3025365Z inductor/test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_foreach_1.1_0ea32a7f4a364a6c_.log 2025-06-01T21:39:02.3026048Z 2025-06-01T21:39:02.3029941Z Running functorch/test_aotdispatch 1/7 ... [2025-06-01 21:39:02.302917] 2025-06-01T21:39:02.3035955Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:02.3037050Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=1', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:39:02.303509] 2025-06-01T21:39:09.5134501Z 2025-06-01T21:39:09.5135764Z functorch/test_aotdispatch 1/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_1.7_eadd47da90c9f41e_.log 2025-06-01T21:39:09.5136579Z Running 0 items in this shard: 2025-06-01T21:39:09.5140050Z 2025-06-01T21:39:09.5140281Z Running functorch/test_aotdispatch 2/7 ... [2025-06-01 21:39:09.513730] 2025-06-01T21:39:09.5140866Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:09.5147231Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=2', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:39:09.513730] 2025-06-01T21:39:16.8649930Z 2025-06-01T21:39:16.8651282Z functorch/test_aotdispatch 2/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_2.7_dae5d1554d8cacdf_.log 2025-06-01T21:39:16.8652085Z Running 0 items in this shard: 2025-06-01T21:39:16.8652525Z 2025-06-01T21:39:16.8655795Z Running functorch/test_aotdispatch 6/7 ... [2025-06-01 21:39:16.865114] 2025-06-01T21:39:16.8656239Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:16.8662638Z 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-06-01 21:39:16.865719] 2025-06-01T21:39:24.1200069Z 2025-06-01T21:39:24.1201059Z functorch/test_aotdispatch 6/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_6.7_4c677ef71165b0e7_.log 2025-06-01T21:39:24.1201865Z Running 0 items in this shard: 2025-06-01T21:39:24.1205359Z 2025-06-01T21:39:24.1205585Z Running functorch/test_aotdispatch 7/7 ... [2025-06-01 21:39:24.116179] 2025-06-01T21:39:24.1206019Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:24.1212121Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=7', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:39:24.116179] 2025-06-01T21:39:31.4673712Z 2025-06-01T21:39:31.4675205Z functorch/test_aotdispatch 7/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_7.7_4b19d0f2d91cb83d_.log 2025-06-01T21:39:31.4676569Z Running 0 items in this shard: 2025-06-01T21:39:31.4676875Z 2025-06-01T21:39:31.4679728Z Running inductor/test_autoheuristic 1/1 ... [2025-06-01 21:39:31.467480] 2025-06-01T21:39:31.4680175Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:31.4686182Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_autoheuristic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:39:31.467480] 2025-06-01T21:39:41.4536482Z 2025-06-01T21:39:41.4537689Z inductor/test_autoheuristic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_autoheuristic_1.1_8a36631926cbf0da_.log 2025-06-01T21:39:41.4538425Z 2025-06-01T21:39:41.4541795Z Running inductor/test_config 1/1 ... [2025-06-01 21:39:41.453193] 2025-06-01T21:39:41.4542199Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:41.4548393Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:39:41.453193] 2025-06-01T21:39:51.1947724Z 2025-06-01T21:39:51.1948854Z inductor/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_config_1.1_b22cec7b1378c3d3_.log 2025-06-01T21:39:51.1949513Z 2025-06-01T21:39:51.1953117Z Running dynamo/test_fx_passes_pre_grad 1/1 ... [2025-06-01 21:39:51.188824] 2025-06-01T21:39:51.1953546Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:51.1959701Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_passes_pre_grad.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:39:51.188824] 2025-06-01T21:39:55.5014052Z 2025-06-01T21:39:55.5015130Z dynamo/test_fx_passes_pre_grad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_passes_pre_grad_1.1_b6d561e5353d9289_.log 2025-06-01T21:39:55.5015831Z 2025-06-01T21:39:55.5021411Z Running inductor/test_cooperative_reductions 1/1 ... [2025-06-01 21:39:55.501879] 2025-06-01T21:39:55.5021870Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:39:55.5028702Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:39:55.501879] 2025-06-01T21:40:05.3283272Z 2025-06-01T21:40:05.3284534Z inductor/test_cooperative_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cooperative_reductions_1.1_041e9dbf619c073a_.log 2025-06-01T21:40:05.3285310Z 2025-06-01T21:40:05.3289510Z Running inductor/test_profiler 1/1 ... [2025-06-01 21:40:05.315508] 2025-06-01T21:40:05.3296019Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:40:05.3297159Z 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-06-01 21:40:05.315508] 2025-06-01T21:40:14.9030616Z 2025-06-01T21:40:14.9031683Z inductor/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_profiler_1.1_9108df436068134c_.log 2025-06-01T21:40:14.9032381Z 2025-06-01T21:40:14.9035769Z Running test_meta 1/5 ... [2025-06-01 21:40:14.894694] 2025-06-01T21:40:14.9036140Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:40:14.9042216Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=1', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:40:14.894694] 2025-06-01T21:40:30.7768814Z 2025-06-01T21:40:30.7769676Z test_meta 1/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_1.5_b353595a8784a496_.log 2025-06-01T21:40:30.7770349Z Running 0 items in this shard: 2025-06-01T21:40:30.7770521Z 2025-06-01T21:40:30.7774690Z Running inductor/test_minifier 1/1 ... [2025-06-01 21:40:30.771334] 2025-06-01T21:40:30.7775138Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:40:30.7780856Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:40:30.771334] 2025-06-01T21:40:40.6470455Z 2025-06-01T21:40:40.6471376Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_13f8a165643c1da6_.log 2025-06-01T21:40:40.6472040Z 2025-06-01T21:40:40.6477860Z Running export/test_schema 1/1 ... [2025-06-01 21:40:40.647289] 2025-06-01T21:40:40.6478271Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:40:40.6485167Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_schema.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:40:40.647289] 2025-06-01T21:40:45.0055055Z 2025-06-01T21:40:45.0056104Z export/test_schema 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_schema_1.1_fc985e593c12d85c_.log 2025-06-01T21:40:45.0056864Z Running 0 items in this shard: 2025-06-01T21:40:45.0057052Z 2025-06-01T21:40:45.0061288Z Running inductor/test_group_batch_fusion 1/1 ... [2025-06-01 21:40:44.991394] 2025-06-01T21:40:45.0061768Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:40:45.0077853Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_group_batch_fusion.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:40:45.007056] 2025-06-01T21:40:54.6654056Z 2025-06-01T21:40:54.6655252Z inductor/test_group_batch_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_group_batch_fusion_1.1_22d2762c9aee6f9a_.log 2025-06-01T21:40:54.6656171Z 2025-06-01T21:40:54.6660248Z Running backends/xeon/test_launch 1/1 ... [2025-06-01 21:40:54.664108] 2025-06-01T21:40:54.6666343Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:40:54.6667430Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'backends/xeon/test_launch.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:40:54.664108] 2025-06-01T21:40:59.0040102Z 2025-06-01T21:40:59.0041348Z backends/xeon/test_launch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/backends.xeon.test_launch_1.1_3f9a51a780c2bf85_.log 2025-06-01T21:40:59.0042184Z Running 0 items in this shard: 2025-06-01T21:40:59.0042370Z 2025-06-01T21:40:59.0046727Z Running torch_np/numpy_tests/core/test_einsum 1/1 ... [2025-06-01 21:40:58.992617] 2025-06-01T21:40:59.0047208Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:40:59.0053454Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_einsum.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:40:58.992617] 2025-06-01T21:41:03.4588032Z 2025-06-01T21:41:03.4589317Z torch_np/numpy_tests/core/test_einsum 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_einsum_1.1_eda0e41a06e5fb1b_.log 2025-06-01T21:41:03.4590198Z Running 0 items in this shard: 2025-06-01T21:41:03.4594235Z 2025-06-01T21:41:03.4594464Z Running export/test_passes 1/1 ... [2025-06-01 21:41:03.446074] 2025-06-01T21:41:03.4594863Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:03.4601431Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_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-06-01 21:41:03.446074] 2025-06-01T21:41:09.2297474Z 2025-06-01T21:41:09.2298648Z export/test_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_passes_1.1_b32b0b6180654279_.log 2025-06-01T21:41:09.2299382Z Running 0 items in this shard: 2025-06-01T21:41:09.2303044Z 2025-06-01T21:41:09.2303213Z Running test_openmp 1/1 ... [2025-06-01 21:41:09.227805] 2025-06-01T21:41:09.2303609Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:09.2311051Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_openmp.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:09.227805] 2025-06-01T21:41:13.6158411Z 2025-06-01T21:41:13.6159273Z test_openmp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_openmp_1.1_61cd2dd5a7ca1dc6_.log 2025-06-01T21:41:13.6160177Z Running 0 items in this shard: 2025-06-01T21:41:13.6160363Z 2025-06-01T21:41:13.6164067Z Running test_module_tracker 1/1 ... [2025-06-01 21:41:13.603122] 2025-06-01T21:41:13.6164468Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:13.6170969Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_module_tracker.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:13.603122] 2025-06-01T21:41:17.9664598Z 2025-06-01T21:41:17.9666007Z test_module_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_module_tracker_1.1_9c8890e6b8991a5f_.log 2025-06-01T21:41:17.9666766Z Running 0 items in this shard: 2025-06-01T21:41:17.9666952Z 2025-06-01T21:41:17.9671272Z Running inductor/test_block_analysis 1/1 ... [2025-06-01 21:41:17.962829] 2025-06-01T21:41:17.9671757Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:17.9797262Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_block_analysis.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:17.978447] 2025-06-01T21:41:27.8246057Z 2025-06-01T21:41:27.8247101Z inductor/test_block_analysis 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_block_analysis_1.1_1b0c9be48909fcf5_.log 2025-06-01T21:41:27.8247918Z Running 0 items in this shard: 2025-06-01T21:41:27.8248155Z 2025-06-01T21:41:27.8252317Z Running export/test_db 1/1 ... [2025-06-01 21:41:27.822861] 2025-06-01T21:41:27.8252707Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:27.8259094Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_db.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:27.822861] 2025-06-01T21:41:32.2506753Z 2025-06-01T21:41:32.2507883Z export/test_db 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_db_1.1_25ca77b4cb2e15ea_.log 2025-06-01T21:41:32.2508621Z Running 0 items in this shard: 2025-06-01T21:41:32.2512839Z 2025-06-01T21:41:32.2513054Z Running dynamo/test_config 1/1 ... [2025-06-01 21:41:32.245035] 2025-06-01T21:41:32.2513454Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:32.2519958Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:32.245035] 2025-06-01T21:41:36.7937997Z 2025-06-01T21:41:36.7939000Z dynamo/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_config_1.1_46ee72e6a30ba9fc_.log 2025-06-01T21:41:36.7939628Z 2025-06-01T21:41:36.7944430Z Running higher_order_ops/test_invoke_quant 1/1 ... [2025-06-01 21:41:36.792225] 2025-06-01T21:41:36.7944925Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:36.7950947Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_quant.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:36.792225] 2025-06-01T21:41:46.4661317Z 2025-06-01T21:41:46.4662557Z higher_order_ops/test_invoke_quant 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_quant_1.1_174b49321ab4842e_.log 2025-06-01T21:41:46.4663446Z Running 0 items in this shard: 2025-06-01T21:41:46.4666640Z 2025-06-01T21:41:46.4666869Z Running test_compile_benchmark_util 1/1 ... [2025-06-01 21:41:46.464686] 2025-06-01T21:41:46.4672520Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:46.4673606Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_compile_benchmark_util.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:46.464686] 2025-06-01T21:41:50.5446723Z 2025-06-01T21:41:50.5448207Z test_compile_benchmark_util 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_compile_benchmark_util_1.1_fbe77d48a1a5e75c_.log 2025-06-01T21:41:50.5449050Z Running 0 items in this shard: 2025-06-01T21:41:50.5449232Z 2025-06-01T21:41:50.5452614Z Running inductor/test_graph_transform_observer 1/1 ... [2025-06-01 21:41:50.543059] 2025-06-01T21:41:50.5453299Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:50.5458664Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_graph_transform_observer.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:50.543059] 2025-06-01T21:41:59.5360278Z 2025-06-01T21:41:59.5361638Z inductor/test_graph_transform_observer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_graph_transform_observer_1.1_c9e3a13f1630971b_.log 2025-06-01T21:41:59.5362455Z 2025-06-01T21:41:59.5365632Z Running test_jit 1/1 ... [2025-06-01 21:41:59.527927] 2025-06-01T21:41:59.5366079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:41:59.5371745Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:41:59.527927] 2025-06-01T21:42:06.9589214Z 2025-06-01T21:42:06.9590038Z test_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_1.1_af0ed3e2bc1c2479_.log 2025-06-01T21:42:06.9590708Z Running 0 items in this shard: 2025-06-01T21:42:06.9590891Z 2025-06-01T21:42:06.9594860Z Running inductor/test_torchinductor_codegen_dynamic_shapes 1/1 ... [2025-06-01 21:42:06.950239] 2025-06-01T21:42:06.9595420Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:06.9601563Z 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-06-01 21:42:06.950239] 2025-06-01T21:42:17.2264015Z 2025-06-01T21:42:17.2265348Z 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_d9ca216224eeef55_.log 2025-06-01T21:42:17.2266302Z 2025-06-01T21:42:17.2269464Z Running inductor/test_torchinductor_dynamic_shapes 1/1 ... [2025-06-01 21:42:17.216386] 2025-06-01T21:42:17.2270003Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:17.2276165Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_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-06-01 21:42:17.216386] 2025-06-01T21:42:27.1043789Z 2025-06-01T21:42:27.1044984Z inductor/test_torchinductor_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_dynamic_shapes_1.1_0b4b35ec18b626fb_.log 2025-06-01T21:42:27.1045823Z 2025-06-01T21:42:27.1048869Z Running test_fx_passes 1/1 ... [2025-06-01 21:42:27.091851] 2025-06-01T21:42:27.1049259Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:27.1055616Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_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-06-01 21:42:27.091851] 2025-06-01T21:42:31.5525334Z 2025-06-01T21:42:31.5526209Z test_fx_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_passes_1.1_9ac639ea7e297b99_.log 2025-06-01T21:42:31.5526907Z Running 0 items in this shard: 2025-06-01T21:42:31.5527119Z 2025-06-01T21:42:31.5532155Z Running test_legacy_vmap 1/1 ... [2025-06-01 21:42:31.545176] 2025-06-01T21:42:31.5532552Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:31.5538687Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_legacy_vmap.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:42:31.545176] 2025-06-01T21:42:36.2949347Z 2025-06-01T21:42:36.2950229Z test_legacy_vmap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_legacy_vmap_1.1_30e8d5c6acd481c9_.log 2025-06-01T21:42:36.2950966Z Running 0 items in this shard: 2025-06-01T21:42:36.2951156Z 2025-06-01T21:42:36.2956897Z Running dynamo/test_view 1/1 ... [2025-06-01 21:42:36.295416] 2025-06-01T21:42:36.2957300Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:36.2963800Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_view.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:42:36.295416] 2025-06-01T21:42:40.5367274Z 2025-06-01T21:42:40.5368503Z dynamo/test_view 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_view_1.1_d3a4938307241a89_.log 2025-06-01T21:42:40.5369116Z 2025-06-01T21:42:40.5372527Z Running torch_np/test_basic 1/1 ... [2025-06-01 21:42:40.529988] 2025-06-01T21:42:40.5372968Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:40.5379183Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_basic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:42:40.529988] 2025-06-01T21:42:45.3803193Z 2025-06-01T21:42:45.3804112Z torch_np/test_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_basic_1.1_bfd54b4deebb6102_.log 2025-06-01T21:42:45.3804868Z Running 0 items in this shard: 2025-06-01T21:42:45.3805053Z 2025-06-01T21:42:45.3808729Z Running inductor/test_cudacodecache 1/1 ... [2025-06-01 21:42:45.373954] 2025-06-01T21:42:45.3809201Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:45.3815752Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudacodecache.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:42:45.373954] 2025-06-01T21:42:49.6870017Z 2025-06-01T21:42:49.6871208Z inductor/test_cudacodecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudacodecache_1.1_f957469491725736_.log 2025-06-01T21:42:49.6871921Z 2025-06-01T21:42:49.6875342Z Running profiler/test_kineto 1/1 ... [2025-06-01 21:42:49.686625] 2025-06-01T21:42:49.6875754Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:49.6881944Z 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-06-01 21:42:49.686625] 2025-06-01T21:42:54.0235119Z 2025-06-01T21:42:54.0236353Z profiler/test_kineto 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_kineto_1.1_2a261ff4bb0be7f5_.log 2025-06-01T21:42:54.0237105Z Running 0 items in this shard: 2025-06-01T21:42:54.0237294Z 2025-06-01T21:42:54.0240771Z Running inductor/test_aot_inductor_utils 1/1 ... [2025-06-01 21:42:54.014937] 2025-06-01T21:42:54.0241229Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:42:54.0247684Z 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-06-01 21:42:54.014937] 2025-06-01T21:43:03.6488431Z 2025-06-01T21:43:03.6489603Z 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_94d88eaa01587730_.log 2025-06-01T21:43:03.6490343Z 2025-06-01T21:43:03.6494561Z Running test_segment_reductions 1/1 ... [2025-06-01 21:43:03.640259] 2025-06-01T21:43:03.6500588Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:03.6501664Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_segment_reductions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:43:03.640259] 2025-06-01T21:43:08.4200655Z 2025-06-01T21:43:08.4201762Z test_segment_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_segment_reductions_1.1_553b959740595560_.log 2025-06-01T21:43:08.4202572Z Running 0 items in this shard: 2025-06-01T21:43:08.4202789Z 2025-06-01T21:43:08.4206254Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-06-01 21:43:08.406109] 2025-06-01T21:43:08.4206770Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:08.4212919Z 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-06-01 21:43:08.406109] 2025-06-01T21:43:18.2514540Z 2025-06-01T21:43:18.2515607Z 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_4d998450b316081c_.log 2025-06-01T21:43:18.2516384Z 2025-06-01T21:43:18.2520686Z Running functorch/test_ac_knapsack 1/1 ... [2025-06-01 21:43:18.250154] 2025-06-01T21:43:18.2521130Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:18.2527584Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_knapsack.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:43:18.250154] 2025-06-01T21:43:22.7056623Z 2025-06-01T21:43:22.7057824Z functorch/test_ac_knapsack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_knapsack_1.1_be573c3347a4f972_.log 2025-06-01T21:43:22.7058653Z Running 0 items in this shard: 2025-06-01T21:43:22.7058839Z 2025-06-01T21:43:22.7062123Z Running test_tensorexpr_pybind 1/1 ... [2025-06-01 21:43:22.703480] 2025-06-01T21:43:22.7062608Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:22.7068644Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorexpr_pybind.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:43:22.703480] 2025-06-01T21:43:27.1069811Z 2025-06-01T21:43:27.1070727Z test_tensorexpr_pybind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorexpr_pybind_1.1_126b961bd0d07404_.log 2025-06-01T21:43:27.1071623Z Running 0 items in this shard: 2025-06-01T21:43:27.1071811Z 2025-06-01T21:43:27.1075761Z Running inductor/test_split_cat_fx_passes 1/1 ... [2025-06-01 21:43:27.094260] 2025-06-01T21:43:27.1076292Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:27.1082188Z 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-06-01 21:43:27.094260] 2025-06-01T21:43:36.8896152Z 2025-06-01T21:43:36.8897329Z 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_a04546f3184f1306_.log 2025-06-01T21:43:36.8898250Z 2025-06-01T21:43:36.8901410Z Running test_complex 1/1 ... [2025-06-01 21:43:36.875831] 2025-06-01T21:43:36.8901789Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:36.8908113Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_complex.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:43:36.875831] 2025-06-01T21:43:41.5846909Z 2025-06-01T21:43:41.5847938Z test_complex 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_complex_1.1_366e8a3968109bfc_.log 2025-06-01T21:43:41.5848669Z Running 0 items in this shard: 2025-06-01T21:43:41.5848859Z 2025-06-01T21:43:41.5852391Z Running test_numpy_interop 1/1 ... [2025-06-01 21:43:41.579067] 2025-06-01T21:43:41.5852817Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:41.5864914Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numpy_interop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:43:41.579067] 2025-06-01T21:43:46.2397533Z 2025-06-01T21:43:46.2398731Z test_numpy_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numpy_interop_1.1_1516839864beeb3a_.log 2025-06-01T21:43:46.2399460Z Running 0 items in this shard: 2025-06-01T21:43:46.2399674Z 2025-06-01T21:43:46.2403377Z Running torch_np/test_function_base 1/1 ... [2025-06-01 21:43:46.235429] 2025-06-01T21:43:46.2403874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:46.2409844Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_function_base.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:43:46.235429] 2025-06-01T21:43:50.6376756Z 2025-06-01T21:43:50.6377695Z torch_np/test_function_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_function_base_1.1_0fb4c5ff01d902ba_.log 2025-06-01T21:43:50.6378498Z Running 0 items in this shard: 2025-06-01T21:43:50.6378722Z 2025-06-01T21:43:50.6383250Z Running inductor/test_multi_kernel 1/1 ... [2025-06-01 21:43:50.626206] 2025-06-01T21:43:50.6383711Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:43:50.6390114Z 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-06-01 21:43:50.626206] 2025-06-01T21:44:00.5528220Z 2025-06-01T21:44:00.5529370Z 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_43ea64858a99d29b_.log 2025-06-01T21:44:00.5530055Z 2025-06-01T21:44:00.5534342Z Running test_nestedtensor 1/4 ... [2025-06-01 21:44:00.548321] 2025-06-01T21:44:00.5534774Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:00.5542015Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'serial', '--shard-id=1', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:44:00.548321] 2025-06-01T21:44:07.2877260Z 2025-06-01T21:44:07.2878650Z test_nestedtensor 1/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_1.4_761ab38fea522384_.log 2025-06-01T21:44:07.2879415Z Running 0 items in this shard: 2025-06-01T21:44:07.2879601Z 2025-06-01T21:44:07.2882737Z Running test_nestedtensor 4/4 ... [2025-06-01 21:44:07.282884] 2025-06-01T21:44:07.2883179Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:07.2889236Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.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-06-01 21:44:07.282884] 2025-06-01T21:44:14.1329671Z 2025-06-01T21:44:14.1330524Z test_nestedtensor 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_4.4_47c8393d20a9b30d_.log 2025-06-01T21:44:14.1331803Z Running 1 items in this shard: test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_backward_memory_usage_cpu_float32 2025-06-01T21:44:14.1332384Z 2025-06-01T21:44:14.1335265Z Running dynamo/test_misc 1/1 ... [2025-06-01 21:44:14.126810] 2025-06-01T21:44:14.1335660Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:14.1341693Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_misc.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:44:14.126810] 2025-06-01T21:44:20.4122622Z 2025-06-01T21:44:20.4123574Z dynamo/test_misc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_misc_1.1_02168c2662438dcb_.log 2025-06-01T21:44:20.4124171Z 2025-06-01T21:44:20.4127830Z Running export/test_torchbind 1/1 ... [2025-06-01 21:44:20.408201] 2025-06-01T21:44:20.4128254Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:20.4134616Z 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-06-01 21:44:20.408201] 2025-06-01T21:44:25.1469255Z 2025-06-01T21:44:25.1470392Z export/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_torchbind_1.1_a3eb6611dd16c2f7_.log 2025-06-01T21:44:25.1471187Z Running 0 items in this shard: 2025-06-01T21:44:25.1471375Z 2025-06-01T21:44:25.1475534Z Running test_hub 1/1 ... [2025-06-01 21:44:25.142716] 2025-06-01T21:44:25.1475940Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:25.1482513Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_hub.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:44:25.142716] 2025-06-01T21:44:29.3755609Z 2025-06-01T21:44:29.3756515Z test_hub 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_hub_1.1_dfd4ced6ae011d5e_.log 2025-06-01T21:44:29.3757085Z 2025-06-01T21:44:29.3761730Z Running distributions/test_constraints 1/1 ... [2025-06-01 21:44:29.361529] 2025-06-01T21:44:29.3762232Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:29.3768717Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'distributions/test_constraints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:44:29.361529] 2025-06-01T21:44:34.1205233Z 2025-06-01T21:44:34.1206235Z distributions/test_constraints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_constraints_1.1_2ea43b5f0fe6b509_.log 2025-06-01T21:44:34.1207378Z Running 0 items in this shard: 2025-06-01T21:44:34.1207570Z 2025-06-01T21:44:34.1210779Z Running functorch/test_vmap 1/2 ... [2025-06-01 21:44:34.111683] 2025-06-01T21:44:34.1211226Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:34.1217859Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap.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-06-01 21:44:34.111683] 2025-06-01T21:44:40.9779956Z 2025-06-01T21:44:40.9781023Z functorch/test_vmap 1/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_1.2_0787846ece19b7c1_.log 2025-06-01T21:44:40.9781812Z Running 0 items in this shard: 2025-06-01T21:44:40.9782009Z 2025-06-01T21:44:40.9785472Z Running inductor/test_perf 1/1 ... [2025-06-01 21:44:40.971202] 2025-06-01T21:44:40.9785914Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:40.9792181Z 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-06-01 21:44:40.971202] 2025-06-01T21:44:50.9796363Z 2025-06-01T21:44:50.9797658Z inductor/test_perf 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_perf_1.1_a5dc9868594019a3_.log 2025-06-01T21:44:50.9798294Z 2025-06-01T21:44:50.9801733Z Running test_ops_jit 2/3 ... [2025-06-01 21:44:50.971360] 2025-06-01T21:44:50.9802117Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:50.9808218Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.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-06-01 21:44:50.971360] 2025-06-01T21:44:57.2570583Z 2025-06-01T21:44:57.2571406Z test_ops_jit 2/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_2.3_43efcac546e0d2af_.log 2025-06-01T21:44:57.2572106Z Running 0 items in this shard: 2025-06-01T21:44:57.2572316Z 2025-06-01T21:44:57.2576056Z Running optim/test_lrscheduler 1/1 ... [2025-06-01 21:44:57.252734] 2025-06-01T21:44:57.2576493Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:44:57.2582539Z 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-06-01 21:44:57.252734] 2025-06-01T21:45:01.5417096Z 2025-06-01T21:45:01.5418160Z optim/test_lrscheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_lrscheduler_1.1_2eb773f131903d1e_.log 2025-06-01T21:45:01.5418876Z 2025-06-01T21:45:01.5422482Z Running xpu/test_gemm 1/1 ... [2025-06-01 21:45:01.534084] 2025-06-01T21:45:01.5422908Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:01.5428901Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_gemm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:45:01.534084] 2025-06-01T21:45:06.2703750Z 2025-06-01T21:45:06.2704587Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_6da7d0b8fe9f3b2a_.log 2025-06-01T21:45:06.2705304Z Running 0 items in this shard: 2025-06-01T21:45:06.2705487Z 2025-06-01T21:45:06.2710258Z Running test_ops_gradients 2/2 ... [2025-06-01 21:45:06.268566] 2025-06-01T21:45:06.2710685Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:06.2717510Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:45:06.268566] 2025-06-01T21:45:13.7891097Z 2025-06-01T21:45:13.7891996Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_2814c06338cd0683_.log 2025-06-01T21:45:13.7892716Z Running 0 items in this shard: 2025-06-01T21:45:13.7892936Z 2025-06-01T21:45:13.7896777Z Running inductor/test_snode_runtime 1/1 ... [2025-06-01 21:45:13.784316] 2025-06-01T21:45:13.7897245Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:13.7903387Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_snode_runtime.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:45:13.784316] 2025-06-01T21:45:23.5612198Z 2025-06-01T21:45:23.5613248Z inductor/test_snode_runtime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_snode_runtime_1.1_16937e5bbc957ad4_.log 2025-06-01T21:45:23.5614006Z 2025-06-01T21:45:23.5617596Z Running dynamo/test_cudagraphs_expandable_segments 1/1 ... [2025-06-01 21:45:23.550084] 2025-06-01T21:45:23.5618139Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:23.5624515Z 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-06-01 21:45:23.550084] 2025-06-01T21:45:28.3384452Z 2025-06-01T21:45:28.3385621Z 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_173090bf0fc69930_.log 2025-06-01T21:45:28.3386475Z 2025-06-01T21:45:28.3389699Z Running dynamo/test_modes 1/1 ... [2025-06-01 21:45:28.331460] 2025-06-01T21:45:28.3390133Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:28.3396303Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:45:28.331460] 2025-06-01T21:45:38.0133524Z 2025-06-01T21:45:38.0134455Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_0cce45d89ddba72b_.log 2025-06-01T21:45:38.0135102Z 2025-06-01T21:45:38.0139848Z Running inductor/test_mkldnn_pattern_matcher 1/1 ... [2025-06-01 21:45:38.003441] 2025-06-01T21:45:38.0140350Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:38.0146740Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mkldnn_pattern_matcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:45:38.003441] 2025-06-01T21:45:47.8982215Z 2025-06-01T21:45:47.8983526Z inductor/test_mkldnn_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mkldnn_pattern_matcher_1.1_6b93ee267c78f556_.log 2025-06-01T21:45:47.8984339Z 2025-06-01T21:45:47.8987673Z Running dynamo/test_model_output 1/1 ... [2025-06-01 21:45:47.894267] 2025-06-01T21:45:47.8988153Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:47.8994551Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_model_output.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:45:47.894267] 2025-06-01T21:45:52.6722794Z 2025-06-01T21:45:52.6723970Z dynamo/test_model_output 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_model_output_1.1_a234117ea42ed023_.log 2025-06-01T21:45:52.6724844Z 2025-06-01T21:45:52.6728961Z Running torch_np/numpy_tests/core/test_numeric 1/1 ... [2025-06-01 21:45:52.659924] 2025-06-01T21:45:52.6729438Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:52.6741913Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_numeric.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:45:52.659924] 2025-06-01T21:45:57.3587106Z 2025-06-01T21:45:57.3588195Z torch_np/numpy_tests/core/test_numeric 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_numeric_1.1_302181b09ac5aed5_.log 2025-06-01T21:45:57.3589086Z Running 0 items in this shard: 2025-06-01T21:45:57.3589300Z 2025-06-01T21:45:57.3593569Z Running test_numba_integration 1/1 ... [2025-06-01 21:45:57.347520] 2025-06-01T21:45:57.3593998Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:45:57.3601135Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numba_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-06-01 21:45:57.347520] 2025-06-01T21:46:02.0400567Z 2025-06-01T21:46:02.0401728Z test_numba_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numba_integration_1.1_e6fe451ee488e3c7_.log 2025-06-01T21:46:02.0402533Z Running 0 items in this shard: 2025-06-01T21:46:02.0402717Z 2025-06-01T21:46:02.0406097Z Running profiler/test_record_function 1/1 ... [2025-06-01 21:46:02.035085] 2025-06-01T21:46:02.0406564Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:02.0412488Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_record_function.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:46:02.035085] 2025-06-01T21:46:06.4154514Z 2025-06-01T21:46:06.4155758Z profiler/test_record_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_record_function_1.1_72056b70a1f7733c_.log 2025-06-01T21:46:06.4156612Z Running 0 items in this shard: 2025-06-01T21:46:06.4159879Z 2025-06-01T21:46:06.4160100Z Running nn/test_lazy_modules 1/1 ... [2025-06-01 21:46:06.410115] 2025-06-01T21:46:06.4160504Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:06.4166932Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_lazy_modules.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:46:06.410115] 2025-06-01T21:46:11.0430361Z 2025-06-01T21:46:11.0431341Z nn/test_lazy_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_lazy_modules_1.1_ec238c6fbde5dd15_.log 2025-06-01T21:46:11.0432248Z Running 0 items in this shard: 2025-06-01T21:46:11.0432429Z 2025-06-01T21:46:11.0435897Z Running test_type_hints 1/1 ... [2025-06-01 21:46:11.035157] 2025-06-01T21:46:11.0436282Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:11.0442564Z 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-06-01 21:46:11.035157] 2025-06-01T21:46:15.7514946Z 2025-06-01T21:46:15.7516116Z test_type_hints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_hints_1.1_45037b897fe632a5_.log 2025-06-01T21:46:15.7516853Z Running 0 items in this shard: 2025-06-01T21:46:15.7517036Z 2025-06-01T21:46:15.7521799Z Running test_jiterator 1/1 ... [2025-06-01 21:46:15.738341] 2025-06-01T21:46:15.7522220Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:15.7528518Z 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-06-01 21:46:15.738341] 2025-06-01T21:46:20.4649877Z 2025-06-01T21:46:20.4651003Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_e84b6db301b0a483_.log 2025-06-01T21:46:20.4651700Z Running 0 items in this shard: 2025-06-01T21:46:20.4651913Z 2025-06-01T21:46:20.4655393Z Running test_matmul_cuda 1/1 ... [2025-06-01 21:46:20.457194] 2025-06-01T21:46:20.4655816Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:20.4661885Z 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-06-01 21:46:20.457194] 2025-06-01T21:46:25.2010162Z 2025-06-01T21:46:25.2011306Z test_matmul_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_matmul_cuda_1.1_76ea492f19e84914_.log 2025-06-01T21:46:25.2012042Z Running 0 items in this shard: 2025-06-01T21:46:25.2012226Z 2025-06-01T21:46:25.2015730Z Running nn/test_parametrization 1/1 ... [2025-06-01 21:46:25.191601] 2025-06-01T21:46:25.2016159Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:25.2022483Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_parametrization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:46:25.191601] 2025-06-01T21:46:29.8531172Z 2025-06-01T21:46:29.8532319Z nn/test_parametrization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_parametrization_1.1_a9e40f11c2da2cbf_.log 2025-06-01T21:46:29.8533139Z Running 0 items in this shard: 2025-06-01T21:46:29.8533343Z 2025-06-01T21:46:29.8537788Z Running test_datapipe 1/1 ... [2025-06-01 21:46:29.847884] 2025-06-01T21:46:29.8538226Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:29.8544665Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_datapipe.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:46:29.847884] 2025-06-01T21:46:34.3532420Z 2025-06-01T21:46:34.3533479Z test_datapipe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_datapipe_1.1_a6ce0f711fd7255d_.log 2025-06-01T21:46:34.3534182Z Running 0 items in this shard: 2025-06-01T21:46:34.3534551Z 2025-06-01T21:46:34.3537944Z Running inductor/test_unbacked_symints 1/1 ... [2025-06-01 21:46:34.347988] 2025-06-01T21:46:34.3538430Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:34.3544873Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:46:34.347988] 2025-06-01T21:46:44.0745728Z 2025-06-01T21:46:44.0747055Z inductor/test_unbacked_symints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_unbacked_symints_1.1_ceeabc319bed2990_.log 2025-06-01T21:46:44.0748068Z 2025-06-01T21:46:44.0752243Z Running test_maskedtensor 1/1 ... [2025-06-01 21:46:44.066792] 2025-06-01T21:46:44.0752682Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:44.0759126Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_maskedtensor.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:46:44.066792] 2025-06-01T21:46:50.1970537Z 2025-06-01T21:46:50.1971477Z test_maskedtensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_maskedtensor_1.1_0f0cf6fb3898f583_.log 2025-06-01T21:46:50.1972238Z Running 0 items in this shard: 2025-06-01T21:46:50.1972422Z 2025-06-01T21:46:50.1976039Z Running test_monitor 1/1 ... [2025-06-01 21:46:50.191906] 2025-06-01T21:46:50.1976416Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:50.1982545Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_monitor.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:46:50.191906] 2025-06-01T21:46:54.6177762Z 2025-06-01T21:46:54.6178888Z test_monitor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_monitor_1.1_5a53343b6e90576b_.log 2025-06-01T21:46:54.6179602Z Running 0 items in this shard: 2025-06-01T21:46:54.6179787Z 2025-06-01T21:46:54.6183352Z Running inductor/test_efficient_conv_bn_eval 1/1 ... [2025-06-01 21:46:54.613794] 2025-06-01T21:46:54.6183818Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:46:54.6190262Z 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-06-01 21:46:54.613794] 2025-06-01T21:47:04.4435106Z 2025-06-01T21:47:04.4436173Z 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_261598cc4af6e952_.log 2025-06-01T21:47:04.4436971Z 2025-06-01T21:47:04.4440611Z Running test_decomp 1/15 ... [2025-06-01 21:47:04.442047] 2025-06-01T21:47:04.4441053Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:04.4446906Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=1', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:47:04.442047] 2025-06-01T21:47:12.8214244Z 2025-06-01T21:47:12.8215064Z test_decomp 1/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.15_acb46904d812a4f1_.log 2025-06-01T21:47:12.8215797Z Running 0 items in this shard: 2025-06-01T21:47:12.8215984Z 2025-06-01T21:47:12.8219766Z Running test_decomp 5/15 ... [2025-06-01 21:47:12.817099] 2025-06-01T21:47:12.8220168Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:12.8226495Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=5', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:47:12.817099] 2025-06-01T21:47:20.9870024Z 2025-06-01T21:47:20.9870975Z test_decomp 5/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_5.15_8262f97ced906c0b_.log 2025-06-01T21:47:20.9871636Z Running 0 items in this shard: 2025-06-01T21:47:20.9871804Z 2025-06-01T21:47:20.9875698Z Running test_decomp 8/15 ... [2025-06-01 21:47:20.973420] 2025-06-01T21:47:20.9876086Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:20.9882446Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=8', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:47:20.973420] 2025-06-01T21:47:29.2987282Z 2025-06-01T21:47:29.2988059Z test_decomp 8/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_8.15_677d9a9701e9e101_.log 2025-06-01T21:47:29.2988713Z Running 0 items in this shard: 2025-06-01T21:47:29.2988882Z 2025-06-01T21:47:29.2992769Z Running test_decomp 10/15 ... [2025-06-01 21:47:29.286057] 2025-06-01T21:47:29.2993121Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:29.2999273Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=10', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:47:29.286057] 2025-06-01T21:47:37.5147142Z 2025-06-01T21:47:37.5148004Z test_decomp 10/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_10.15_fa2934c722a7b3c7_.log 2025-06-01T21:47:37.5148676Z Running 0 items in this shard: 2025-06-01T21:47:37.5148876Z 2025-06-01T21:47:37.5152535Z Running test_decomp 14/15 ... [2025-06-01 21:47:37.504809] 2025-06-01T21:47:37.5152893Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:37.5165689Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=14', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:47:37.504809] 2025-06-01T21:47:45.8438411Z 2025-06-01T21:47:45.8439433Z test_decomp 14/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_14.15_ef71246133bd194b_.log 2025-06-01T21:47:45.8440130Z Running 0 items in this shard: 2025-06-01T21:47:45.8444696Z 2025-06-01T21:47:45.8444893Z Running dynamo/test_profiler 1/1 ... [2025-06-01 21:47:45.833042] 2025-06-01T21:47:45.8445273Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:45.8451895Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_profiler.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:47:45.833042] 2025-06-01T21:47:50.3867885Z 2025-06-01T21:47:50.3868901Z dynamo/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_profiler_1.1_9480959f27b4be9e_.log 2025-06-01T21:47:50.3869551Z 2025-06-01T21:47:50.3873087Z Running optim/test_optim 1/1 ... [2025-06-01 21:47:50.379960] 2025-06-01T21:47:50.3873463Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:50.3879643Z 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-06-01 21:47:50.379960] 2025-06-01T21:47:54.6202010Z 2025-06-01T21:47:54.6203471Z optim/test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_optim_1.1_b2d366752397367b_.log 2025-06-01T21:47:54.6204052Z 2025-06-01T21:47:54.6207406Z Running dynamo/test_debug_utils 1/1 ... [2025-06-01 21:47:54.614346] 2025-06-01T21:47:54.6207805Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:47:54.6214032Z 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-06-01 21:47:54.614346] 2025-06-01T21:48:04.5361983Z 2025-06-01T21:48:04.5364175Z 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_c5b69f8be33e0d7b_.log 2025-06-01T21:48:04.5364885Z 2025-06-01T21:48:04.5367503Z Running dynamo/test_base_hop 1/1 ... [2025-06-01 21:48:04.536272] 2025-06-01T21:48:04.5367986Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:04.5374164Z 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-06-01 21:48:04.536272] 2025-06-01T21:48:14.3575286Z 2025-06-01T21:48:14.3576376Z 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_caece55316f32fb6_.log 2025-06-01T21:48:14.3577008Z 2025-06-01T21:48:14.3580716Z Running test_cuda_sanitizer 1/1 ... [2025-06-01 21:48:14.348881] 2025-06-01T21:48:14.3581149Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:14.3587191Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_sanitizer.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:14.348881] 2025-06-01T21:48:18.7492064Z 2025-06-01T21:48:18.7492914Z test_cuda_sanitizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_sanitizer_1.1_e8139859877e0db8_.log 2025-06-01T21:48:18.7493613Z Running 0 items in this shard: 2025-06-01T21:48:18.7493793Z 2025-06-01T21:48:18.7497841Z Running dynamo/test_trace_rules 1/1 ... [2025-06-01 21:48:18.739499] 2025-06-01T21:48:18.7498244Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:18.7504490Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_trace_rules.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:18.739499] 2025-06-01T21:48:23.0915904Z 2025-06-01T21:48:23.0916773Z dynamo/test_trace_rules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_trace_rules_1.1_46fe69d1c726645b_.log 2025-06-01T21:48:23.0917448Z 2025-06-01T21:48:23.0921288Z Running dynamo/test_unspec 1/1 ... [2025-06-01 21:48:23.083327] 2025-06-01T21:48:23.0921679Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:23.0928742Z 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-06-01 21:48:23.083327] 2025-06-01T21:48:27.9904073Z 2025-06-01T21:48:27.9905202Z dynamo/test_unspec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unspec_1.1_c262e8ab09873c15_.log 2025-06-01T21:48:27.9905828Z 2025-06-01T21:48:27.9910444Z Running optim/test_swa_utils 1/1 ... [2025-06-01 21:48:27.989549] 2025-06-01T21:48:27.9910836Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:27.9917487Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_swa_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:27.989549] 2025-06-01T21:48:32.3501208Z 2025-06-01T21:48:32.3502339Z optim/test_swa_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_swa_utils_1.1_eb6a7273d633010c_.log 2025-06-01T21:48:32.3502982Z 2025-06-01T21:48:32.3506599Z Running dynamo/test_torchrec 1/1 ... [2025-06-01 21:48:32.349011] 2025-06-01T21:48:32.3506996Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:32.3513495Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_torchrec.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:32.349011] 2025-06-01T21:48:36.8606495Z 2025-06-01T21:48:36.8607668Z dynamo/test_torchrec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_torchrec_1.1_e9bb15548f74c6e3_.log 2025-06-01T21:48:36.8608311Z 2025-06-01T21:48:36.8612449Z Running dynamo/test_bytecode_utils 1/1 ... [2025-06-01 21:48:36.849050] 2025-06-01T21:48:36.8612898Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:36.8618886Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_bytecode_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:36.849050] 2025-06-01T21:48:41.3726578Z 2025-06-01T21:48:41.3727605Z dynamo/test_bytecode_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_bytecode_utils_1.1_f543fa3644508432_.log 2025-06-01T21:48:41.3728324Z 2025-06-01T21:48:41.3732070Z Running dynamo/test_exc 1/1 ... [2025-06-01 21:48:41.364688] 2025-06-01T21:48:41.3732495Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:41.3738972Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exc.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:41.364688] 2025-06-01T21:48:46.0048674Z 2025-06-01T21:48:46.0049837Z dynamo/test_exc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exc_1.1_221324b1d3b01093_.log 2025-06-01T21:48:46.0050443Z 2025-06-01T21:48:46.0054439Z Running torch_np/numpy_tests/core/test_shape_base 1/1 ... [2025-06-01 21:48:46.005321] 2025-06-01T21:48:46.0054935Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:46.0061215Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_shape_base.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:46.005321] 2025-06-01T21:48:50.4621105Z 2025-06-01T21:48:50.4622361Z torch_np/numpy_tests/core/test_shape_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_shape_base_1.1_368d2acccf8c3227_.log 2025-06-01T21:48:50.4623312Z Running 0 items in this shard: 2025-06-01T21:48:50.4623496Z 2025-06-01T21:48:50.4628020Z Running test_functional_optim 1/1 ... [2025-06-01 21:48:50.458449] 2025-06-01T21:48:50.4628468Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:50.4634822Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functional_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-06-01 21:48:50.458449] 2025-06-01T21:48:55.1594151Z 2025-06-01T21:48:55.1595345Z test_functional_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functional_optim_1.1_a6f2df9f39f2d22e_.log 2025-06-01T21:48:55.1596125Z Running 0 items in this shard: 2025-06-01T21:48:55.1596320Z 2025-06-01T21:48:55.1600153Z Running torch_np/numpy_tests/lib/test_twodim_base 1/1 ... [2025-06-01 21:48:55.146023] 2025-06-01T21:48:55.1600706Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:55.1606943Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_twodim_base.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:55.146023] 2025-06-01T21:48:59.6292439Z 2025-06-01T21:48:59.6301801Z torch_np/numpy_tests/lib/test_twodim_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_twodim_base_1.1_693897d5315c876b_.log 2025-06-01T21:48:59.6303087Z Running 0 items in this shard: 2025-06-01T21:48:59.6303276Z 2025-06-01T21:48:59.6307073Z Running test_schema_check 1/1 ... [2025-06-01 21:48:59.630413] 2025-06-01T21:48:59.6307479Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:48:59.6314362Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_schema_check.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:48:59.630413] 2025-06-01T21:49:06.9884447Z 2025-06-01T21:49:06.9885606Z test_schema_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_schema_check_1.1_b5037610e299bfb5_.log 2025-06-01T21:49:06.9886320Z Running 0 items in this shard: 2025-06-01T21:49:06.9886539Z 2025-06-01T21:49:06.9891157Z Running torch_np/numpy_tests/lib/test_arraysetops 1/1 ... [2025-06-01 21:49:06.974185] 2025-06-01T21:49:06.9891745Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:49:06.9897832Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_arraysetops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:49:06.974185] 2025-06-01T21:49:11.4325426Z 2025-06-01T21:49:11.4326644Z torch_np/numpy_tests/lib/test_arraysetops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_arraysetops_1.1_9c0abd879f1e2717_.log 2025-06-01T21:49:11.4327591Z Running 0 items in this shard: 2025-06-01T21:49:11.4327804Z 2025-06-01T21:49:11.4331296Z Running dynamo/test_hooks 1/1 ... [2025-06-01 21:49:11.427347] 2025-06-01T21:49:11.4331727Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:49:11.4337542Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_hooks.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:49:11.427347] 2025-06-01T21:49:15.8555564Z 2025-06-01T21:49:15.8556724Z dynamo/test_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_hooks_1.1_c4965a0b857476e1_.log 2025-06-01T21:49:15.8557385Z 2025-06-01T21:49:15.8560735Z Running test_scatter_gather_ops 1/1 ... [2025-06-01 21:49:15.849229] 2025-06-01T21:49:15.8561189Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:49:15.8567352Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_scatter_gather_ops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:49:15.849229] 2025-06-01T21:49:20.5284737Z 2025-06-01T21:49:20.5285775Z test_scatter_gather_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_scatter_gather_ops_1.1_919a3d92d3386a0c_.log 2025-06-01T21:49:20.5286535Z Running 0 items in this shard: 2025-06-01T21:49:20.5286750Z 2025-06-01T21:49:20.5290558Z Running test_dataloader 1/2 ... [2025-06-01 21:49:20.521165] 2025-06-01T21:49:20.5290973Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:49:20.5297387Z 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-06-01 21:49:20.521165] 2025-06-01T21:49:25.8765393Z 2025-06-01T21:49:25.8766522Z test_dataloader 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_1.2_ef73de8ff9a7d2fa_.log 2025-06-01T21:49:25.8767445Z Running 0 items in this shard: 2025-06-01T21:49:25.8767638Z 2025-06-01T21:49:25.8771252Z Running dynamo/test_subclasses 1/1 ... [2025-06-01 21:49:25.864927] 2025-06-01T21:49:25.8771678Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:49:25.8777960Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_subclasses.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:49:25.864927] 2025-06-01T21:49:35.4740533Z 2025-06-01T21:49:35.4741718Z dynamo/test_subclasses 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_subclasses_1.1_7db1473493a81626_.log 2025-06-01T21:49:35.4742388Z 2025-06-01T21:49:35.4745909Z Running test_ops 2/8 ... [2025-06-01 21:49:35.474373] 2025-06-01T21:49:35.4746293Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:49:35.4752538Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=2', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:49:35.474373] 2025-06-01T21:49:54.6637545Z 2025-06-01T21:49:54.6638514Z test_ops 2/8 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_2.8_76e76fcefb382ebd_.log 2025-06-01T21:49:54.6639194Z Running 0 items in this shard: 2025-06-01T21:49:54.6639386Z 2025-06-01T21:49:54.6642953Z Running test_ops 6/8 ... [2025-06-01 21:49:54.661926] 2025-06-01T21:49:54.6643348Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:49:54.6649872Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=6', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:49:54.661926] 2025-06-01T21:50:13.8801345Z 2025-06-01T21:50:13.8802551Z test_ops 6/8 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_6.8_fce287d2b4058e08_.log 2025-06-01T21:50:13.8803220Z Running 0 items in this shard: 2025-06-01T21:50:13.8803414Z 2025-06-01T21:50:13.8806868Z Running test_ops 7/8 ... [2025-06-01 21:50:13.865200] 2025-06-01T21:50:13.8807242Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:50:13.8814237Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=7', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:50:13.880821] 2025-06-01T21:50:33.0904836Z 2025-06-01T21:50:33.0905775Z test_ops 7/8 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_7.8_100b2e05a16bdb68_.log 2025-06-01T21:50:33.0906446Z Running 0 items in this shard: 2025-06-01T21:50:33.0906632Z 2025-06-01T21:50:33.0910748Z Running test_cuda_multigpu 1/1 ... [2025-06-01 21:50:33.083632] 2025-06-01T21:50:33.0911387Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:50:33.0917018Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_multigpu.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:50:33.083632] 2025-06-01T21:50:37.7687353Z 2025-06-01T21:50:37.7688427Z test_cuda_multigpu 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_multigpu_1.1_60d61c9184bdadb4_.log 2025-06-01T21:50:37.7689136Z Running 0 items in this shard: 2025-06-01T21:50:37.7689310Z 2025-06-01T21:50:37.7694400Z Running test_quantization 2/2 ... [2025-06-01 21:50:37.755270] 2025-06-01T21:50:37.7694832Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:50:37.7700641Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_quantization.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-06-01 21:50:37.755270] 2025-06-01T21:50:44.2196383Z 2025-06-01T21:50:44.2197369Z test_quantization 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_quantization_2.2_33dcbbbd9053a80a_.log 2025-06-01T21:50:44.2198079Z Running 0 items in this shard: 2025-06-01T21:50:44.2198267Z 2025-06-01T21:50:44.2203069Z Running cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 ... [2025-06-01 21:50:44.208067] 2025-06-01T21:50:44.2203648Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:50:44.2210002Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'cpp_extensions/python_agnostic_extension/test/test_python_agnostic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:50:44.208067] 2025-06-01T21:50:48.8625278Z 2025-06-01T21:50:48.8626842Z cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp_extensions.python_agnostic_extension.test.test_python_agnostic_1.1_2ab722a7c04fd359_.log 2025-06-01T21:50:48.8627969Z Running 0 items in this shard: 2025-06-01T21:50:48.8631386Z 2025-06-01T21:50:48.8631616Z Running dynamo/test_guard_serialization 1/1 ... [2025-06-01 21:50:48.848469] 2025-06-01T21:50:48.8632060Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:50:48.8638569Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_guard_serialization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:50:48.848469] 2025-06-01T21:50:58.5021431Z 2025-06-01T21:50:58.5022634Z dynamo/test_guard_serialization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_guard_serialization_1.1_31f4033ca7ca6b4f_.log 2025-06-01T21:50:58.5023389Z 2025-06-01T21:50:58.5027414Z Running dynamo/test_unittest 1/1 ... [2025-06-01 21:50:58.488629] 2025-06-01T21:50:58.5027830Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:50:58.5034463Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unittest.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:50:58.488629] 2025-06-01T21:51:02.8226717Z 2025-06-01T21:51:02.8227878Z dynamo/test_unittest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unittest_1.1_88da2bd7582802fb_.log 2025-06-01T21:51:02.8228511Z 2025-06-01T21:51:02.8232854Z Running inductor/test_alignment 1/1 ... [2025-06-01 21:51:02.816551] 2025-06-01T21:51:02.8233444Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:02.8240610Z 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-06-01 21:51:02.816551] 2025-06-01T21:51:12.6049067Z 2025-06-01T21:51:12.6050197Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_e43026fa0e67d0f9_.log 2025-06-01T21:51:12.6050874Z 2025-06-01T21:51:12.6055834Z Running inductor/test_compile_subprocess 1/1 ... [2025-06-01 21:51:12.597380] 2025-06-01T21:51:12.6056319Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:12.6062403Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_subprocess.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:51:12.597380] 2025-06-01T21:51:22.4434445Z 2025-06-01T21:51:22.4435401Z inductor/test_compile_subprocess 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_subprocess_1.1_8d0e68dbe352fbce_.log 2025-06-01T21:51:22.4436154Z 2025-06-01T21:51:22.4440928Z Running inductor/test_online_softmax 1/1 ... [2025-06-01 21:51:22.440676] 2025-06-01T21:51:22.4441362Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:22.4447919Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_online_softmax.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:51:22.440676] 2025-06-01T21:51:32.0792398Z 2025-06-01T21:51:32.0793321Z inductor/test_online_softmax 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_online_softmax_1.1_887b7963b73c034f_.log 2025-06-01T21:51:32.0798344Z 2025-06-01T21:51:32.0798591Z Running inductor/test_subgraph_choice 1/1 ... [2025-06-01 21:51:32.065294] 2025-06-01T21:51:32.0799023Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:32.0805693Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_subgraph_choice.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:51:32.065294] 2025-06-01T21:51:41.6144141Z 2025-06-01T21:51:41.6145362Z inductor/test_subgraph_choice 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_subgraph_choice_1.1_14f2b1260375ab05_.log 2025-06-01T21:51:41.6146077Z 2025-06-01T21:51:41.6289302Z Running test_testing 1/1 ... [2025-06-01 21:51:41.627407] 2025-06-01T21:51:41.6289694Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:41.6301160Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_testing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:51:41.627407] 2025-06-01T21:51:41.6598703Z Running test_sparse_semi_structured 1/1 ... [2025-06-01 21:51:41.658630] 2025-06-01T21:51:41.6599152Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:41.6611556Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse_semi_structured.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:51:41.658630] 2025-06-01T21:51:41.6795847Z Running export/test_sparse 1/1 ... [2025-06-01 21:51:41.674271] 2025-06-01T21:51:41.6796291Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:41.6806630Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:51:41.674271] 2025-06-01T21:51:51.9506103Z 2025-06-01T21:51:51.9507267Z test_sparse_semi_structured 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_semi_structured_1.1_8fb577039d78c321_.log 2025-06-01T21:51:51.9526604Z Running 42 items in this shard: test/test_sparse_semi_structured.py::SparseSemiStructuredTensorCompileTest::test_mlp_contiguous_relu_compile_cusparselt, test/test_sparse_semi_structured.py::SparseSemiStructuredTensorCompileTest::test_mlp_contiguous_relu_compile_cutlass, test/test_sparse_semi_structured.py::SparseSemiStructuredTensorCompileTest::test_sp24_compile, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_indices, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_linear, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_min_sparse_shape, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mlp, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_first_NN, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_first_NT, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_first_TN, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_second_NN, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_second_NT, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_to_sparse_semi_structured, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_unsupported_dim, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_unsupported_dtype, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_unsupported_shape, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_values, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_gemm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pack_both_ways_edge_case1, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pack_both_ways_id, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pack_both_ways_meta_correctness, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_prune_dense_static_sort, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pruning_algo_largest_abs_values_greedy, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_apply, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_apply_dense, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_matmuls, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_matmuls_bmm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_matmuls_mat_vec, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_conversions, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_conversions_all_patterns, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_linear_cutlass, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_sparse_semi_structured_ops_cutlass, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_alpha, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_alpha_compile_autotune, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_alpha_mixed_dtype, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_mixed_dtype, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_search, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_csrc_cslt_sparse_mm_search, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cusparselt_backend, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_sparse_fp8fp8_mm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_sparse_semi_structured_scaled_mm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_sparse_semi_structured_scaled_mm_fp8 2025-06-01T21:51:51.9543471Z 2025-06-01T21:51:57.4834744Z Running inductor/test_torchinductor_strided_blocks 1/1 ... [2025-06-01 21:51:57.470521] 2025-06-01T21:51:57.4835511Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:51:57.4841484Z 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-06-01 21:51:57.470521] 2025-06-01T21:52:07.5358368Z 2025-06-01T21:52:07.5359687Z 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_fe431cf2af510630_.log 2025-06-01T21:52:07.5360516Z 2025-06-01T21:52:12.5903780Z Running export/test_retraceability 1/1 ... [2025-06-01 21:52:12.579309] 2025-06-01T21:52:12.5904550Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:52:12.5911484Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_retraceability.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:52:12.579309] 2025-06-01T21:52:22.4926775Z 2025-06-01T21:52:22.4927921Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_46112195235fd9c7_.log 2025-06-01T21:52:22.4928642Z 2025-06-01T21:52:27.2764990Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-06-01 21:52:27.266329] 2025-06-01T21:52:27.2765466Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:52:27.2772240Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:52:27.266329] 2025-06-01T21:52:32.1275395Z 2025-06-01T21:52:32.1276492Z inductor/test_cpp_wrapper_hipify 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpp_wrapper_hipify_1.1_a56cd569184585cd_.log 2025-06-01T21:52:32.1277217Z 2025-06-01T21:52:36.7684616Z Running inductor/test_compiled_autograd 1/1 ... [2025-06-01 21:52:36.765962] 2025-06-01T21:52:36.7685139Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:52:36.7691626Z 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-06-01 21:52:36.765962] 2025-06-01T21:52:37.4457393Z 2025-06-01T21:52:37.4458199Z test_testing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_testing_1.1_2edab46f3ec9990f_.log 2025-06-01T21:52:37.5309310Z Running 2068 items in this shard: test/test_testing.py::TestTestingCPU::test_assertEqual_longMessage_cpu, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_bool, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_complex128, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_complex64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float16, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float32, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int16, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int32, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int8, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_uint8, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_not_stop_common_distributed_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_stop_common_device_type_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_stop_common_utils_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_get_supported_dtypes_cpu, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_bool, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float64, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int16, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int32, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int64, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int8, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_uint8, test/test_testing.py::TestTestingCPU::test_isclose_bool_cpu, test/test_testing.py::TestTestingCPU::test_isclose_complex_cpu_complex128, test/test_testing.py::TestTestingCPU::test_isclose_complex_cpu_complex64, test/test_testing.py::TestTestingCPU::test_isclose_equality_shortcut_cpu, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float64, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int16, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int32, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int64, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int8, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_uint8, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_complex128, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_complex64, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float64, test/test_testing.py::TestTestingCPU::test_setup_and_teardown_run_for_device_specific_tests_cpu, test/test_testing.py::TestTestingCPU::test_supported_dtypes_abs_cpu, test/test_testing.py::TestFrameworkUtils::test_filtering_env_var, test/test_testing.py::TestAssertClose::test_bool, test/test_testing.py::TestAssertClose::test_default_tolerance_selection_mismatching_dtypes, test/test_testing.py::TestAssertClose::test_docstring_examples, test/test_testing.py::TestAssertClose::test_matching, test/test_testing.py::TestAssertClose::test_matching_atol, test/test_testing.py::TestAssertClose::test_matching_conjugate_bit, test/test_testing.py::TestAssertClose::test_matching_nan, test/test_testing.py::TestAssertClose::test_matching_nan_with_equal_nan, test/test_testing.py::TestAssertClose::test_matching_rtol, test/test_testing.py::TestAssertClose::test_meta, test/test_testing.py::TestAssertClose::test_mismatching_dtype, test/test_testing.py::TestAssertClose::test_mismatching_dtype_no_check, test/test_testing.py::TestAssertClose::test_mismatching_layout, test/test_testing.py::TestAssertClose::test_mismatching_layout_no_check, test/test_testing.py::TestAssertClose::test_mismatching_shape, test/test_testing.py::TestAssertClose::test_mismatching_stride, test/test_testing.py::TestAssertClose::test_mismatching_stride_no_check, test/test_testing.py::TestAssertClose::test_mismatching_types, test/test_testing.py::TestAssertClose::test_mismatching_types_subclasses, test/test_testing.py::TestAssertClose::test_mismatching_types_type_equality, test/test_testing.py::TestAssertClose::test_mismatching_values, test/test_testing.py::TestAssertClose::test_mismatching_values_atol, test/test_testing.py::TestAssertClose::test_mismatching_values_rtol, test/test_testing.py::TestAssertClose::test_none, test/test_testing.py::TestAssertClose::test_none_mismatch, test/test_testing.py::TestAssertClose::test_numpy, test/test_testing.py::TestAssertClose::test_only_atol, test/test_testing.py::TestAssertClose::test_only_rtol, test/test_testing.py::TestAssertClose::test_scalar, test/test_testing.py::TestAssertClose::test_unexpected_error_compare, test/test_testing.py::TestAssertClose::test_unexpected_error_originate, test/test_testing.py::TestAssertClose::test_unknown_layout, test/test_testing.py::TestAssertClose::test_unknown_type, test/test_testing.py::TestAssertCloseErrorMessage::test_abs_diff, test/test_testing.py::TestAssertCloseErrorMessage::test_abs_diff_scalar, test/test_testing.py::TestAssertCloseErrorMessage::test_atol, test/test_testing.py::TestAssertCloseErrorMessage::test_identifier_scalars, test/test_testing.py::TestAssertCloseErrorMessage::test_identifier_tensor_likes, test/test_testing.py::TestAssertCloseErrorMessage::test_mismatched_elements, test/test_testing.py::TestAssertCloseErrorMessage::test_msg_callable, test/test_testing.py::TestAssertCloseErrorMessage::test_msg_str, test/test_testing.py::TestAssertCloseErrorMessage::test_not_close, test/test_testing.py::TestAssertCloseErrorMessage::test_not_equal, test/test_testing.py::TestAssertCloseErrorMessage::test_rel_diff, test/test_testing.py::TestAssertCloseErrorMessage::test_rel_diff_scalar, test/test_testing.py::TestAssertCloseErrorMessage::test_rtol, test/test_testing.py::TestAssertCloseErrorMessage::test_small_float_dtype, test/test_testing.py::TestAssertCloseErrorMessage::test_zero_div_zero, test/test_testing.py::TestAssertCloseContainer::test_mapping_mismatching_keys, test/test_testing.py::TestAssertCloseContainer::test_mapping_mismatching_values_msg, test/test_testing.py::TestAssertCloseContainer::test_sequence_mismatching_len, test/test_testing.py::TestAssertCloseContainer::test_sequence_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCOO::test_matching_coalesced, test/test_testing.py::TestAssertCloseSparseCOO::test_matching_uncoalesced, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_indices_msg, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_nnz, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_sparse_dims, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_matching, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_col_indices_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_crow_indices_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_matching, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_ccol_indices_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_row_indices_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_matching, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_col_indices_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_crow_indices_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_matching, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_ccol_indices_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_row_indices_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseQuantized::test_matching_per_channel, test/test_testing.py::TestAssertCloseQuantized::test_matching_per_tensor, test/test_testing.py::TestAssertCloseQuantized::test_mismatching_is_quantized, test/test_testing.py::TestAssertCloseQuantized::test_mismatching_qscheme, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_uint8, test/test_testing.py::TestTestParametrization::test_apply_param_specific_decorators, test/test_testing.py::TestTestParametrization::test_compose_param_specific_decorators, test/test_testing.py::TestTestParametrization::test_default_names, test/test_testing.py::TestTestParametrization::test_modules_decorator_misuse_error, test/test_testing.py::TestTestParametrization::test_multiple_handling_of_same_param_error, test/test_testing.py::TestTestParametrization::test_name_fn, test/test_testing.py::TestTestParametrization::test_ops_decorator_misuse_error, test/test_testing.py::TestTestParametrization::test_reparametrize, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_1, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_2, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_3, test/test_testing.py::TestTestParametrization::test_subtest_names, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_6, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_6, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_6, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_default_name_non_primitive_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_default_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_dtypes_composition_invalid_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_dtypes_composition_valid_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_empty_param_list_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_empty_param_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_modules_composition_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_modules_decorator_applies_module_and_param_specific_decorators_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_multiple_handling_of_same_param_error_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_name_fn_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_ops_composition_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_ops_decorator_applies_op_and_param_specific_decorators_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_param_specific_decoration_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_1_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_2_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_3_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_unparametrized_names_cpu, test/test_testing.py::TestImports::test_circular_dependencies, test/test_testing.py::TestImports::test_lazy_imports_are_lazy, test/test_testing.py::TestImports::test_no_mutate_global_logging_on_import_path_functorch, test/test_testing.py::TestImports::test_no_mutate_global_logging_on_import_path_torch, test/test_testing.py::TestImports::test_no_warning_on_import, test/test_testing.py::TestImports::test_not_import_sympy, test/test_testing.py::TestOpInfos::test_sample_input, test/test_testing.py::TestOpInfos::test_sample_input_metadata, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_T_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___radd___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rand___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rdiv___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rmod___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rmul___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___ror___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rpow___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rsub___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rxor___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators__chunk_cat_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_amax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_amin_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_aminmax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_arange_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_as_strided_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_atan2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bernoulli_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_and_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_left_shift_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_or_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_right_shift_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_xor_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bucketize_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cat_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cauchy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_clamp_max_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_clamp_min_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_complex_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_copysign_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cov_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diag_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diag_embed_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diagonal_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diagonal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diff_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_floor_rounding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_no_rounding_mode_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_trunc_rounding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_empty_permuted_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_eq_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_exponential_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_eye_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fliplr_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_flipud_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_float_power_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_floor_divide_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmin_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmod_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gather_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gcd_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ge_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_geometric_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gradient_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gt_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_heaviside_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_histogramdd_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hypot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_igamma_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_igammac_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_index_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_index_select_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_isclose_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_item_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_jiterator_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_jiterator_binary_return_by_ref_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_kthvalue_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_lcm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ldexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_le_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_cross_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_diagonal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_lstsq_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_lstsq_grad_oriented_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linspace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linspace_tensor_overload_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_log_normal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logaddexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logcumsumexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_and_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_or_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_xor_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logspace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logspace_tensor_overload_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_lt_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_fill_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_select_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_max_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_maximum_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_mean_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_median_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_min_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_minimum_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_movedim_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_mul_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_multinomial_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_narrow_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_narrow_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_native_layer_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ne_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_neg_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nextafter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_embedding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_gaussian_nll_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_gelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_group_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_hardtanh_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_hinge_embedding_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_huber_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_l1_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_margin_ranking_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_multi_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_multilabel_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_poisson_nll_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_prelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_rms_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_rrelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_soft_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_softshrink_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_triplet_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_normal_in_place_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ormqr_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_polar_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_pow_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_remainder_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_renorm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_reshape_as_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_reshape_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_roll_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_rot90_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_rsub_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_scatter_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_bartlett_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_blackman_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_cosine_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_exponential_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_gaussian_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_general_cosine_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_general_hamming_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_hamming_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_hann_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_kaiser_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_nuttall_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_u_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_v_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_w_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_hermite_polynomial_h_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_hermite_polynomial_he_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_laguerre_polynomial_l_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_legendre_polynomial_p_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_u_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_v_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_w_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_xlog1py_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_zeta_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_sub_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_sum_to_size_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_t_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_take_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_trace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_tril_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_triu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_true_divide_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_unbind_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_unbind_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_uniform_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vdot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_as_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_where_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_xlogy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___radd___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rand___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rdiv___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rmod___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___ror___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rpow___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rsub___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rxor___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_abs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_acos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_acosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_addcdiv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_addcmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_angle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_asin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_asinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atan2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bfloat16_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_and_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_left_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_not_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_or_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_right_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_xor_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bool_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_broadcast_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bucketize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_byte_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cdouble_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ceil_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cfloat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_chalf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_char_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_max_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_min_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clone_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_conj_physical_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_contiguous_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_copysign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_deg2rad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diag_embed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diagonal_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_digamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_floor_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_no_rounding_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_trunc_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_double_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_empty_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_eq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erfc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erfinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_exp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_expm1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_flatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_float_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_float_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_floor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_floor_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_frac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_frexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_gcd_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ge_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_gt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_half_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_heaviside_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_hypot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_igamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_igammac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_imag_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_int_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isfinite_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isnan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isneginf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isposinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isreal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_binary_return_by_ref_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_unary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lcm_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ldexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_le_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lgamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log10_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log1p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_and_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_not_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_or_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_xor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_long_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_max_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_maximum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_min_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_minimum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_movedim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nan_to_num_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_narrow_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_narrow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ne_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nextafter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_celu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_elu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_grid_sample_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_group_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardtanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hinge_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_interpolate_bicubic_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_interpolate_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_logsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_margin_ranking_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_mish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_multi_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_multilabel_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_prelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_relu6_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_rrelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_selu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_silu_complex_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_silu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softplus_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softsign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_tanhshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_threshold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_upsample_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_permute_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_permute_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polar_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_4_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_positive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_pow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rad2deg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_real_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reciprocal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_remainder_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reshape_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reshape_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_neg_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rsqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rsub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sgn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_short_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_bartlett_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_blackman_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_gaussian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_general_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_general_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_hann_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_kaiser_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_nuttall_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signbit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sinc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_airy_ai_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_j1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_y0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_y1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_entr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_erfcx_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_hermite_polynomial_h_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_hermite_polynomial_he_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i0e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i1e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_laguerre_polynomial_l_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_legendre_polynomial_p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_log_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_ndtri_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_scaled_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_scaled_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_spherical_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_xlog1py_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_zeta_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_square_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_tan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_tanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_true_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_trunc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_unsafe_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_view_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_view_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_where_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_xlogy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_H_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_T_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___getitem___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___radd___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rand___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rdiv___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmatmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmod___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___ror___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rpow___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rsub___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rxor___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__batch_norm_with_update_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__chunk_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__native_batch_norm_legit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__segment_reduce_lengths_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__segment_reduce_offsets_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__softmax_backward_data_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__unsafe_masked_index_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__unsafe_masked_index_put_accumulate_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__upsample_bilinear2d_aa_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_abs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_acos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_acosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addbmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addcdiv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addcmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmm_decomposed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_alias_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_all_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_allclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_aminmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_angle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_any_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_arange_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argsort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argwhere_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_partial_views_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_asin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_asinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atan2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_baddbmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bernoulli_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bfloat16_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bincount_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_and_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_left_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_not_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_or_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_right_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_xor_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_block_diag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bool_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_shapes_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_to_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bucketize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_byte_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cartesian_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cauchy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cdist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cdouble_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ceil_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cfloat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_chalf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_char_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_inverse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_max_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_min_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clone_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_column_stack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_combinations_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_conj_physical_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_constant_pad_nd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_contiguous_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_copysign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_corrcoef_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_count_nonzero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cov_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cross_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cummax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cummin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumprod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumulative_trapezoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_deg2rad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diag_embed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagflat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diff_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_digamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_floor_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_no_rounding_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_trunc_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_double_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_einsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_permuted_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_eq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_equal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erfc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erfinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expm1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_eye_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fftshift_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifftshift_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flip_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fliplr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flipud_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_float_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_float_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_floor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_floor_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_frac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_frexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_full_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_full_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gather_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gcd_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ge_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_geometric_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_geqrf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gradient_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_grid_sampler_2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_half_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_heaviside_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histogram_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histogramdd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hypot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_igamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_igammac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_imag_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_put_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_inner_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_int_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isfinite_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isnan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isneginf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isposinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isreal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_istft_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_item_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_2inputs_2outputs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_4inputs_with_extra_args_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_binary_return_by_ref_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_unary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_kron_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_kthvalue_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lcm_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ldexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_le_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lerp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lgamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cholesky_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cholesky_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cond_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cross_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_det_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eig_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigvals_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigvalsh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_householder_product_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_inv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_inv_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_factor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_factor_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lstsq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lstsq_grad_oriented_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_factor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_factor_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_rank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_rank_hermitian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_multi_dot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_norm_subgradients_at_zero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_hermitian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_singular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_qr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_slogdet_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_triangular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_svd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_svdvals_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_tensorinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_tensorsolve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vander_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vecdot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vector_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linspace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linspace_tensor_overload_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log10_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log1p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_normal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_softmax_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logaddexp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logcumsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logdet_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_and_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_not_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_or_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_xor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logspace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logspace_tensor_overload_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_long_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_unpack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mH_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mT_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_argmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_argmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_cumprod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_cumsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_log_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_median_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_normalize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_softmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_std_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_var_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_matmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_matrix_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_pool2d_with_indices_backward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_reduction_no_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_reduction_with_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_maximum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_median_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_meshgrid_list_of_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_meshgrid_variadic_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_reduction_no_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_reduction_with_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_minimum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_movedim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_msort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_multinomial_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nan_to_num_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanmean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanmedian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanquantile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nansum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_narrow_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_narrow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_batch_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_dropout_backward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_layer_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ne_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_empty_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_empty_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_full_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_ones_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_zeros_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nextafter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_alpha_dropout_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_batch_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_binary_cross_entropy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_celu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_channel_shuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cosine_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cosine_similarity_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cross_entropy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_ctc_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_elu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_embedding_bag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_embedding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_fractional_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_fractional_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_gaussian_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_gelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_glu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_grid_sample_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_group_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardswish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardtanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hinge_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_huber_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_instance_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_area_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_bicubic_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_linear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_nearest_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_trilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_kl_div_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_l1_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_layer_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_leaky_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_linear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_local_response_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_logsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_margin_ranking_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool1d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool2d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool3d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_mish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_mse_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multi_head_attention_forward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multi_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multilabel_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_normalize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_one_hot_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_circular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_constant_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_reflect_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_replicate_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_replicate_negative_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pairwise_distance_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pdist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pixel_shuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pixel_unshuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_poisson_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_prelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_relu6_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_rms_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_rrelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_selu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_silu_complex_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_silu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_smooth_l1_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_soft_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softmin_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softplus_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softsign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_tanhshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_threshold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_triplet_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_unfold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_upsample_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_upsample_nearest_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nonzero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nonzero_static_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_fro_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_inf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_nuc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_in_place_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_number_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ones_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ones_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ormqr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_outer_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pca_lowrank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_permute_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_permute_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pinverse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polar_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_4_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_positive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_put_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_qr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_quantile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rad2deg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rand_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randint_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randint_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randn_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ravel_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_real_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reciprocal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_remainder_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_renorm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_repeat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_repeat_interleave_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reshape_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reshape_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resize__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resize_as__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resolve_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resolve_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_roll_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rot90_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_neg_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rsqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rsub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scalar_tensor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_searchsorted_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_select_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sgn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_short_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_bartlett_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_blackman_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_gaussian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_general_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_general_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_hann_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_kaiser_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_nuttall_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signbit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sinc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_slice_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_slice_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_softmax_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sparse_mm_reduce_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sparse_sampled_addmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_airy_ai_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_j1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_y0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_y1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_entr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_erfcx_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_hermite_polynomial_h_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_hermite_polynomial_he_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i0e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i1e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_laguerre_polynomial_l_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_legendre_polynomial_p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_log_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_ndtri_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_scaled_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_scaled_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_spherical_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_xlog1py_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_zeta_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_list_args_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_with_sizes_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_with_sizes_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_square_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_multiple_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_stack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_mean_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_stft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sum_to_size_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_svd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_svd_lowrank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_t_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_take_along_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_take_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tensor_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tensordot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_to_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_to_sparse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_topk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_torch__scaled_mm_cpu_float8_e4m3fn, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_transpose_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_transpose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trapezoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trapz_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triangular_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tril_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tril_indices_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triu_indices_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_true_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trunc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unbind_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unbind_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unflatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unfold_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unfold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_uniform_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unique_consecutive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unique_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unravel_index_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsafe_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsafe_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsqueeze_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsqueeze_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_mean_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vdot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_real_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_where_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_xlogy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zero__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zeros_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zeros_like_cpu_float32 2025-06-01T21:52:37.6115688Z 2025-06-01T21:52:42.1786368Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-06-01 21:52:42.172057] 2025-06-01T21:52:42.1786875Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:52:42.1793023Z 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-06-01 21:52:42.172057] 2025-06-01T21:52:46.9418371Z 2025-06-01T21:52:46.9419979Z 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_ea3d087a5ce3f258_.log 2025-06-01T21:52:46.9421120Z 2025-06-01T21:52:49.0419114Z 2025-06-01T21:52:49.0420126Z 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_8d945a324b8408b2_.log 2025-06-01T21:52:49.0420858Z 2025-06-01T21:52:51.6180274Z Running test_transformers 2/4 ... [2025-06-01 21:52:51.609226] 2025-06-01T21:52:51.6180698Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:52:51.6186902Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.py', '-m', 'not serial', '--shard-id=2', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 21:52:51.609226] 2025-06-01T21:52:53.6696666Z Running test_transformers 3/4 ... [2025-06-01 21:52:53.656113] 2025-06-01T21:52:53.6697098Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T21:52:53.6714781Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.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-06-01 21:52:53.656113] 2025-06-01T22:01:31.2677074Z 2025-06-01T22:01:31.2678720Z test_transformers 2/4 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_2.4_a79abfd706af3028_.log 2025-06-01T22:01:31.4042740Z Running 802 items in this shard: test/test_transformers.py::TestTransformersCPU::test_decoder_padding_and_src_mask_bool_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_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_dim_3_key_padding_mask_dim_2_float32_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_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_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_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_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_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_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_8_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_dispatch_fails_no_backend_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_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::TestSDPACPU::test_sdp_math_gradcheck_contiguous_inputs_True_cpu, 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_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_fused_sdp_choice_cpu_type_dense_dropout_0_7_float16_cpu_float16, 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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::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_shape2_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape2_cpu 2025-06-01T22:01:31.5479062Z 2025-06-01T22:01:38.7038900Z Running test_transformers 4/4 ... [2025-06-01 22:01:38.703354] 2025-06-01T22:01:38.7039603Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:01:38.7050682Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers.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-06-01 22:01:38.704579] 2025-06-01T22:02:30.6264211Z 2025-06-01T22:02:30.6266438Z test_transformers 3/4 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_3.4_2f09b9a823878fed_.log 2025-06-01T22:02:30.7417814Z Running 845 items in this shard: 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_mask_check_fastpath_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_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_3D_causal_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_5_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_no_attn_mask_dropout_p_0_2_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_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::TestSDPAFailureModesCPU::test_flash_backward_failure_sm86plus_head_dim_256_dropout_p_0_2_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_inputs_1_dimensional_inputs_kernel1_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_invalid_sequence_lengths_kernel0_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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::TestAttnBiasCPU::test_causal_variants_causal_variant_CausalVariant_LOWER_RIGHT_shape0_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_is_causal_and_mask_fails_cpu, test/test_transformers.py::TestAttnBiasCPU::test_is_causal_equals_upper_left_shape3_cpu 2025-06-01T22:02:30.8765116Z 2025-06-01T22:02:37.8079105Z Running dynamo/test_resume 1/1 ... [2025-06-01 22:02:37.807704] 2025-06-01T22:02:37.8079789Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:02:37.8088228Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_resume.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:02:37.808364] 2025-06-01T22:02:44.3200151Z 2025-06-01T22:02:44.3201323Z dynamo/test_resume 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_resume_1.1_bf19590bda423b49_.log 2025-06-01T22:02:44.3202246Z 2025-06-01T22:02:51.3885185Z Running inductor/test_smoke 1/1 ... [2025-06-01 22:02:51.387875] 2025-06-01T22:02:51.3886091Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:02:51.3898719Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_smoke.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:02:51.389145] 2025-06-01T22:03:07.2556991Z 2025-06-01T22:03:07.2558242Z inductor/test_smoke 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_smoke_1.1_f983eb8504c7624b_.log 2025-06-01T22:03:07.2559239Z 2025-06-01T22:03:14.8308123Z Running dynamo/test_global 1/1 ... [2025-06-01 22:03:14.817875] 2025-06-01T22:03:14.8308973Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:03:14.8318925Z 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-06-01 22:03:14.817875] 2025-06-01T22:03:21.8690340Z 2025-06-01T22:03:21.8692083Z dynamo/test_global 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_global_1.1_49637682cfd31599_.log 2025-06-01T22:03:21.8693281Z 2025-06-01T22:03:28.5418493Z Running inductor/test_provenance_tracing 1/1 ... [2025-06-01 22:03:28.541499] 2025-06-01T22:03:28.5419626Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:03:28.5429266Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_provenance_tracing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:03:28.542531] 2025-06-01T22:03:41.6949086Z 2025-06-01T22:03:41.6950762Z inductor/test_provenance_tracing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_provenance_tracing_1.1_623ad3a150bf5512_.log 2025-06-01T22:03:41.6952174Z 2025-06-01T22:03:47.7051704Z Running inductor/test_ordered_set 1/1 ... [2025-06-01 22:03:47.704808] 2025-06-01T22:03:47.7052392Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:03:47.7061034Z 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-06-01 22:03:47.705385] 2025-06-01T22:03:53.6148504Z 2025-06-01T22:03:53.6149850Z 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_289a9cc3c4062f19_.log 2025-06-01T22:03:53.6150890Z 2025-06-01T22:03:59.7321310Z Running dynamo/test_functions 1/1 ... [2025-06-01 22:03:59.731918] 2025-06-01T22:03:59.7322058Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:03:59.7332703Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_functions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:03:59.733014] 2025-06-01T22:04:12.6109191Z 2025-06-01T22:04:12.6111147Z dynamo/test_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_functions_1.1_f8318e6f7f8fcc59_.log 2025-06-01T22:04:12.6204539Z 2025-06-01T22:04:18.6039429Z Running dynamo/test_interop 1/1 ... [2025-06-01 22:04:18.603592] 2025-06-01T22:04:18.6040044Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:04:18.6048276Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_interop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:04:18.604176] 2025-06-01T22:04:24.2060399Z 2025-06-01T22:04:24.2062031Z dynamo/test_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_interop_1.1_acde40f6d693d15f_.log 2025-06-01T22:04:24.2063059Z 2025-06-01T22:04:29.9943640Z Running inductor/test_memory_planning 1/1 ... [2025-06-01 22:04:29.991681] 2025-06-01T22:04:29.9944359Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:04:29.9953085Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_memory_planning.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:04:29.991681] 2025-06-01T22:04:42.4777394Z 2025-06-01T22:04:42.4778838Z inductor/test_memory_planning 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_memory_planning_1.1_226cdd28fc49b403_.log 2025-06-01T22:04:42.4780190Z 2025-06-01T22:04:48.2214772Z Running dynamo/test_modules 1/1 ... [2025-06-01 22:04:48.221048] 2025-06-01T22:04:48.2215858Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:04:48.2225359Z 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-06-01 22:04:48.221681] 2025-06-01T22:05:00.6173588Z 2025-06-01T22:05:00.6175538Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_2a33cc5f1e75b84a_.log 2025-06-01T22:05:00.6176553Z 2025-06-01T22:05:06.8933793Z Running inductor/test_gpu_cpp_wrapper 1/1 ... [2025-06-01 22:05:06.881548] 2025-06-01T22:05:06.8934484Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:05:06.8943513Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_gpu_cpp_wrapper.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:05:06.881548] 2025-06-01T22:05:17.5139245Z 2025-06-01T22:05:17.5140523Z export/test_sparse 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_1.1_f8da3e832ba882ba_.log 2025-06-01T22:05:17.5243194Z Running 203 items in this shard: test/export/test_sparse.py::TestSparseProp::test_activation_coo, test/export/test_sparse.py::TestSparseProp::test_activation_csr, test/export/test_sparse.py::TestSparseProp::test_add, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCOO, 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_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCSC, 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_float16_int64_SparseCSR, 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_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCSR, 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_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCSR, 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_eltwisenet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseBSR, 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_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseBSC, 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_SparseBSC, 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_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseBSR, 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_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseBSR, 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_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseBSR, 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_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCSC, 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_idnet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCOO, 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_SparseCOO, 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_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCOO, 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_SparseBSC, 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_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseBSC, 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_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseBSC, 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_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseBSR, 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_sumnet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCOO, 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_SparseBSC, 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_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseBSR, 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_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCOO, 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_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCSR, 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_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCSR 2025-06-01T22:05:17.5362906Z 2025-06-01T22:05:21.4409502Z 2025-06-01T22:05:21.4411030Z inductor/test_gpu_cpp_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_gpu_cpp_wrapper_1.1_43affa1e1daebc9b_.log 2025-06-01T22:05:21.4412097Z 2025-06-01T22:05:24.3719368Z Running inductor/test_fp8 1/1 ... [2025-06-01 22:05:24.371359] 2025-06-01T22:05:24.3720059Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:05:24.3729349Z 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-06-01 22:05:24.372561] 2025-06-01T22:05:28.1625203Z Running inductor/test_torchinductor_opinfo 1/1 ... [2025-06-01 22:05:28.162306] 2025-06-01T22:05:28.1625949Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:05:28.1633970Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_opinfo.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:05:28.162403] 2025-06-01T22:05:38.0144181Z 2025-06-01T22:05:38.0145618Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_2019dabbeb103687_.log 2025-06-01T22:05:38.0146653Z 2025-06-01T22:05:43.5997755Z 2025-06-01T22:05:43.5999444Z inductor/test_torchinductor_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_opinfo_1.1_8f46a0c90d16ea54_.log 2025-06-01T22:05:43.6000922Z 2025-06-01T22:05:44.0633688Z Running inductor/test_combo_kernels 1/1 ... [2025-06-01 22:05:44.063085] 2025-06-01T22:05:44.0634433Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:05:44.0642598Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_combo_kernels.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:05:44.063085] 2025-06-01T22:05:49.9099360Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-06-01 22:05:49.909201] 2025-06-01T22:05:49.9100343Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:05:49.9107897Z 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-06-01 22:05:49.909201] 2025-06-01T22:05:56.6697155Z 2025-06-01T22:05:56.6699061Z inductor/test_combo_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_combo_kernels_1.1_b402fd42772c6e2c_.log 2025-06-01T22:05:56.6699804Z 2025-06-01T22:06:02.7070282Z Running functorch/test_ops 2/8 ... [2025-06-01 22:06:02.706773] 2025-06-01T22:06:02.7071811Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:06:02.7080565Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=2', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:06:02.707368] 2025-06-01T22:06:03.3244392Z 2025-06-01T22:06:03.3273295Z 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_14d81c09d56f7beb_.log 2025-06-01T22:06:03.3274741Z 2025-06-01T22:06:09.6453075Z Running functorch/test_ops 3/8 ... [2025-06-01 22:06:09.645029] 2025-06-01T22:06:09.6453565Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:06:09.6462618Z 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-06-01 22:06:09.645629] 2025-06-01T22:09:27.0092735Z 2025-06-01T22:09:27.0094307Z test_transformers 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_4.4_d30871cbafa9c404_.log 2025-06-01T22:09:27.1398244Z Running 773 items in this shard: 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_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_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_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_3D_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_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_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_causal_attn_mask_dropout_p_0_0_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_True_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_src_mask_nhead_1_cpu, test/test_transformers.py::TestTransformersCPU::test_transformerencoderlayer_subclass_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_invalid_fused_inputs_head_dim_kernel0_cpu, test/test_transformers.py::TestSDPAFailureModesCPU::test_mem_eff_attention_fail_with_batch_size_geq_65536_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::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_backend1_seq_len_128_head_dim_32_float16_cpu_float16, 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_float32_cpu_float32, 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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_compile_causal_variant_CausalVariant_UPPER_LEFT_shape0_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 2025-06-01T22:09:27.2653373Z 2025-06-01T22:09:31.9402154Z Running functorch/test_ops 4/8 ... [2025-06-01 22:09:31.939818] 2025-06-01T22:09:31.9403103Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:09:31.9409714Z 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-06-01 22:09:31.940401] 2025-06-01T22:16:30.1533715Z 2025-06-01T22:16:30.1534771Z functorch/test_ops 3/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_3.8_9935d49513dc246a_.log 2025-06-01T22:16:30.2014666Z Running 1280 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_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_gt_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_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_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_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-06-01T22:16:30.2475142Z 2025-06-01T22:16:35.1788842Z Running functorch/test_ops 8/8 ... [2025-06-01 22:16:35.176811] 2025-06-01T22:16:35.1789457Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:16:35.1799789Z 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-06-01 22:16:35.176811] 2025-06-01T22:18:21.5185405Z 2025-06-01T22:18:21.5186264Z functorch/test_ops 2/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_2.8_b812e29dc3fe6306_.log 2025-06-01T22:18:21.5720514Z Running 1292 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_binary_cross_entropy_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_T_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_conj_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_dsplit_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_hsplit_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_split_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_vsplit_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_movedim_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_reshape_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unfold_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_as_complex_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ForwardHasDefaultArgsAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_MulGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeNotComposableAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SelectAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmod___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__segment_reduce_offsets_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__unsafe_masked_index_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_add_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addbmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addcdiv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_arange_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argmin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argwhere_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cfloat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_conj_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_contiguous_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_copysign_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_count_nonzero_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_einsum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_strided_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_as_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flipud_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isinf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_item_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_le_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_det_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eig_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log_normal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_xor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logspace_tensor_overload_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_long_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mH_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_matrix_exp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_pool2d_with_indices_backward_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mul_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nan_to_num_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_narrow_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_batch_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_groups_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardtanh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_layer_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_local_response_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mse_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_prelu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_rrelu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softmin_with_dtype_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softshrink_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nonzero_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_in_place_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ones_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_4_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randint_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_hann_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sinh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_j1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i0e_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_xlog1py_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_multiple_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensor_split_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_to_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trapezoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_true_divide_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vstack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyMulAutogradFunction_cpu_float32 2025-06-01T22:18:21.6232688Z 2025-06-01T22:18:26.9931913Z Running inductor/test_torchinductor 1/1 ... [2025-06-01 22:18:26.992968] 2025-06-01T22:18:26.9932529Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:18:26.9939229Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:18:26.993558] 2025-06-01T22:18:37.5559075Z 2025-06-01T22:18:37.5560101Z inductor/test_torchinductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_1.1_f1cb16d56090f8a8_.log 2025-06-01T22:18:37.5560795Z 2025-06-01T22:18:42.3266890Z Running test_binary_ufuncs 1/1 ... [2025-06-01 22:18:42.326384] 2025-06-01T22:18:42.3267322Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:18:42.3274081Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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-06-01 22:18:42.326978] 2025-06-01T22:19:48.3171944Z 2025-06-01T22:19:48.3172974Z functorch/test_ops 4/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_4.8_54ab4c1f0ca639ba_.log 2025-06-01T22:19:48.3631886Z Running 1208 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_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_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_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_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_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_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-06-01T22:19:48.4065611Z 2025-06-01T22:19:53.1232289Z Running test_native_functions 1/1 ... [2025-06-01 22:19:53.115999] 2025-06-01T22:19:53.1232806Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:19:53.1239131Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_native_functions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:19:53.115999] 2025-06-01T22:19:58.9239191Z 2025-06-01T22:19:58.9240588Z test_native_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_native_functions_1.1_14f98a38388c6c53_.log 2025-06-01T22:19:58.9249492Z Running 11 items in this shard: test/test_native_functions.py::TestNativeFunctions::test_intlist_error_with_overload, test/test_native_functions.py::TestNativeFunctions::test_optional_filled_intlist, test/test_native_functions.py::TestNativeFunctions::test_optional_floatlist, test/test_native_functions.py::TestNativeFunctions::test_optional_floatlist_invalid, test/test_native_functions.py::TestNativeFunctions::test_optional_intlist, test/test_native_functions.py::TestNativeFunctions::test_optional_intlist_invalid, test/test_native_functions.py::TestNativeFunctions::test_string_defaults, test/test_native_functions.py::TestNativeFunctions::test_symintlist_error, test/test_native_functions.py::TestNativeFunctions::test_symintlist_error_with_overload, test/test_native_functions.py::TestNativeFunctions::test_symintlist_error_with_overload_but_is_unique, test/test_native_functions.py::TestNativeFunctions::test_vararg_symintlist_error 2025-06-01T22:19:58.9257103Z 2025-06-01T22:20:04.8851049Z Running inductor/test_foreach 1/1 ... [2025-06-01 22:20:04.884082] 2025-06-01T22:20:04.8851865Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:20:04.8858588Z 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-06-01 22:20:04.884082] 2025-06-01T22:20:18.2605548Z 2025-06-01T22:20:18.2607270Z inductor/test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_foreach_1.1_1aafe4e6d48fd3b8_.log 2025-06-01T22:20:18.2608583Z 2025-06-01T22:20:23.0801667Z Running functorch/test_aotdispatch 1/7 ... [2025-06-01 22:20:23.074328] 2025-06-01T22:20:23.0802196Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:20:23.0808029Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=1', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:20:23.074328] 2025-06-01T22:22:00.5830700Z 2025-06-01T22:22:00.5832250Z test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_binary_ufuncs_1.1_95243db366ecee4e_.log 2025-06-01T22:22:01.2894608Z Running 12862 items in this shard: test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___add___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___and___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___eq___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___floordiv___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ge___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___gt___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iadd___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___iand___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ifloordiv___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ilshift___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imod___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___imul___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ior___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ipow___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___irshift___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___isub___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___itruediv___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ixor___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___le___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lshift___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___lt___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___matmul___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mod___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___mul___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ne___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___or___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___pow___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___radd___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rand___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rfloordiv___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rlshift___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmatmul___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmod___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rmul___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___ror___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rpow___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rrshift___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rshift___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rsub___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rtruediv___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___rxor___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___sub___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___truediv___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test___xor___not_implemented_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_add_broadcast_empty_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_add_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_add_with_tail_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_addcmul_scalars_as_floats_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_addsub_half_tensor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_atan2_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_atan2_edgecases_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_batch_vs_slicing_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_binary_op_mem_overlap_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_binary_op_scalar_device_unspecified_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_binary_ops_with_scalars_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_bitwise_ops_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_bitwise_ops_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_bitwise_ops_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_bitwise_ops_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_bitwise_ops_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_bitwise_ops_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_bool_tensor_comparison_ops_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_broadcasting_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cdiv_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cmul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_bfloat16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex128_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex128_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex128_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex128_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_complex64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_comparison_ops_type_promotion_and_broadcasting_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_div_underflow_overflow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_div_underflow_overflow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_complex_scalar_pow_tensor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_large_dim_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_size1_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_every_other_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_contig_vs_transposed_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bfloat16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_copysign_subgradient_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cpow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cpu_tensor_pow_cuda_scalar_tensor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cremainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cross_device_binary_ops_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cross_device_inplace_error_msg_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_csub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cuda_tensor_pow_scalar_tensor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_cumulative_trapezoid_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_and_floordiv_script_vs_python_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_and_floordiv_vs_python_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_modes_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_nonfinite_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_nonfinite_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_nonfinite_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_nonfinite_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_div_rounding_numpy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_divide_by_zero_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_divide_by_zero_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_divide_by_zero_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_divide_by_zero_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_divmul_scalar_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_bfloat16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex128_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_complex64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_power_exceptions_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_scalar_pow_float_tensor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_float_scalar_pow_float_tensor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_div_extremal_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_div_extremal_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_div_extremal_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_div_extremal_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_scalar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_scalar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_scalar_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_scalar_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_scalar_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_scalar_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_scalar_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_tensor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_tensor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_tensor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_tensor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_tensor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_tensor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_tensor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_zero_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_zero_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_zero_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_zero_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_floor_divide_zero_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_float_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_float_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_float_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_integral_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_integral_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_integral_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_integral_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_by_zero_integral_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_fmod_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_complex_cpu_complex128_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_complex_cpu_complex128_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_complex_cpu_complex64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_complex_cpu_complex64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bfloat16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_heaviside_cross_device_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_idiv_and_ifloordiv_vs_python_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_inplace_division_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_inplace_dunders_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_int_and_float_pow_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_int_tensor_pow_neg_ints_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_ldexp_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_lowp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_lowp_cpu_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_lowp_cpu_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_lowp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_weight_scalar_tensor_promotion_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_weight_scalar_tensor_promotion_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_weight_scalar_tensor_promotion_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_weight_scalar_tensor_promotion_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_weight_tensor_promotion_error_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_weight_tensor_promotion_error_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_lerp_weight_tensor_promotion_error_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bfloat16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex128_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_complex64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_and_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bfloat16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex128_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_complex64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_or_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bfloat16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex128_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_complex64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_logical_xor_with_nontrivial_alignment_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_long_tensor_pow_floats_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_and_minimum_subgradient_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex128_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_complex_cpu_complex64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_cross_device_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_nan_and_inf_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_nan_and_inf_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_nan_and_inf_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_float_nan_and_inf_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_forward_ad_float32_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_int_and_bool_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_int_and_bool_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_int_and_bool_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_int_and_bool_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_int_and_bool_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_int_and_bool_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bfloat16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_maximum_minimum_type_promotion_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_min_max_binary_op_nan_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_min_max_binary_op_nan_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_mul_chalf_tensor_and_cpu_scalar_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_mul_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_mul_intertype_scalar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_mul_intertype_scalar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_muldiv_scalar_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_nextafter_bfloat16_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_expand_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___radd___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rand___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rand___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rand___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rand___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rand___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rand___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rdiv___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmod___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmod___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmod___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rmul___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___ror___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___ror___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___ror___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___ror___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___ror___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___ror___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rpow___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rsub___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rxor___cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rxor___cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rxor___cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rxor___cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rxor___cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index___rxor___cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs__conversions_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs__conversions_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs__conversions_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index__refs_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_atan2_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_left_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_left_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_left_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_left_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_left_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_right_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_right_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_right_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_right_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_right_shift_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_complex_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_complex_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_copysign_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_floor_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_no_rounding_mode_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_div_trunc_rounding_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmax_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmin_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_hypot_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_hypot_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_hypot_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igamma_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igamma_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igamma_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igammac_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igammac_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_igammac_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_index_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ldexp_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logaddexp_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logaddexp_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logaddexp_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logaddexp_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logaddexp_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_mul_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_nextafter_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_nextafter_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_nextafter_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_polar_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_rsub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_h_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_hermite_polynomial_he_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_laguerre_polynomial_l_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_legendre_polynomial_p_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_xlog1py_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_special_zeta_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_true_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_non_contig_xlogy_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable___radd___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable___rdiv___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable___rmod___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable___rmul___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable___rpow___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable___rsub___cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs__conversions_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs__conversions_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable__refs_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_atan2_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_complex_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_copysign_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_div_floor_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_div_no_rounding_mode_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_div_trunc_rounding_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_fmax_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_fmin_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_hypot_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_igamma_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_igammac_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_ldexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_logaddexp_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_mul_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_nextafter_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_polar_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_rsub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_hermite_polynomial_h_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_hermite_polynomial_he_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_laguerre_polynomial_l_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_legendre_polynomial_p_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_xlog1py_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_special_zeta_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_true_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_not_broadcastable_xlogy_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_out_resize_warning_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cuda_complex_extremal_failing_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_cuda_complex_extremal_failing_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_inplace_resizing_exception_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_scalar_base_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_scalar_overloads_mem_overlap_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_pow_scalar_type_promotion_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rdiv_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_extremal_values_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_large_values_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values__refs_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_add_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_bitwise_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_max_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_clamp_min_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_eq_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_float_power_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_floor_divide_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_fmod_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gcd_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gcd_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gcd_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gcd_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ge_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_gt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_heaviside_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_isclose_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_jiterator_binary_return_by_ref_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lcm_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lcm_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lcm_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lcm_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_le_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_and_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_or_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_logical_xor_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_lt_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_max_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_maximum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_min_binary_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_minimum_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_ne_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_pow_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_remainder_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_small_values_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_complex32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_reference_numerics_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_remainder_fmod_large_dividend_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_remainder_fmod_large_dividend_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_remainder_overflow_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_rpow_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support__refs_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_add_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_add_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_add_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_bitwise_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_bitwise_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_bitwise_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_clamp_max_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_clamp_max_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_clamp_min_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_clamp_min_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_eq_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_eq_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_eq_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_float_power_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_float_power_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_float_power_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_floor_divide_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_floor_divide_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_fmod_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_fmod_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_gcd_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_ge_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_ge_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_gt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_gt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_heaviside_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_heaviside_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_isclose_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_isclose_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_isclose_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_jiterator_binary_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_jiterator_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_jiterator_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_jiterator_binary_return_by_ref_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_jiterator_binary_return_by_ref_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_jiterator_binary_return_by_ref_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_lcm_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_le_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_le_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_and_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_and_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_and_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_or_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_or_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_or_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_xor_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_xor_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_logical_xor_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_lt_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_lt_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_max_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_max_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_maximum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_maximum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_min_binary_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_min_binary_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_minimum_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_minimum_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_ne_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_ne_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_ne_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_pow_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_pow_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_pow_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_remainder_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_remainder_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_scalar_support_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_shift_limits_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_shift_limits_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_shift_limits_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_shift_limits_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_shift_limits_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_signed_shift_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_signed_shift_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_signed_shift_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_signed_shift_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_complex128, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_complex64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_cpu_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_sub_typing_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_tensor_pow_tensor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_trapezoid_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_true_divide_out_cpu_bfloat16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_true_divide_out_cpu_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___radd___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___rand___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___rdiv___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___rmod___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___rmul___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___ror___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___rpow___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___rsub___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion___rxor___cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs__conversions_complex_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs__conversions_polar_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_add_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_atan2_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_bitwise_and_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_bitwise_left_shift_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_bitwise_or_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_bitwise_right_shift_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_bitwise_xor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_clamp_max_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_clamp_min_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_copysign_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_div_floor_rounding_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_div_no_rounding_mode_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_div_trunc_rounding_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_eq_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_float_power_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_floor_divide_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_fmax_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_fmin_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_fmod_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_gcd_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_ge_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_gt_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_heaviside_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_hypot_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_igamma_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_igammac_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_isclose_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_lcm_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_le_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_logaddexp_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_logical_and_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_logical_or_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_logical_xor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_lt_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_maximum_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_minimum_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_mul_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_ne_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_nextafter_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_pow_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_remainder_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_rsub_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_special_xlog1py_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_special_zeta_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_sub_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_true_divide_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion__refs_xlogy_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_add_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_atan2_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_bitwise_and_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_bitwise_left_shift_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_bitwise_or_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_bitwise_right_shift_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_bitwise_xor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_clamp_max_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_clamp_min_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_complex_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_copysign_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_div_floor_rounding_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_div_no_rounding_mode_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_div_trunc_rounding_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_eq_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_float_power_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_floor_divide_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_fmax_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_fmin_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_fmod_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_gcd_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_ge_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_gt_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_heaviside_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_hypot_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_igamma_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_igammac_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_isclose_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_jiterator_binary_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_jiterator_binary_return_by_ref_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_lcm_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_ldexp_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_le_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_logaddexp_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_logical_and_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_logical_or_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_logical_xor_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_lt_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_max_binary_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_maximum_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_min_binary_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_minimum_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_mul_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_ne_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_nextafter_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_polar_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_pow_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_remainder_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_rsub_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_chebyshev_polynomial_t_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_chebyshev_polynomial_u_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_chebyshev_polynomial_v_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_chebyshev_polynomial_w_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_hermite_polynomial_h_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_hermite_polynomial_he_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_laguerre_polynomial_l_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_legendre_polynomial_p_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_shifted_chebyshev_polynomial_t_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_shifted_chebyshev_polynomial_u_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_shifted_chebyshev_polynomial_v_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_shifted_chebyshev_polynomial_w_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_xlog1py_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_special_zeta_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_sub_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_true_divide_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_type_promotion_xlogy_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_bfloat16_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_float16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_cpu_uint8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_gradients_cpu_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_xlogy_xlog1py_scalar_type_promotion_cpu, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_bool_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_float64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int16_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int32_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int64_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_int8_uint8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_bool, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_float32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_float64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_int16, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_int32, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_int64, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_int8, test/test_binary_ufuncs.py::TestBinaryUfuncsCPU::test_zeta_cpu_uint8_uint8 2025-06-01T22:22:02.1485192Z 2025-06-01T22:22:06.1279522Z Running functorch/test_aotdispatch 2/7 ... [2025-06-01 22:22:06.127736] 2025-06-01T22:22:06.1280060Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:22:06.1286372Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=2', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:22:06.128319] 2025-06-01T22:23:48.4872072Z 2025-06-01T22:23:48.4873022Z functorch/test_ops 8/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_8.8_3ee849327dbe9d62_.log 2025-06-01T22:23:48.5577806Z Running 1238 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_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-06-01T22:23:48.6288165Z 2025-06-01T22:23:53.5553292Z Running functorch/test_aotdispatch 6/7 ... [2025-06-01 22:23:53.550650] 2025-06-01T22:23:53.5553795Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:23:53.5560521Z 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-06-01 22:23:53.550650] 2025-06-01T22:28:28.5354257Z 2025-06-01T22:28:28.5355262Z functorch/test_aotdispatch 2/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_2.7_b8e24325c887b2d3_.log 2025-06-01T22:28:28.5507688Z Running 287 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_mutation_forward_inputs, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_alias_everything, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_aliases_and_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_requires_grad_no_grad_inference_graph, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_output_view_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_list_codegen, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mutates_input_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_input_multi_output_view_should_raise_autograd_error, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_inplace_view_with_detach, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_saved_tensors_hooks_mutations_raise, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_ban_dropout_mut_pre_dispatch, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_metadata_mutation_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_multiple_outputs_require_grad_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_composite_implicit_linear, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_map_1, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_outdtype, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_with_cond_nested, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_simplified_pytrees_banned, test/functorch/test_aotdispatch.py::TestPartitioning::test_meta_tensor_inplace_op, test/functorch/test_aotdispatch.py::TestPartitioning::test_min_cut_partitioner_save_shape, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_module_simplified_dynamic, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_test_subclasses_with_tensor_factories, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_grads_no_force_contiguous_nested_tensor_tangent, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_base_saved_tensors_hooks_filtering_mode_donated, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_donated_buffers, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_params, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_nnc_jit_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_nnc_passthrough_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_scalar_device_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addcmul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_allclose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_argmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atleast_2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_broadcast_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_clamp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_complex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_count_nonzero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cummin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_dot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_dstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_equal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_erfc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_erfinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_exponential_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_fftshift_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ihfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ihfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_rfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_flex_attention_backward_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_flex_attention_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_flip_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_geometric_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_geqrf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_histc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_hsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_hypot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_igamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_invoke_subgraph_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_cholesky_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_cond_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_cross_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_matrix_power_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log10_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log1p_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logspace_tensor_overload_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logsumexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_argmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_normalize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nanmean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ne_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_new_empty_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_new_zeros_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nextafter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_conv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_ctc_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_gelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hardtanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_relu6_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_rrelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_norm_inf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ones_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polar_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_pow_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_put_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rand_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scan_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_cosine_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_general_hamming_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_i1e_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_modified_bessel_k1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_ndtr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_zeta_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sqrt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_squeeze_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tril_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_trunc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_var_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_vdot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_vsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_zeros_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addbmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_any_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_argmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_as_strided_partial_views_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_asinh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_bfloat16_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_bool_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cauchy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ceil_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_chalf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cholesky_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cond_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_conj_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_digamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_double_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_empty_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_erfinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_expand_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_rfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_full_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_histogramdd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_inner_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_kthvalue_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ldexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_le_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_cross_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_diagonal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_eigh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_ldl_factor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_pinv_hermitian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logical_not_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logspace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_map_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_argmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_cumsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_normalize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_var_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_max_reduction_with_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_msort_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_multinomial_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nanquantile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hardswish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_instance_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_normalize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pad_circular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_threshold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ormqr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_gaussian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_hann_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_slice_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sort_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_bessel_y1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_hermite_polynomial_h_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_log_ndtr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_modified_bessel_i1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_xlog1py_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_to_sparse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_transpose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unfold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_var_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_while_loop_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveMaxPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AvgPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BCELoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BCEWithLogitsLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BatchNorm1d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConstantPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConstantPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConvTranspose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GroupNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Hardtanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LPPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LSTMCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LogSigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MarginRankingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MultiheadAttention_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_RNNCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_SmoothL1Loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerEncoder_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Transformer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveMaxPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AvgPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm2d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Conv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConvTranspose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Embedding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_FractionalMaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm2d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm3d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LPPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LocalResponseNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MaxPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReLU6_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_SiLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softplus_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Threshold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ZeroPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ZeroPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_mutation_forward_inputs, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_buffer_batch_norm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_compilation_context, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dynamic_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_data_and_metadata_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_inplace_requires_grad_true, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_aliases_and_none_require_gradients, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_hidden_from_autograd_aliasing, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_requires_grad_no_grad_inference_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_storage_resize_down, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_inputs_overlapping_unsqueeze_with_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mark_outputs_dynamic_use_autograd_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mem_leak_from_save_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mutates_input_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_inplace_view_with_detach, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_set__not_allowed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_some_output_requires_grad_input_doesnt, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_composite_impl_compile, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_false_aliasing, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_hidden_from_autograd_aliasing, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_output_view_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_return, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_set__input_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_storage_resize_before_set_, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_inputs_overlapping_unsqueeze_with_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_invalid_dupe_fake, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_invalid_dupe_left_bias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_input_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_outputs_are_aliased, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_view_and_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_view_detach 2025-06-01T22:28:28.5652583Z 2025-06-01T22:28:33.4785417Z Running functorch/test_aotdispatch 7/7 ... [2025-06-01 22:28:33.477688] 2025-06-01T22:28:33.4785931Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:28:33.4792384Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=7', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:28:33.477688] 2025-06-01T22:29:26.1651454Z 2025-06-01T22:29:26.1652456Z functorch/test_aotdispatch 1/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_1.7_1064c91acf5e9ac7_.log 2025-06-01T22:29:26.1807296Z Running 289 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_default_partitioner_saves_symints_not_tensors_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_inference_mode, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_hidden_from_autograd_aliasing, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_is_output, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_requires_grad_no_grad_detach_mixed, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_dupe, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mark_outputs_dynamic_use_autograd_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mark_outputs_dynamic_use_autograd_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_module, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nonidempotent_amp, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_and_returned_different_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_inplace_view_and_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_real_weights_in_symbolic_mode, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_view_and_inplace_view, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_input_dupes_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_reshape, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_with_autograd_op, test/functorch/test_aotdispatch.py::TestPartitioning::test_min_cut_partitioner, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_inference, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_input_mutation_and_output_alias, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_output_requires_grad_in_no_grad, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_module_simplified_fake_tensor_gm_raises, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_grads_no_force_contiguous_subclass, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_lift_fresh_copy_in_graph, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_False_test_subclasses_True_device_cpu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_rrelu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_recompile, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_resnet18_backward_trace_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___radd___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rmod___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__chunk_cat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_argmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_block_diag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_broadcast_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cdouble_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ceil_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cholesky_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cholesky_inverse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_clamp_max_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_conj_physical_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cosh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cummax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diff_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_exp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_fftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifftshift_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_irfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_rfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_rfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_float_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_gt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_histogramdd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_hstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_i0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_invoke_quant_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isposinf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_kron_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_eigvalsh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lu_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_pinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_svdvals_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linspace_tensor_overload_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mT_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_map_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_matmul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_minimum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nan_to_num_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nanquantile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_narrow_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_new_ones_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_cross_entropy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hardshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_kl_div_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_normalize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_silu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_unfold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nonzero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nonzero_static_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_norm_fro_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_normal_in_place_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_permute_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randint_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_repeat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_reshape_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_resize__cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_decimals_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rsub_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_slice_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_softmax_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_legendre_polynomial_p_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_with_sizes_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_with_sizes_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_mean_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_stft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sum_to_size_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tensor_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_to_sparse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unbind_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unsafe_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rmod___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rmul___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rsub___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addcdiv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addmv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_arange_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_as_strided_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_block_diag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_broadcast_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_byte_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cholesky_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_column_stack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_complex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_conj_physical_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_constant_pad_nd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_div_floor_rounding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_div_trunc_rounding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_dstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_eq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_exp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_fftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_float_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_geqrf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_i0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isclose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isposinf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_item_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lstsq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lu_factor_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_lu_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_multi_dot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_solve_triangular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_svdvals_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_tensorinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log_softmax_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logaddexp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lu_unpack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_matrix_exp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_full_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hardshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hardtanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_area_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_leaky_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_relu6_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_selu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_unfold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_normal_number_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_outer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_permute_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_pow_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_rand_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_decimals_neg_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_searchsorted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sinc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_bessel_j1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_split_list_args_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_mean_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_take_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unbind_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsqueeze_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_xlogy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AvgPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CosineEmbeddingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CrossEntropyLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GRUCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm3d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LPPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReflectionPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ZeroPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ZeroPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveMaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BCEWithLogitsLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm1d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CircularPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GRU_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Hardtanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LPPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConvTranspose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LogSoftmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_NLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_PReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReplicationPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReplicationPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_TransformerEncoder_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_buffer_copied_in_graph_with_different_shapes, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dupe_arg, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_duplicated_arguments_on_tensor_overlap, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_grad_context, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_metadata_mutation_aliases, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_requires_grad_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_requires_grad_no_grad_detach_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_multi_output_list, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_returned_multiple_times, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_output_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_dict, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_real_weights_in_symbolic_mode_with_inplace_ops, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_set__and_data_mutation_good, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_set__steals_view_chain, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_some_outputs_dont_require_grad_non_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_subclass_metadata_mutation_req_grad_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_custom_tensor_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dupe_arg_torture, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_grad_context, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_alias_everything, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_other_input2, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_storage_resize_up, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_output_view_metadata_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_list_codegen, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mark_outputs_dynamic_use_autograd_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mem_leak_from_save_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nested_subclasses_non_nested_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_op_depending_on_symint, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_set__and_data_mutation_bad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_some_outputs_dont_require_grad_non_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_subclass_metadata_mutation_req_grad_False 2025-06-01T22:29:26.1949412Z 2025-06-01T22:29:30.9797014Z Running inductor/test_autoheuristic 1/1 ... [2025-06-01 22:29:30.975039] 2025-06-01T22:29:30.9797538Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:29:30.9803696Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_autoheuristic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:29:30.975039] 2025-06-01T22:29:40.4327445Z 2025-06-01T22:29:40.4329024Z inductor/test_autoheuristic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_autoheuristic_1.1_814d633c06763f59_.log 2025-06-01T22:29:40.4330154Z 2025-06-01T22:29:45.3245506Z Running inductor/test_config 1/1 ... [2025-06-01 22:29:45.324157] 2025-06-01T22:29:45.3245965Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:29:45.3252986Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:29:45.324742] 2025-06-01T22:29:55.5105765Z 2025-06-01T22:29:55.5107154Z inductor/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_config_1.1_a8675a62aed32118_.log 2025-06-01T22:29:55.5108300Z 2025-06-01T22:30:01.5061868Z Running dynamo/test_fx_passes_pre_grad 1/1 ... [2025-06-01 22:30:01.502774] 2025-06-01T22:30:01.5062671Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:30:01.5069731Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_passes_pre_grad.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:30:01.502774] 2025-06-01T22:30:06.7243727Z 2025-06-01T22:30:06.7245116Z dynamo/test_fx_passes_pre_grad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_passes_pre_grad_1.1_d919574db02e935a_.log 2025-06-01T22:30:06.7246199Z 2025-06-01T22:30:13.4178035Z Running inductor/test_cooperative_reductions 1/1 ... [2025-06-01 22:30:13.417444] 2025-06-01T22:30:13.4178759Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:30:13.4187262Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:30:13.418026] 2025-06-01T22:30:25.2795209Z 2025-06-01T22:30:25.2796450Z inductor/test_cooperative_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cooperative_reductions_1.1_9f757df552e71216_.log 2025-06-01T22:30:25.2797267Z 2025-06-01T22:30:30.4031769Z Running inductor/test_profiler 1/1 ... [2025-06-01 22:30:30.395118] 2025-06-01T22:30:30.4032633Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:30:30.4041462Z 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-06-01 22:30:30.395118] 2025-06-01T22:30:41.0111512Z 2025-06-01T22:30:41.0113065Z inductor/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_profiler_1.1_6d5838394165002a_.log 2025-06-01T22:30:41.0114043Z 2025-06-01T22:30:46.2371725Z Running test_meta 1/5 ... [2025-06-01 22:30:46.236541] 2025-06-01T22:30:46.2372463Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:30:46.2380402Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=1', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:30:46.237819] 2025-06-01T22:35:26.0693255Z 2025-06-01T22:35:26.0694317Z functorch/test_aotdispatch 6/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_6.7_3edaddb5505dee37_.log 2025-06-01T22:35:26.0864112Z Running 326 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_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_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_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-06-01T22:35:26.1022220Z 2025-06-01T22:35:31.8310779Z Running inductor/test_minifier 1/1 ... [2025-06-01 22:35:31.828627] 2025-06-01T22:35:31.8319556Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:35:31.8320848Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:35:31.828627] 2025-06-01T22:35:42.3748109Z 2025-06-01T22:35:42.3749345Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_7bcb0ddcc69d9c37_.log 2025-06-01T22:35:42.3750048Z 2025-06-01T22:35:47.4080946Z Running export/test_schema 1/1 ... [2025-06-01 22:35:47.407753] 2025-06-01T22:35:47.4081587Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:35:47.4087525Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_schema.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:35:47.407753] 2025-06-01T22:35:53.1610978Z 2025-06-01T22:35:53.1611956Z export/test_schema 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_schema_1.1_f80203174e839f0a_.log 2025-06-01T22:35:53.1613703Z Running 4 items in this shard: test/export/test_schema.py::TestSchema::test_schema_check, test/export/test_schema.py::TestSchema::test_schema_compatibility, test/export/test_schema.py::TestSchema::test_schema_diff, test/export/test_schema.py::TestSchema::test_thrift_schema_unchanged 2025-06-01T22:35:53.1614886Z 2025-06-01T22:35:58.0826817Z Running inductor/test_group_batch_fusion 1/1 ... [2025-06-01 22:35:58.081539] 2025-06-01T22:35:58.0827344Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:35:58.0833986Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_group_batch_fusion.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:35:58.081539] 2025-06-01T22:36:08.3485636Z 2025-06-01T22:36:08.3487040Z inductor/test_group_batch_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_group_batch_fusion_1.1_cf7a9f7e77995e03_.log 2025-06-01T22:36:08.3487793Z 2025-06-01T22:36:13.1244682Z Running backends/xeon/test_launch 1/1 ... [2025-06-01 22:36:13.123765] 2025-06-01T22:36:13.1245211Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:36:13.1262563Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'backends/xeon/test_launch.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:36:13.126062] 2025-06-01T22:36:17.5466723Z 2025-06-01T22:36:17.5467725Z backends/xeon/test_launch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/backends.xeon.test_launch_1.1_567f618dbc82a10f_.log 2025-06-01T22:36:17.5471042Z Running 2 items in this shard: test/backends/xeon/test_launch.py::TestTorchrun::test_cpu_info, test/backends/xeon/test_launch.py::TestTorchrun::test_multi_threads 2025-06-01T22:36:17.5471734Z 2025-06-01T22:36:23.2536631Z Running torch_np/numpy_tests/core/test_einsum 1/1 ... [2025-06-01 22:36:23.249981] 2025-06-01T22:36:23.2537384Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:36:23.2545734Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_einsum.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:36:23.254101] 2025-06-01T22:36:44.9811587Z 2025-06-01T22:36:44.9813250Z torch_np/numpy_tests/core/test_einsum 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_einsum_1.1_8ab6baa927669dc5_.log 2025-06-01T22:36:44.9832359Z Running 50 items in this shard: test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_broadcasting_dot_cases, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_collapse, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_combined_views_mapping, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_complex, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_B, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_D, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_F, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_b, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_d, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_e, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_f, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_h, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_i, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_l, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_edge_cases, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_all_contig_non_contig_output, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_broadcast, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_errors, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_failed_on_p9_and_s390x, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_fixed_collapsingbug, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_fixedstridebug, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_misc, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_cfloat128, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_cfloat64, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_float16, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_float32, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_float64, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int16, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int32, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int64, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int8, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_uint8, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_views, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_expand, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_hadamard_like_products, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_index_transformations, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_inner_product, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_out_is_res, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_output_order, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_random_cases, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_small_boolean_arrays, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_subscript_range, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_edge_paths, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_long_paths, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_memory_contraints, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_path_type_input, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_path_type_input_internal_trace, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_path_type_input_invalid, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_spaces, test/torch_np/numpy_tests/core/test_einsum.py::TestMisc::test_overlap 2025-06-01T22:36:44.9849129Z 2025-06-01T22:36:50.0117905Z Running export/test_passes 1/1 ... [2025-06-01 22:36:50.011234] 2025-06-01T22:36:50.0118437Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:36:50.0128749Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_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-06-01 22:36:50.012434] 2025-06-01T22:37:20.9796270Z 2025-06-01T22:37:20.9797446Z export/test_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_passes_1.1_51ae609ae2a75549_.log 2025-06-01T22:37:20.9805804Z Running 25 items in this shard: test/export/test_passes.py::TestPasses::test_constant_folding_pass, test/export/test_passes.py::TestPasses::test_custom_obj_tuple_out, test/export/test_passes.py::TestPasses::test_fakify_script_objects, test/export/test_passes.py::TestPasses::test_fakify_script_objects_properly_handle_containers, test/export/test_passes.py::TestPasses::test_functionalization_with_view_copy, test/export/test_passes.py::TestPasses::test_inline_, test/export/test_passes.py::TestPasses::test_math_ops, test/export/test_passes.py::TestPasses::test_move_to_device_pass, test/export/test_passes.py::TestPasses::test_predispatch_autocast, test/export/test_passes.py::TestPasses::test_predispatch_autocast_and_set_grad, test/export/test_passes.py::TestPasses::test_predispatch_set_grad, test/export/test_passes.py::TestPasses::test_remove_auto_functionalized_pass, test/export/test_passes.py::TestPasses::test_remove_auto_functionalized_pass_tuple, test/export/test_passes.py::TestPasses::test_remove_effect_token_kwargs, test/export/test_passes.py::TestPasses::test_runtime_assert_inline_constraints_for_cond, test/export/test_passes.py::TestPasses::test_runtime_assert_inline_constraints_for_item, test/export/test_passes.py::TestPasses::test_runtime_assert_inline_constraints_for_nonzero, test/export/test_passes.py::TestPasses::test_runtime_assert_multiple_dims, test/export/test_passes.py::TestPasses::test_runtime_assert_one_dim, test/export/test_passes.py::TestPasses::test_runtime_assert_some_dims_not_specified, test/export/test_passes.py::TestPasses::test_runtime_assert_some_inps_not_used, test/export/test_passes.py::TestPasses::test_sequential_split, test/export/test_passes.py::TestPasses::test_sequential_split_graph, test/export/test_passes.py::TestPasses::test_view_to_view_copy, test/export/test_passes.py::TestPasses::test_views_op_having_view_copy 2025-06-01T22:37:20.9813197Z 2025-06-01T22:37:26.0224764Z Running test_openmp 1/1 ... [2025-06-01 22:37:26.011418] 2025-06-01T22:37:26.0225507Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:37:26.0235327Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_openmp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:37:26.011418] 2025-06-01T22:37:35.5508182Z 2025-06-01T22:37:35.5509216Z test_openmp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_openmp_1.1_6921c813c642cea9_.log 2025-06-01T22:37:35.5510691Z Running 2 items in this shard: test/test_openmp.py::TestOpenMP_ParallelFor::test_n_threads, test/test_openmp.py::TestOpenMP_ParallelFor::test_one_thread 2025-06-01T22:37:35.5511359Z 2025-06-01T22:37:40.4924038Z Running test_module_tracker 1/1 ... [2025-06-01 22:37:40.491840] 2025-06-01T22:37:40.4924537Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:37:40.4931864Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_module_tracker.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:37:40.492965] 2025-06-01T22:37:45.6939392Z 2025-06-01T22:37:45.6940966Z test_module_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_module_tracker_1.1_2b5a99034adbff56_.log 2025-06-01T22:37:45.6943858Z Running 3 items in this shard: test/test_module_tracker.py::TestModuleTracker::test_bw_detection, test/test_module_tracker.py::TestModuleTracker::test_confused_hierarchy, test/test_module_tracker.py::TestModuleTracker::test_module_hierarchy 2025-06-01T22:37:45.6945880Z 2025-06-01T22:37:50.5116634Z Running inductor/test_block_analysis 1/1 ... [2025-06-01 22:37:50.510944] 2025-06-01T22:37:50.5117171Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:37:50.5123546Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_block_analysis.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:37:50.510944] 2025-06-01T22:38:01.1765840Z 2025-06-01T22:38:01.1767037Z inductor/test_block_analysis 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_block_analysis_1.1_53b4ea14192d3340_.log 2025-06-01T22:38:01.1772086Z Running 10 items in this shard: test/inductor/test_block_analysis.py::BlockAnalysisTest::test_affine_identity_stride_3_symbol2_expr2, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_affine_identity_stride_4_symbol1_expr1, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_affine_identity_stride_5_symbol0_expr0, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_index_with_dynamic_shapes, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_mod_div_identity_dims0_strides0_symbol0_expr0, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_mod_div_identity_dims1_strides1_symbol1_expr1, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_mod_div_identity_dims2_strides2_symbol2_expr2, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_subexpr_identity_symbol0_expr0_subexpr0, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_subexpr_identity_symbol1_expr1_subexpr1, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_subexpr_identity_symbol2_expr2_subexpr2 2025-06-01T22:38:01.1776544Z 2025-06-01T22:38:06.2119286Z Running export/test_db 1/1 ... [2025-06-01 22:38:06.203273] 2025-06-01T22:38:06.2119743Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:38:06.2125765Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_db.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:38:06.203273] 2025-06-01T22:38:11.1977641Z 2025-06-01T22:38:11.1978798Z export/test_db 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_db_1.1_ac2c26342d4a3bc7_.log 2025-06-01T22:38:11.1994245Z Running 36 items in this shard: test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_dynamic_shape_round, test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_model_attr_mutation, test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_optional_input, test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_unsupported_operator, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_assume_constant_result, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_autograd_function, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_class_method, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_branch_class_method, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_branch_nested_function, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_branch_nonlocal_variables, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_closed_over_variable, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_operands, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_predicate, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_constrain_as_size_example, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_constrain_as_value_example, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_decorator, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dictionary, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_assert, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_constructor, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_if_guard, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_map, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_slicing, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_view, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_fn_with_kwargs, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_list_contains, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_list_unpack, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_nested_function, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_null_context_manager, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_pytree_flatten, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_scalar_output, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_specialized_attribute, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_static_for_loop, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_static_if, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_tensor_setattr, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_type_reflection_method, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_user_input_mutation 2025-06-01T22:38:11.2006836Z 2025-06-01T22:38:16.3253654Z Running dynamo/test_config 1/1 ... [2025-06-01 22:38:16.324885] 2025-06-01T22:38:16.3254198Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:38:16.3260382Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:38:16.325481] 2025-06-01T22:38:21.1322193Z 2025-06-01T22:38:21.1323366Z dynamo/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_config_1.1_c7a4ac48cac1664f_.log 2025-06-01T22:38:21.1324003Z 2025-06-01T22:38:26.0945044Z Running higher_order_ops/test_invoke_quant 1/1 ... [2025-06-01 22:38:26.093886] 2025-06-01T22:38:26.0945787Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:38:26.0952113Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_quant.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:38:26.095008] 2025-06-01T22:38:45.0859242Z 2025-06-01T22:38:45.0860546Z higher_order_ops/test_invoke_quant 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_quant_1.1_6b1cad32e7255664_.log 2025-06-01T22:38:45.0866866Z Running 14 items in this shard: test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_construct_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_multiple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_simple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_construct_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_multiple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_simple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_construct_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_multiple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_pattern_matching, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_prologue, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_simple 2025-06-01T22:38:45.0872224Z 2025-06-01T22:38:50.2586218Z Running test_compile_benchmark_util 1/1 ... [2025-06-01 22:38:50.255427] 2025-06-01T22:38:50.2586768Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:38:50.2593829Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_compile_benchmark_util.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:38:50.258520] 2025-06-01T22:38:55.1763914Z 2025-06-01T22:38:55.1765445Z test_compile_benchmark_util 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_compile_benchmark_util_1.1_70c938c135a48aa5_.log 2025-06-01T22:38:55.1767492Z Running 1 items in this shard: test/test_compile_benchmark_util.py::TestCompileBenchmarkUtil::test_training_and_inference 2025-06-01T22:38:55.1768415Z 2025-06-01T22:39:00.0632261Z Running inductor/test_graph_transform_observer 1/1 ... [2025-06-01 22:39:00.063013] 2025-06-01T22:39:00.0632828Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:39:00.0641941Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_graph_transform_observer.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:39:00.063713] 2025-06-01T22:39:11.2735079Z 2025-06-01T22:39:11.2736731Z inductor/test_graph_transform_observer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_graph_transform_observer_1.1_2278a9964e124370_.log 2025-06-01T22:39:11.2738254Z 2025-06-01T22:39:16.2907765Z Running test_jit 1/1 ... [2025-06-01 22:39:16.276321] 2025-06-01T22:39:16.2908234Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:39:16.2914846Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:39:16.276321] 2025-06-01T22:40:16.0410125Z 2025-06-01T22:40:16.0411824Z test_meta 1/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_1.5_6883ebb3421312d2_.log 2025-06-01T22:40:16.4474020Z Running 8097 items in this shard: test/test_meta.py::TestMetaConverter::test_channels_last_leaf, test/test_meta.py::TestMetaConverter::test_view_of_view_of_leaf, test/test_meta.py::TestMetaCPU::test_batch_norm_backward_output_mask2_cpu, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype___rdiv___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___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_logical_xor_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_copysign_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_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_jiterator_binary_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_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_uint8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_uint8, 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___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_bool, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_bfloat16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_float64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_bfloat16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_complex64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_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_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_uint8, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_float16, 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_int32, 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_int64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_bool, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int32, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_int8, 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_float32, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_int64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_bfloat16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_float32, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_float16, 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_complex64, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_lengths_cpu_float64, 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_int64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int64, 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_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int32, 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_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_int16, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_bool, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int8, 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_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_int8, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int32, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_uint8, 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_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_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_shapes_cpu_float32, 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_int8, 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_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_uint8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_uint8, 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_diagflat_cpu_float64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_float32, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_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_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_uint8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_float16, 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_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_complex64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_complex128, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_float64, 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_float32, 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_int32, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_bool, 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_int32, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_int32, 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_int8, 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_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_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_float32, 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_bool, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_int16, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_int64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int8, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_float32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_float32, 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_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_int8, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_bfloat16, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_int64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_float16, 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_prod_cpu_int32, 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_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_bfloat16, 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_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int16, 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_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_complex64, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_uint8, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_int32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_float32, 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_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_int8, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_ex_cpu_complex128, 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_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_float32, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_cpu_float32, 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_power_cpu_complex128, 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_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_complex64, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_complex128, 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_int64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_float16, 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_float16, 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_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_uint8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_bfloat16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_int32, 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_float32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_int32, 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_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_uint8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logaddexp_cpu_float16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_bfloat16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmin_cpu_float16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_float64, 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_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_int64, 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_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_float32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_int32, 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_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_bool, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_complex128, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_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_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_uint8, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_int64, 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_int8, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_int16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_complex128, 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_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_int64, 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_float16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool3d_cpu_float32, 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_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_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_binary_cross_entropy_cpu_float16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_complex64, 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_float16, 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_conv2d_cpu_int64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_int64, 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_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_float16, 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_bfloat16, 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_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_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_cpu_bfloat16, 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_int8, 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_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gelu_cpu_bfloat16, 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_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_group_norm_cpu_bfloat16, 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_float64, 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_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_float32, 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_uint8, 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_nearest_cpu_float64, 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_l1_loss_cpu_complex64, 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_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_float64, 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_unpool3d_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_mse_loss_cpu_float64, 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_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_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_float32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_int64, 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_complex128, 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_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_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_pad_replicate_negative_cpu_uint8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_int8, 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_int32, 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_poisson_nll_loss_cpu_uint8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_smooth_l1_loss_cpu_float64, 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_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_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_float16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_float32, 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_complex64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_complex64, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_cpu_float32, 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_float16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_bfloat16, 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_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_bfloat16, 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_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_float16, 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_int16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_float32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_uint8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_float64, 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_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_int8, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_float32, 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_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_float64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_bool, 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_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_amin_cpu_float16, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_int64, 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_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_int32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_complex64, 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_int64, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_cosine_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_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_mm_reduce_cpu_float32, 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_bool, 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_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int32, 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_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_float32, 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_entr_cpu_uint8, 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_int16, 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_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_uint8, 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_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_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_int8, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int64, 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_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_float32, 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_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int8, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int32, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_int32, 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_complex32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_float16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_complex128, 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_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_bool, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_complex128, 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_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_float64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_bfloat16, 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_float16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_uint8, 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___rmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int32, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_int32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_int64, 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_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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_complex128, 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_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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_float16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_float64, 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_float32, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_int64, 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_complex64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_complex64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_bfloat16, 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_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_complex128, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_float32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_float16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_float16, 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_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_int16, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_complex128, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_int8, 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_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_bool, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_float16, 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_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_int16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_int16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_int16, 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_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_float64, 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_bool, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_shapes_cpu_float32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_int16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_float64, 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_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_int8, 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_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_float32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_int8, 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_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_complex64, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_float32, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_float16, 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_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_int16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_int16, 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_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_int32, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_int64, 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_complex64, 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_float64, 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_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_int16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_float64, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_float32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_int32, 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_int16, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_bool, 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_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_float64, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_int64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_float64, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_complex128, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_bool, 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_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_uint8, 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_float16, 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_mean_cpu_float16, 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_prod_cpu_float64, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_uint8, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_complex128, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_cpu_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_solve_cpu_complex64, 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_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_float32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_ex_cpu_complex64, 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_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_hermitian_cpu_float64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_complex64, 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_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_ex_cpu_float64, 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_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_float64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_float32, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_uint8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_float32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int64, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_float64, 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_complex64, 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_float32, 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_norm_cpu_bfloat16, 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_complex64, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_uint8, 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_int64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_float16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_bool, 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_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_float16, 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_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_multinomial_cpu_bfloat16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_float16, 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_new_empty_cpu_bool, 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_int32, 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_complex64, 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_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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_int8, 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_avg_pool3d_cpu_float32, 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_uint8, 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_binary_cross_entropy_with_logits_cpu_float64, 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_float64, 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_channel_shuffle_cpu_int32, 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_complex64, 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_bfloat16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_float32, 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_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_bfloat16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, 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_gaussian_nll_loss_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_glu_cpu_bfloat16, 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_bfloat16, 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_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardswish_cpu_float32, 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_hinge_embedding_loss_cpu_float16, 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_bfloat16, 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_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_bfloat16, 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-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_float64, 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_kl_div_cpu_float32, 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_l1_loss_cpu_complex128, 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_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_bfloat16, 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_linear_cpu_uint8, 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_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_float32, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float64, 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_mse_loss_cpu_float16, 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_float16, 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_float32, 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_pad_circular_cpu_float16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_float32, 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_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_int16, 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_pad_replicate_negative_cpu_int8, 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_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_float64, 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_smooth_l1_loss_cpu_float16, 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_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_float16, 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_uint8, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_int32, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_float32, 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_int64, 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_float16, 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_unfold_cpu_bool, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_float16, 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_static_cpu_bfloat16, 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_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_float32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_bfloat16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_uint8, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_bfloat16, 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_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_bool, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_int16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_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_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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_int64, 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_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int8, 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_int32, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_bfloat16, 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_neg_3_cpu_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_uint8, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_float64, 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_int64, 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_int32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_int8, 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_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_float64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_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_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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_float64, 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_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_float16, 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_uint8, 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_h_cpu_int64, 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_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_bfloat16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_bool, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_bool, 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_k0_cpu_bool, 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_modified_bessel_k0_cpu_int16, 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_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_uint8, 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_int32, 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_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int16, 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_bool, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_complex128, 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_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_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_complex128, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_complex64, 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_bfloat16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_cpu_float32, 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_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_float32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_int64, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_float32, 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_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int64, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_float16, 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_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_int8, 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_complex64, 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_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_int8, 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_int16, 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_float16, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_float32, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_float64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___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_float32, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_bfloat16, 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_int64, 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_asin_cpu_bool, 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_float64, 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_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_int16, 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_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_int16, 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_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_bfloat16, 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_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_int16, 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_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_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_bool, 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_lerp_cpu_bool, 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_lgamma_cpu_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_float32, 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_log2_cpu_int32, 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_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_bfloat16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_complex64, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_uint8, 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_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_complex128, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_int8, 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_float32, 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_sign_cpu_uint8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_float16, 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_tan_cpu_complex128, 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_complex64, 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_zero_cpu_int64, 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__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_offsets_cpu_bfloat16, 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__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int16, 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_int8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_complex128, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_float64, 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_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_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_uint8, 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___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_asin_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_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sin_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_offsets_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_addcmul_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_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_amin_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_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_and_cpu_int64, 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_or_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_cdist_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_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_corrcoef_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_diagonal_copy_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_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_hfft2_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_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_rfft2_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_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_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_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_diagonal_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_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_ldl_factor_ex_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_factor_ex_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_pinv_hermitian_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_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linspace_tensor_overload_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_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_std_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_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_msort_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_mvlgamma_mvlgamma_p_5_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_new_full_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_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_batch_norm_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_celu_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_transpose1d_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_dropout2d_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_fractional_max_pool2d_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_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_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_pool3d_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_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_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pdist_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_softmin_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_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randn_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_repeat_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_resize__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_scatter_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_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_general_cosine_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_nuttall_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_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_bessel_j1_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_modified_bessel_k1_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_scaled_modified_bessel_k0_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_special_spherical_bessel_j0_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_squeeze_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_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_take_along_dim_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_tile_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_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unsqueeze_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_amax_cpu_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_complex64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int16, 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_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_int16, 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_float32, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_int64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_complex128, 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_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_bool, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_bool, 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_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int32, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_bool, 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_bitwise_xor_cpu_int64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int64, 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_float16, 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_int8, 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_uint8, 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_bucketize_cpu_float16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_bool, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_int8, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_float16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_float64, 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_bfloat16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_uint8, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_float64, 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_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_complex32, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_complex_cpu_float64, 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_int8, 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_conj_physical_cpu_float32, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_int64, 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_int32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_int16, 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_float32, 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_complex64, 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_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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_float64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_float64, 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_int8, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int8, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int32, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_float32, 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_complex128, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_int64, 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_complex64, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_complex32, 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_float64, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_bfloat16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_complex32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_bool, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int32, 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_complex64, 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_bfloat16, 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_float16, 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_int32, 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_complex64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_complex128, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_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_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_int64, 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_copy_cpu_uint8, 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_int16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_float16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float32, 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_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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_int8, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int16, 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_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_complex64, 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_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_float32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_bool, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_float16, 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_int16, 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_bool, 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_bool, 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_float64, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_int32, 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_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frexp_cpu_float16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_complex64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int16, 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_int16, 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_bfloat16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hypot_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_igamma_cpu_float16, 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_add_cpu_int8, 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_copy_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_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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_float32, 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_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_float64, 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_complex64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_int16, 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_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_complex128, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_complex32, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_float32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_int32, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_float32, 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_uint8, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_float64, 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_ldexp_cpu_bool, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_int64, 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_complex128, 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_float32, 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_det_cpu_complex128, 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_int64, 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_eig_cpu_float64, 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_eigvals_cpu_float32, 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_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_householder_product_cpu_float64, 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_factor_ex_cpu_complex64, 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_factor_ex_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_lu_factor_cpu_complex128, 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_solve_cpu_complex128, 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_matrix_norm_cpu_float64, 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_complex128, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex128, 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_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float64, 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_singular_cpu_float64, 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_solve_cpu_complex64, 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_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_int32, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_complex64, 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_bfloat16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_bool, 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_float16, 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_complex64, 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_float64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_float64, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_float32, 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_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_complex128, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_float32, 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_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_int32, 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_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int16, 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_int16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_float16, 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_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_mean_cpu_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_float16, 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_norm_cpu_float32, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_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_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_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_uint8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_complex128, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_pool2d_with_indices_backward_cpu_bfloat16, 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_max_reduction_with_dim_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_meshgrid_list_of_tensors_cpu_complex128, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_uint8, 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_no_dim_cpu_int64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int32, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_complex64, 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_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int32, 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_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_int16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_batch_norm_cpu_bfloat16, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_bool, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_uint8, 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_float16, 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_uint8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float64, 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_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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool1d_cpu_float64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_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_binary_cross_entropy_cpu_float16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, 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_float16, 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_conv2d_cpu_bfloat16, 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_conv3d_cpu_float32, 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_float64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_int64, 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_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout2d_cpu_float64, 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_float32, 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_float32, 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_bfloat16, 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_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int8, 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_huber_loss_cpu_float16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest_cpu_bfloat16, 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_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_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_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_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float64, 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_margin_loss_cpu_float32, 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_normalize_cpu_complex64, 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_constant_cpu_complex128, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_complex128, 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_int64, 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_int8, 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_int16, 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_pixel_unshuffle_cpu_uint8, 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_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_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_prelu_cpu_float32, 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_int8, 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_bfloat16, 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_bfloat16, 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_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_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_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_uint8, 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_softplus_cpu_float64, 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_complex128, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_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_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_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_float64, 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_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_cpu_float64, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_bool, 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_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_bfloat16, 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_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_complex128, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_float32, 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_int8, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_float16, 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_like_cpu_float16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_int8, 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_complex128, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_float32, 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_float64, 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_complex64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_bfloat16, 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_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_float16, 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_int16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_float32, 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_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_uint8, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_neg_3_cpu_float32, 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_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_int16, 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_float64, 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_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_int16, 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_select_cpu_int16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_bool, 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_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_bartlett_cpu_float32, 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_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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_complex128, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_int16, 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_complex128, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_complex128, 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_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_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_sampled_addmm_cpu_complex64, 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_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_float32, 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_float32, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int64, 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_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_float64, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_int32, 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_h_cpu_int8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_int16, 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_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_int16, 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_i1_cpu_uint8, 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_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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_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_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_bool, 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_uint8, 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_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_uint8, 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_u_cpu_int64, 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_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, 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_int32, 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_shifted_chebyshev_polynomial_w_cpu_int8, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_int16, 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_with_sizes_copy_cpu_bool, 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_float64, 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_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_complex32, 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_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_bfloat16, 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_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_bool, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_bfloat16, 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_float64, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_int32, 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_float16, 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_complex64, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int64, 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_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_t_copy_cpu_int64, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_bfloat16, 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_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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_float16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_int64, 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_ops_aten__safe_softmax_default_cpu_float64, 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_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_bool, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_int8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_bool, 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_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_float64, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_int8, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int32, 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_cpu_int8, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_bfloat16, 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_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_complex32, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_int8, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_bfloat16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_int16, 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_complex64, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_complex64, 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_int32, 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_int8, 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_complex128, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_float64, 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_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_int32, 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_float64, 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_complex128, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_float64, 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_complex64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_complex64, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_float64, 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_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_bool, 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_int8, 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_int64, 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_expm1_cpu_int64, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_uint8, 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_lgamma_cpu_bfloat16, 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_log10_cpu_bfloat16, 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_log1p_cpu_int32, 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_log2_cpu_int16, 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_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_uint8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_float16, 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_minimum_cpu_int32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_float32, 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_reciprocal_cpu_complex64, 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_rsqrt_cpu_bfloat16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_float16, 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_complex128, 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_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int64, 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_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int64, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_float32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_int32, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_bfloat16, 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__softmax_backward_data_cpu_float64, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_int8, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_int32, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_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_addcdiv_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_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_int64, 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_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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_complex128, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_int32, 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_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_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_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_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_pow_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_put_accumulate_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_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_block_diag_cpu_float32, 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_bucketize_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_ceil_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_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_contiguous_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_cummin_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_div_trunc_rounding_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_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_fft_fftshift_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_ifftn_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_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_rfft2_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_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_floor_divide_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_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isneginf_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_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_cholesky_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_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_eigvals_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_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_solve_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_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_vector_norm_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_logical_xor_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_masked_amax_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_prod_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_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_native_layer_norm_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_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_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_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_ctc_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_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_glu_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_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_nearest_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_layer_norm_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_pool1d_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_unpool1d_grad_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_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_silu_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_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ormqr_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_polygamma_polygamma_n_0_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_rad2deg_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_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_gaussian_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_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_ndtri_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_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_trace_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_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_bool, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_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_float32, 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_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_float16, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_complex128, 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_complex128, 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_float32, 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_copy_cpu_int8, 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_int32, 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_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_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_uint8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int8, 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_float16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int8, 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_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_left_shift_cpu_int16, 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_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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_complex32, 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_uint8, 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_bfloat16, 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_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int8, 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_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_int32, 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_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_float32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_int16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_float16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int8, 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_complex64, 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_float32, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_uint8, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex64, 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_int64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_complex64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_int8, 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_complex128, 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_float64, 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_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_int32, 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_float64, 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_complex64, 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_int32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_int8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_uint8, 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_int64, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_float16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_bfloat16, 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_int8, 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_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_float16, 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_complex128, 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_trunc_rounding_cpu_bfloat16, 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_double_cpu_bool, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_int64, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_int8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_int32, 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_float16, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_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_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_complex128, 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_fft2_cpu_uint8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_float32, 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_hfft_cpu_bool, 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_ifft_cpu_bool, 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_ifftn_cpu_int64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int64, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_int16, 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_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_int16, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_int32, 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_bool, 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_complex128, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_float16, 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_complex64, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_complex128, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_bfloat16, 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_bfloat16, 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_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_int16, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_complex32, 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_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_float64, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_bfloat16, 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_complex128, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_complex32, 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_bfloat16, 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_mean_cpu_float16, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_int32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_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_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_bfloat16, 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_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_int64, 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_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_unary_cpu_float32, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_uint8, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int64, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int8, 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_complex64, 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_complex128, 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_cross_cpu_float16, 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_det_cpu_complex128, 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_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_float32, 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_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_ex_cpu_float32, 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_float32, 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_rank_cpu_complex64, 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_multi_dot_cpu_float16, 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_float16, 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_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_slogdet_cpu_float32, 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_triangular_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_svd_cpu_complex64, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_float32, 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_bool, 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_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_or_cpu_bfloat16, 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_bool, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_uint8, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_int16, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_complex32, 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_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_float32, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_int64, 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_bfloat16, 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_float64, 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_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_cumsum_cpu_bfloat16, 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_fill_cpu_complex64, 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_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_complex128, 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_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_int16, 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_complex128, 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_float32, 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_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int8, 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_pool2d_with_indices_backward_cpu_bfloat16, 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_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_int64, 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_complex64, 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_variadic_tensors_cpu_bfloat16, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_bool, 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_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_float64, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_bool, 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_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int8, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_bfloat16, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_float16, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_bfloat16, 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_int8, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_float32, 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_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_bfloat16, 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_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_int16, 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_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_uint8, 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_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_bfloat16, 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_conv3d_cpu_complex64, 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_float64, 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_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float16, 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_cosine_similarity_cpu_bfloat16, 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_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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_glu_cpu_float16, 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_group_norm_cpu_bfloat16, 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_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_instance_norm_cpu_float16, 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_bfloat16, 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_linear_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_interpolate_nearest_cpu_float32, 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_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_float16, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_int64, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float64, 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_cpu_float64, 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_mish_cpu_bfloat16, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_bfloat16, 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_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_int16, 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_complex64, 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_int8, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_bool, 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_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_complex64, 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_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_complex_cpu_complex128, 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_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_with_dtype_cpu_float32, 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_softsign_cpu_complex128, 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_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_float64, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex128, 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_with_distance_loss_cpu_int16, 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_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_float32, 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_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_float64, 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_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_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_complex32, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int32, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_int8, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_uint8, 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_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_uint8, 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_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_complex64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_complex64, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_complex128, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_complex128, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_float64, 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_complex64, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_float16, 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_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_complex64, 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_int16, 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_uint8, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_float16, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_int64, 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_float64, 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_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int16, 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_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_float16, 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_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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_uint8, 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_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_int16, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int8, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_bool, 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_u_cpu_uint8, 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_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_int8, 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_float64, 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_hermite_polynomial_h_cpu_float64, 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_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_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_float32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_int16, 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_float32, 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_i1_cpu_int32, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_int64, 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_float32, 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_int64, 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_scaled_modified_bessel_k1_cpu_int32, 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_int8, 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_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_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_spherical_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_float64, 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_int8, 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_uint8, 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_list_args_cpu_int64, 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_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_bool, 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_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_copy_cpu_float32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_int32, 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_bfloat16, 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_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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_complex128, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_complex64, 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_float32, 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_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_float16, 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_copy_cpu_uint8, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_complex64, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int16, 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_int64, 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_bfloat16, 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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_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_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_float16, 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_trace_cpu_float32, 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_bfloat16, 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_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_bool, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_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_int16, 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_complex32, 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_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int32, 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_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int8, 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_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_int8, 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_complex64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int32, 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_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_int16, 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_uint8, 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_complex128, 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_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int32, 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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int32, 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_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_int8, 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_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_complex64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_float16, 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_dense_backward_mode_1_cpu, test/test_meta.py::TestMetaCPU::test_embedding_bag_dense_backward_mode_2_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_mask2_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask5_cpu, test/test_meta.py::TestMetaCPU::test_local_scalar_dense_call_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_bfloat16, 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_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int64, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_uint8, 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_int16, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_float64, 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_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int16, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_float32, 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_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int32, 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_float16, 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_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_int64, 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_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_complex64, 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_float64, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_int8, 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_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_float64, 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_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int64, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_bfloat16, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_float32, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_bfloat16, 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_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_float32, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_uint8, 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_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_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_int8, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_bool, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_int32, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_float64, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_bool, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_uint8, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int16, 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_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_bfloat16, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_bool, 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_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_istft_cpu_complex128, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_int32, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_bfloat16, 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_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigh_cpu_float64, 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_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_complex64, 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_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_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_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_int64, 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_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_bfloat16, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_float64, 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_int8, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_bfloat16, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_int32, 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_float16, 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_int64, 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_int32, 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_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_uint8, 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_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int8, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int64, 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_float32, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float32, 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_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float16, 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_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_float32, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_float32, 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_bfloat16, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, 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_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_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_bfloat16, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_linear_cpu_float32, 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_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_uint8, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_layer_norm_cpu_float16, 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_uint8, 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_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_uint8, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, 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_float32, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_nll_loss_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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_uint8, 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_reflect_cpu_int8, 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_int32, 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_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int64, 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_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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_prelu_cpu_float64, 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_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_uint8, 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_silu_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_with_dtype_cpu_int8, 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_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_complex64, 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_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_bfloat16, 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_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_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_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_int32, 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_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_complex64, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_int16, 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_float32, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_int32, 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_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_bfloat16, 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_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_int8, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_uint8, 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_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_int32, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_complex32, 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_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int64, 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_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_float16, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_uint8, 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_float64, 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_j1_cpu_float32, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_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_int64, 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_v_cpu_float64, 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_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_bool, 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_float32, 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_h_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_int64, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_uint8, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_bool, 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_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_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int32, 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_u_cpu_int16, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_int16, 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_float16, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int8, 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_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_int8, 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_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_int8, 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_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e5m2fnuz, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_float16, 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_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_int32, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_complex64, 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___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_int8, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_uint8, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_int16, 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_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_float16, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_int8, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_complex64, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_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_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int8, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int8, 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_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int8, 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_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_bool, 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_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_float16, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int32, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_float32, 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_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int8, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_float64, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_int64, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int8, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_complex32, 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_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int16, 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_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_uint8, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_bool, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_float32, 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_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_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_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_float16, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_int32, 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_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int16, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_float64, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_float32, 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_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_cpu_bfloat16, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_float32, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_int64, 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_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_float64, 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_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int8, 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_bfloat16, 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_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_uint8, 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_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_int8, 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_3_cpu_bfloat16, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_float16, 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_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_bool, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_uint8, 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_pool3d_cpu_float64, 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_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_bfloat16, 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_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_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_float64, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_int64, 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_float16, 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_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float16, 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_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout2d_cpu_float32, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_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_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_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_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bicubic_cpu_float16, 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_nearest-exact_cpu_float32, 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_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_float64, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_bfloat16, 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_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float32, 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_unpool2d_grad_cpu_bfloat16, 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_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_complex128, 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_complex128, 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_int8, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_int64, 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_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pdist_cpu_float64, 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_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_int8, 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_bool, 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_poisson_nll_loss_cpu_float32, 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_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_selu_cpu_float64, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_complex128, 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_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_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_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_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_nuc_cpu_float64, 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_float32, 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_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_complex128, 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_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_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_uint8, 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_bfloat16, 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_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_int32, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_bfloat16, 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_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_bfloat16, 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_int8, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_complex64, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_uint8, 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_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_uint8, 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_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int64, 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_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_int32, 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_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_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_uint8, 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_i1_cpu_int16, 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_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_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_int8, 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_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_int32, 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_k1_cpu_int32, 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_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_int8, 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_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_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_float16, 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_cpu_bfloat16, 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_take_along_dim_cpu_bfloat16, 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_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_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_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int16, 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_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_int32, 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_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_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_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_int32, 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_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_complex64, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_stride_for_index_Tensor_cpu 2025-06-01T22:40:16.7187128Z 2025-06-01T22:40:21.2440989Z Running inductor/test_torchinductor_codegen_dynamic_shapes 1/1 ... [2025-06-01 22:40:21.242070] 2025-06-01T22:40:21.2441615Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:40:21.2448169Z 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-06-01 22:40:21.242070] 2025-06-01T22:40:32.2148208Z 2025-06-01T22:40:32.2150531Z 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_d9a08682b6694061_.log 2025-06-01T22:40:32.2152162Z 2025-06-01T22:40:37.1120709Z Running inductor/test_torchinductor_dynamic_shapes 1/1 ... [2025-06-01 22:40:37.101812] 2025-06-01T22:40:37.1121941Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:40:37.1127546Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_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-06-01 22:40:37.101812] 2025-06-01T22:40:47.7436535Z 2025-06-01T22:40:47.7437620Z inductor/test_torchinductor_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_dynamic_shapes_1.1_1bbc60f6c2933948_.log 2025-06-01T22:40:47.7438458Z 2025-06-01T22:40:52.8178877Z Running test_fx_passes 1/1 ... [2025-06-01 22:40:52.817641] 2025-06-01T22:40:52.8179367Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:40:52.8185359Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_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-06-01 22:40:52.818228] 2025-06-01T22:40:58.6386301Z 2025-06-01T22:40:58.6387295Z test_fx_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_passes_1.1_0582a647f9938df6_.log 2025-06-01T22:40:58.6408095Z Running 53 items in this shard: test/test_fx_passes.py::TestFXGraphPasses::test_fuser_pass_deep_model, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition0, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition1, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition10, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition11, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition2, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition3, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition4, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition5, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition6, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition7, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition8, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition9, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition0, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition1, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition2, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition3, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn0_expected_partition0_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn10_expected_partition10_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn11_expected_partition11_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn12_expected_partition12_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn13_expected_partition13_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn14_expected_partition14_bookend_non_compute_pass_True, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn15_expected_partition15_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn16_expected_partition16_bookend_non_compute_pass_True, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn17_expected_partition17_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn18_expected_partition18_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn1_expected_partition1_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn2_expected_partition2_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn3_expected_partition3_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn4_expected_partition4_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn5_expected_partition5_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn6_expected_partition6_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn7_expected_partition7_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn8_expected_partition8_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn9_expected_partition9_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_independent_output_fn0_expected_partition0, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model0, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model1, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model10, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model11, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model12, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model13, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model14, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model15, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model2, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model3, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model4, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model5, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model6, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model7, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model8, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model9 2025-06-01T22:41:03.4148749Z 2025-06-01T22:41:03.4149398Z Running test_legacy_vmap 1/1 ... [2025-06-01 22:41:03.414724] 2025-06-01T22:41:03.4149929Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:03.4156763Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_legacy_vmap.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:41:03.415498] 2025-06-01T22:41:11.5818118Z 2025-06-01T22:41:11.5819540Z test_legacy_vmap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_legacy_vmap_1.1_10f3725ce4b0912a_.log 2025-06-01T22:41:11.5885152Z Running 124 items in this shard: test/test_legacy_vmap.py::TestVmapAPILegacy::test_accepts_nested_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_backward_unsupported_interaction, test/test_legacy_vmap.py::TestVmapAPILegacy::test_batched_gradient_basic, test/test_legacy_vmap.py::TestVmapAPILegacy::test_constant_function, test/test_legacy_vmap.py::TestVmapAPILegacy::test_different_map_dim_size_raises, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_atan2, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_does_not_warn_by_default, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_masked_fill, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_multiple_returns, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_warns_when_warnings_are_enabled, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_with_undefined_grad, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_zero_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_func_with_no_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_functools_partial, test/test_legacy_vmap.py::TestVmapAPILegacy::test_grad_unsupported_interaction, test/test_legacy_vmap.py::TestVmapAPILegacy::test_in_dim_not_in_tensor_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_in_dims_wrong_type_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_nary_different_levels, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_nary_same_levels, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_unary, test/test_legacy_vmap.py::TestVmapAPILegacy::test_integer_in_dim_but_not_tensor_input_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_outputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_outputs_error_cases, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_non_default_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_with_different_map_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_with_same_map_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nn_module, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_default_in_dims_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_tensor_output_raises, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_zero_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_none_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nonzero_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_noop_in_inner_vmap, test/test_legacy_vmap.py::TestVmapAPILegacy::test_not_enough_in_dims_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dim_out_of_bounds_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_and_num_outputs_mismatch_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_edge_case, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_must_be_int_or_tuple_of_int_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_single_input, test/test_legacy_vmap.py::TestVmapAPILegacy::test_unsupported_op_err_msg, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_T_numpy, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_as_strided, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_binary_pointwise_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_bmm, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_cat, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_chunk, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_clamp, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_clone, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_comparison_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_conj, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_contiguous, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_diagonal, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_dot, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_expand_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_fill_and_zero_inplace, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_imag, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_complex, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_contiguous, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_floating_point, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_mm, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_movedim, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_mv, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_narrow, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_empty, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_empty_strided, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_zeros, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_no_random_op_support, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_real, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_reshape, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_reshape_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_result_type, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_select, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_slice, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_split, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_squeeze, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_stack, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_stride, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_sum_dim, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_t, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_tensor_split, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_to, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_trace, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_transpose, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unary_pointwise_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unbind, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unfold, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as_complex, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as_real, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_vmap_fallback_check, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_vmap_fallback_check_ok, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_add_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_binary_cross_entropy_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_diagonal_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_div_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_expand_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_index_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_inplace_manyview_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_inplace_on_view_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_lgamma_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_log1p_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_log_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_logsumexp_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_max_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_median_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_min_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_mul_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_permute_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_reshape_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_select_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_sigmoid_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_slice_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_stack_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_sub_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_threshold_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_trace_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_unrelated_output_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_unrelated_output_multiple_grad_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_vmap_fallback_check, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_vmap_fallback_check_ok 2025-06-01T22:41:11.5947861Z 2025-06-01T22:41:17.1881461Z Running dynamo/test_view 1/1 ... [2025-06-01 22:41:17.187911] 2025-06-01T22:41:17.1882082Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:17.1889441Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_view.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:41:17.188531] 2025-06-01T22:41:21.8762076Z 2025-06-01T22:41:21.8763431Z dynamo/test_view 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_view_1.1_f1185989434245d0_.log 2025-06-01T22:41:21.8764539Z 2025-06-01T22:41:25.9066692Z 2025-06-01T22:41:25.9067556Z test_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_1.1_ea1ca13df529d40a_.log 2025-06-01T22:41:25.9768500Z Running 2458 items in this shard: test/test_jit.py::TestTracer::test_call_traced_fn_from_traced_module, test/test_jit.py::TestTracer::test_call_traced_module_from_traced_module, test/test_jit.py::TestTracer::test_canonicalize_tensor_iterator, test/test_jit.py::TestTracer::test_constant, test/test_jit.py::TestTracer::test_conv, test/test_jit.py::TestTracer::test_export_no_reorder, test/test_jit.py::TestTracer::test_force_outplace_check_fill, test/test_jit.py::TestTracer::test_force_outplace_check_zero, test/test_jit.py::TestTracer::test_ge, test/test_jit.py::TestTracer::test_ge_cuda, test/test_jit.py::TestTracer::test_ge_optimized, test/test_jit.py::TestTracer::test_ge_unoptimized, test/test_jit.py::TestTracer::test_index_put, test/test_jit.py::TestTracer::test_index_put_trace_with_view, test/test_jit.py::TestTracer::test_index_put_trace_without_view, test/test_jit.py::TestTracer::test_inplace_check, test/test_jit.py::TestTracer::test_inplace_copy, test/test_jit.py::TestTracer::test_inplace_copy_force_outplace, test/test_jit.py::TestTracer::test_inplace_flags, test/test_jit.py::TestTracer::test_inplace_transplant, test/test_jit.py::TestTracer::test_inplace_warn, test/test_jit.py::TestTracer::test_input_dict_checkTrace_mut, test/test_jit.py::TestTracer::test_input_dict_empty, test/test_jit.py::TestTracer::test_input_dict_empty_list, test/test_jit.py::TestTracer::test_input_dict_insertion_order, test/test_jit.py::TestTracer::test_input_dict_of_dicts, test/test_jit.py::TestTracer::test_input_dict_of_lists, test/test_jit.py::TestTracer::test_input_dict_recursive, test/test_jit.py::TestTracer::test_input_dict_remembers_keys, test/test_jit.py::TestTracer::test_input_dict_unify, test/test_jit.py::TestTracer::test_input_flatten, test/test_jit.py::TestTracer::test_input_list_mixed_type, test/test_jit.py::TestTracer::test_input_list_of_tuples, test/test_jit.py::TestTracer::test_input_list_toplevel_flatten, test/test_jit.py::TestTracer::test_input_list_toplevel_flatten_direct, test/test_jit.py::TestTracer::test_input_tuple_of_dicts, test/test_jit.py::TestTracer::test_interpolate_trace, test/test_jit.py::TestTracer::test_large_nbr_kernel_args, test/test_jit.py::TestTracer::test_lhs_index_fails, test/test_jit.py::TestTracer::test_lhs_index_trivial, test/test_jit.py::TestTracer::test_max_pool, test/test_jit.py::TestTracer::test_nested_inplace, test/test_jit.py::TestTracer::test_non_tensor_tracing, test/test_jit.py::TestTracer::test_output_unflatten, test/test_jit.py::TestTracer::test_python_function, test/test_jit.py::TestTracer::test_python_function_tup, test/test_jit.py::TestTracer::test_repeated_input, test/test_jit.py::TestTracer::test_repeated_output, test/test_jit.py::TestTracer::test_shared_param, test/test_jit.py::TestTracer::test_simple, test/test_jit.py::TestTracer::test_tensor_with_grad_as_constant, test/test_jit.py::TestTracer::test_trace_aliased_parameter, test/test_jit.py::TestTracer::test_trace_annotation, test/test_jit.py::TestTracer::test_trace_arange, test/test_jit.py::TestTracer::test_trace_arange_with_grad, test/test_jit.py::TestTracer::test_trace_autograd_function, test/test_jit.py::TestTracer::test_trace_casts, test/test_jit.py::TestTracer::test_trace_checker_control_flow, test/test_jit.py::TestTracer::test_trace_checker_dot_data, test/test_jit.py::TestTracer::test_trace_checker_dropout_notrain, test/test_jit.py::TestTracer::test_trace_checker_dropout_train, test/test_jit.py::TestTracer::test_trace_checker_inplace_on_view, test/test_jit.py::TestTracer::test_trace_checker_memoization, test/test_jit.py::TestTracer::test_trace_checker_slice_lhs, test/test_jit.py::TestTracer::test_trace_checking_with_deprecated_name, test/test_jit.py::TestTracer::test_trace_checking_with_global_name, test/test_jit.py::TestTracer::test_trace_contiguous, test/test_jit.py::TestTracer::test_trace_contiguous_short_circuit, test/test_jit.py::TestTracer::test_trace_detach, test/test_jit.py::TestTracer::test_trace_detach_inplace, test/test_jit.py::TestTracer::test_trace_detach_inplace_redispatch, test/test_jit.py::TestTracer::test_trace_detach_redispatch, test/test_jit.py::TestTracer::test_trace_dict_input, test/test_jit.py::TestTracer::test_trace_dict_output, test/test_jit.py::TestTracer::test_trace_export_fns, test/test_jit.py::TestTracer::test_trace_export_fns_recursive, test/test_jit.py::TestTracer::test_trace_fork_join_and_module, test/test_jit.py::TestTracer::test_trace_full_dynamic_shape, test/test_jit.py::TestTracer::test_trace_func_argument_names_captured, test/test_jit.py::TestTracer::test_trace_index, test/test_jit.py::TestTracer::test_trace_index_constant, test/test_jit.py::TestTracer::test_trace_indexed_assignment, test/test_jit.py::TestTracer::test_trace_inline_shape, test/test_jit.py::TestTracer::test_trace_inverse, test/test_jit.py::TestTracer::test_trace_invert_module_hierarchy, test/test_jit.py::TestTracer::test_trace_legacy_ctor, test/test_jit.py::TestTracer::test_trace_module_argument_names_captured, test/test_jit.py::TestTracer::test_trace_modulelist, test/test_jit.py::TestTracer::test_trace_multi_output_function, test/test_jit.py::TestTracer::test_trace_namedtuple, test/test_jit.py::TestTracer::test_trace_nested_datatypes, test/test_jit.py::TestTracer::test_trace_nested_fn, test/test_jit.py::TestTracer::test_trace_no_duplicated_lifted_input_output, test/test_jit.py::TestTracer::test_trace_numel, test/test_jit.py::TestTracer::test_trace_optioanl_dtype, test/test_jit.py::TestTracer::test_trace_optional, test/test_jit.py::TestTracer::test_trace_out_operator_with_two_output, test/test_jit.py::TestTracer::test_trace_partial_func_argument_names_captured, test/test_jit.py::TestTracer::test_trace_random, test/test_jit.py::TestTracer::test_trace_records_names, test/test_jit.py::TestTracer::test_trace_save, test/test_jit.py::TestTracer::test_trace_save_load_copy, test/test_jit.py::TestTracer::test_trace_single_tuple, test/test_jit.py::TestTracer::test_trace_size, test/test_jit.py::TestTracer::test_trace_size_with_grad, test/test_jit.py::TestTracer::test_trace_skip_none_submodule, test/test_jit.py::TestTracer::test_trace_slice, test/test_jit.py::TestTracer::test_trace_slice_expr_complete_type, test/test_jit.py::TestTracer::test_trace_slice_full_dim, test/test_jit.py::TestTracer::test_trace_slice_setitem_dynamic_shape, test/test_jit.py::TestTracer::test_trace_slice_with_grad, test/test_jit.py::TestTracer::test_trace_tensor_factory, test/test_jit.py::TestTracer::test_trace_topk, test/test_jit.py::TestTracer::test_trace_tuple, test/test_jit.py::TestTracer::test_trace_variable_instantiation, test/test_jit.py::TestTracer::test_trace_warn, test/test_jit.py::TestTracer::test_trace_with_conditional_property, test/test_jit.py::TestTracer::test_trace_with_nested_strided_tensor_output, test/test_jit.py::TestTracer::test_trace_with_nested_tensor_list_output, test/test_jit.py::TestTracer::test_trace_with_number_list_output, test/test_jit.py::TestTracer::test_trace_with_tensor_list_output, test/test_jit.py::TestTracer::test_trace_with_tuple_tensor, test/test_jit.py::TestTracer::test_traced_module_cuda, test/test_jit.py::TestTracer::test_tracing_backward_hook_error, test/test_jit.py::TestTracer::test_tracing_hooks, test/test_jit.py::TestTracer::test_tracing_multiple_methods, test/test_jit.py::TestTracer::test_type_same_device, test/test_jit.py::TestTracer::test_typeas_trace_check, test/test_jit.py::TestTracer::test_wrapped_number, test/test_jit.py::TestMixTracingScripting::test_call_script_fn_from_traced_module, test/test_jit.py::TestMixTracingScripting::test_call_script_module_from_traced_module, test/test_jit.py::TestMixTracingScripting::test_call_traced_fn_from_script_fn, test/test_jit.py::TestMixTracingScripting::test_call_traced_mod_from_script_fn, test/test_jit.py::TestMixTracingScripting::test_call_tracing_fn_from_script_module, test/test_jit.py::TestMixTracingScripting::test_call_tracing_mod_from_script_module, test/test_jit.py::TestMixTracingScripting::test_jit_trace_callfunction_return_shapes, test/test_jit.py::TestMixTracingScripting::test_script_inline_trace_multiple_args, test/test_jit.py::TestMixTracingScripting::test_trace_dict_mix_script, test/test_jit.py::TestMixTracingScripting::test_trace_hierarchy, test/test_jit.py::TestMixTracingScripting::test_trace_linear, test/test_jit.py::TestMixTracingScripting::test_trace_mixed_by_script_with_dict_output, test/test_jit.py::TestMixTracingScripting::test_trace_of_script, test/test_jit.py::TestMixTracingScripting::test_trace_parameter, test/test_jit.py::TestMixTracingScripting::test_trace_returning_dict_with_tensor_tuples, test/test_jit.py::TestMixTracingScripting::test_trace_script, test/test_jit.py::TestMixTracingScripting::test_trace_script_returning_complex_dict, test/test_jit.py::TestMixTracingScripting::test_trace_with_size, test/test_jit.py::TestMixTracingScripting::test_traced_module_contains_scripted_interface_types, test/test_jit.py::TestMixTracingScripting::test_traced_module_implements_interface, test/test_jit.py::TestMixTracingScripting::test_tracing_indexing, test/test_jit.py::TestMixTracingScripting::test_tracing_slicing, test/test_jit.py::TestRecursiveScript::test_attributes, test/test_jit.py::TestRecursiveScript::test_class_compile, test/test_jit.py::TestRecursiveScript::test_constants_with_final, test/test_jit.py::TestRecursiveScript::test_dir, test/test_jit.py::TestRecursiveScript::test_error_stack, test/test_jit.py::TestRecursiveScript::test_error_stack_annotation, test/test_jit.py::TestRecursiveScript::test_error_stack_class, test/test_jit.py::TestRecursiveScript::test_error_stack_module, test/test_jit.py::TestRecursiveScript::test_failed_function_compilation, test/test_jit.py::TestRecursiveScript::test_function_attribute_in_submodule, test/test_jit.py::TestRecursiveScript::test_ignore_class, test/test_jit.py::TestRecursiveScript::test_inferred_nonetype, test/test_jit.py::TestRecursiveScript::test_init_error, test/test_jit.py::TestRecursiveScript::test_inner_traced_module, test/test_jit.py::TestRecursiveScript::test_iterable_modules, test/test_jit.py::TestRecursiveScript::test_method_call, test/test_jit.py::TestRecursiveScript::test_module_basic, test/test_jit.py::TestRecursiveScript::test_module_function_export, test/test_jit.py::TestRecursiveScript::test_module_name, test/test_jit.py::TestRecursiveScript::test_module_repr, test/test_jit.py::TestRecursiveScript::test_optional_module, test/test_jit.py::TestRecursiveScript::test_override_instance_method_ignore, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_basic, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_cycle, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_escape_hatch, test/test_jit.py::TestRecursiveScript::test_prepare_scriptable_iterable_modules, test/test_jit.py::TestRecursiveScript::test_python_function_attribute, test/test_jit.py::TestRecursiveScript::test_repeated_error_stack, test/test_jit.py::TestRecursiveScript::test_script_after_eval, test/test_jit.py::TestRecursiveScript::test_script_basic, test/test_jit.py::TestRecursiveScript::test_script_function_attribute, test/test_jit.py::TestRecursiveScript::test_script_loaded_module, test/test_jit.py::TestTypeSharing::test_assign_python_attr, test/test_jit.py::TestTypeSharing::test_basic, test/test_jit.py::TestTypeSharing::test_builtin_function_different, test/test_jit.py::TestTypeSharing::test_builtin_function_same, test/test_jit.py::TestTypeSharing::test_constants, test/test_jit.py::TestTypeSharing::test_diff_attr_values, test/test_jit.py::TestTypeSharing::test_failed_attribute_compilation, test/test_jit.py::TestTypeSharing::test_ignored_fns, test/test_jit.py::TestTypeSharing::test_linear, test/test_jit.py::TestTypeSharing::test_loaded_modules_work, test/test_jit.py::TestTypeSharing::test_module_dict_same_type_different_name, test/test_jit.py::TestTypeSharing::test_mutate_attr_value, test/test_jit.py::TestTypeSharing::test_param_vs_attribute, test/test_jit.py::TestTypeSharing::test_python_function_attribute_different, test/test_jit.py::TestTypeSharing::test_python_function_attribute_same, test/test_jit.py::TestTypeSharing::test_same_but_different_classes, test/test_jit.py::TestTypeSharing::test_script_function_attribute_different, test/test_jit.py::TestTypeSharing::test_script_function_attribute_same, test/test_jit.py::TestTypeSharing::test_script_module_containing_traced_module, test/test_jit.py::TestTypeSharing::test_submodules, test/test_jit.py::TestTypeSharing::test_tracing_gives_different_types, test/test_jit.py::TestTypeSharing::test_type_not_shared_ignored_attributes, test/test_jit.py::TestTypeSharing::test_type_shared_ignored_attributes, test/test_jit.py::TestTypeSharing::test_type_sharing_define_in_init, test/test_jit.py::TestTypeSharing::test_type_sharing_disabled, test/test_jit.py::TestLogging::test_bump_numeric_counter, test/test_jit.py::TestLogging::test_counter_aggregation, test/test_jit.py::TestLogging::test_logging_levels_set, test/test_jit.py::TestLogging::test_time_measurement_counter, test/test_jit.py::TestLogging::test_time_measurement_counter_script, test/test_jit.py::TestLogging::test_trace_numeric_counter, test/test_jit.py::TestBackends::test_errors, test/test_jit.py::TestBackends::test_execution, test/test_jit.py::TestBackends::test_save_load, test/test_jit.py::TestBackendsWithCompiler::test_errors, test/test_jit.py::TestBackendsWithCompiler::test_execution, test/test_jit.py::TestNnapiBackend::test_adaptive_avg_pool2d, test/test_jit.py::TestNnapiBackend::test_avg_pool2d, test/test_jit.py::TestNnapiBackend::test_cat, test/test_jit.py::TestNnapiBackend::test_compile_spec_santiy, test/test_jit.py::TestNnapiBackend::test_conv2d, test/test_jit.py::TestNnapiBackend::test_conv2d_transpose, test/test_jit.py::TestNnapiBackend::test_dequantize, test/test_jit.py::TestNnapiBackend::test_detach, test/test_jit.py::TestNnapiBackend::test_flatten, test/test_jit.py::TestNnapiBackend::test_hardtanh, test/test_jit.py::TestNnapiBackend::test_linear, test/test_jit.py::TestNnapiBackend::test_log_softmax, test/test_jit.py::TestNnapiBackend::test_max_pool2d, test/test_jit.py::TestNnapiBackend::test_mean, test/test_jit.py::TestNnapiBackend::test_multi_output, test/test_jit.py::TestNnapiBackend::test_pointwise_binary, test/test_jit.py::TestNnapiBackend::test_pointwise_binary_const, test/test_jit.py::TestNnapiBackend::test_pointwise_unary, test/test_jit.py::TestNnapiBackend::test_prelu, test/test_jit.py::TestNnapiBackend::test_qadd, test/test_jit.py::TestNnapiBackend::test_qlinear, test/test_jit.py::TestNnapiBackend::test_quantize, test/test_jit.py::TestNnapiBackend::test_reshape, test/test_jit.py::TestNnapiBackend::test_seblock_mul, test/test_jit.py::TestNnapiBackend::test_slice, test/test_jit.py::TestNnapiBackend::test_softmax, test/test_jit.py::TestNnapiBackend::test_tensor_input, test/test_jit.py::TestNnapiBackend::test_to, test/test_jit.py::TestNnapiBackend::test_unsqueeze, test/test_jit.py::TestNnapiBackend::test_upsample_nearest2d, test/test_jit.py::TestList::test_comprehension_iterable, test/test_jit.py::TestList::test_comprehension_out_type_not_in_type, test/test_jit.py::TestList::test_comprehensions_basic, test/test_jit.py::TestList::test_comprehensions_basic_float, test/test_jit.py::TestList::test_comprehensions_two_comps, test/test_jit.py::TestList::test_copy_list_immutable, test/test_jit.py::TestList::test_copy_list_mutable, test/test_jit.py::TestList::test_del, test/test_jit.py::TestList::test_dict_keyword_is_correctly_typed, test/test_jit.py::TestList::test_dict_keyword_with_dict_comprehension, test/test_jit.py::TestList::test_dict_keyword_with_dict_comprehension_and_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_empty_dict_comprehension, test/test_jit.py::TestList::test_dict_keyword_with_empty_iterable, test/test_jit.py::TestList::test_dict_keyword_with_internal_aggregate_function, test/test_jit.py::TestList::test_dict_keyword_with_iterable, test/test_jit.py::TestList::test_dict_keyword_with_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_kwargs_using_container_values, test/test_jit.py::TestList::test_dict_keyword_with_mapping, test/test_jit.py::TestList::test_dict_keyword_with_mapping_and_kwargs, test/test_jit.py::TestList::test_dict_keyword_with_mismatched_annotations, test/test_jit.py::TestList::test_dict_keyword_with_nested_call, test/test_jit.py::TestList::test_dict_keyword_with_previously_declared_variable, test/test_jit.py::TestList::test_dict_keyword_with_previously_declared_variable_and_kwargs, test/test_jit.py::TestList::test_extend_list_immutable, test/test_jit.py::TestList::test_extend_list_mutable, test/test_jit.py::TestList::test_in_check, test/test_jit.py::TestList::test_list_bool_conversion, test/test_jit.py::TestList::test_list_count, test/test_jit.py::TestList::test_list_count_not_existing, test/test_jit.py::TestList::test_list_gather, test/test_jit.py::TestList::test_list_index, test/test_jit.py::TestList::test_list_index_not_existing, test/test_jit.py::TestList::test_list_keyword, test/test_jit.py::TestList::test_list_len, test/test_jit.py::TestList::test_list_literal, test/test_jit.py::TestList::test_list_none, test/test_jit.py::TestList::test_list_ops, test/test_jit.py::TestList::test_list_slice, test/test_jit.py::TestList::test_list_sort, test/test_jit.py::TestList::test_list_unification_hint, test/test_jit.py::TestList::test_list_variance, test/test_jit.py::TestList::test_min_bool_list, test/test_jit.py::TestList::test_min_max_list, test/test_jit.py::TestList::test_min_max_single_list, test/test_jit.py::TestList::test_mutable_list_append, test/test_jit.py::TestList::test_mutable_list_append_2, test/test_jit.py::TestList::test_mutable_list_append_if, test/test_jit.py::TestList::test_mutable_list_append_if_else, test/test_jit.py::TestList::test_mutable_list_append_loop, test/test_jit.py::TestList::test_mutable_list_append_loop_if, test/test_jit.py::TestList::test_mutable_list_clear, test/test_jit.py::TestList::test_mutable_list_clear_empty, test/test_jit.py::TestList::test_mutable_list_function_inline, test/test_jit.py::TestList::test_mutable_list_insert, test/test_jit.py::TestList::test_mutable_list_insert_neg_out_of_bounds, test/test_jit.py::TestList::test_mutable_list_insert_negative, test/test_jit.py::TestList::test_mutable_list_insert_out_of_bounds, test/test_jit.py::TestList::test_mutable_list_nested_loop, test/test_jit.py::TestList::test_mutable_list_pop, test/test_jit.py::TestList::test_mutable_list_pop2, test/test_jit.py::TestList::test_mutable_list_pop_at, test/test_jit.py::TestList::test_mutable_list_pop_at2, test/test_jit.py::TestList::test_mutable_list_pop_at_negative, test/test_jit.py::TestList::test_mutable_list_pop_at_negative2, test/test_jit.py::TestList::test_mutable_list_pop_empty, test/test_jit.py::TestList::test_mutable_list_pop_slice, test/test_jit.py::TestList::test_mutable_list_remove, test/test_jit.py::TestList::test_mutable_list_remove2, test/test_jit.py::TestList::test_mutable_list_remove_not_existing, test/test_jit.py::TestList::test_mutable_list_remove_tensor, test/test_jit.py::TestList::test_mutable_list_reverse, test/test_jit.py::TestList::test_mutable_list_reverse_empty, test/test_jit.py::TestList::test_mutable_tensor_list_reverse, test/test_jit.py::TestList::test_no_element_type_annotation, test/test_jit.py::TestList::test_slice_index, test/test_jit.py::TestList::test_tensor_list_count, test/test_jit.py::TestList::test_tensor_list_count_not_existing, test/test_jit.py::TestList::test_tensor_list_index, test/test_jit.py::TestList::test_tensor_list_index_not_existing, test/test_jit.py::TestList::test_to_list, test/test_jit.py::TestList::test_to_list_gpu, test/test_jit.py::TestDict::test_aug_assign, test/test_jit.py::TestDict::test_basic, test/test_jit.py::TestDict::test_clear, test/test_jit.py::TestDict::test_copy, test/test_jit.py::TestDict::test_del, test/test_jit.py::TestDict::test_dict_bool_conversion, test/test_jit.py::TestDict::test_dict_preserves_order, test/test_jit.py::TestDict::test_dict_to_python, test/test_jit.py::TestDict::test_dict_variance, test/test_jit.py::TestDict::test_get, test/test_jit.py::TestDict::test_get_boolkey, test/test_jit.py::TestDict::test_items, test/test_jit.py::TestDict::test_key_type, test/test_jit.py::TestDict::test_keys, test/test_jit.py::TestDict::test_len, test/test_jit.py::TestDict::test_loop, test/test_jit.py::TestDict::test_membership, test/test_jit.py::TestDict::test_mutability, test/test_jit.py::TestDict::test_optional_dict_construct, test/test_jit.py::TestDict::test_ordered_dict, test/test_jit.py::TestDict::test_pop, test/test_jit.py::TestDict::test_popitem, test/test_jit.py::TestDict::test_setdefault, test/test_jit.py::TestDict::test_type_annotation_missing_contained_type, test/test_jit.py::TestDict::test_update, test/test_jit.py::TestDict::test_update_existing_key, test/test_jit.py::TestDict::test_values, test/test_jit.py::TestDict::test_view, test/test_jit.py::TestNamedTuple::test_namedtuple, test/test_jit.py::TestNamedTuple::test_namedtuple_as_attr, test/test_jit.py::TestNamedTuple::test_namedtuple_constant, test/test_jit.py::TestNamedTuple::test_namedtuple_input_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_inside_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_kwarg_construct, test/test_jit.py::TestNamedTuple::test_namedtuple_lower, test/test_jit.py::TestNamedTuple::test_namedtuple_resolution, test/test_jit.py::TestNamedTuple::test_namedtuple_resolution_forwardref, test/test_jit.py::TestNamedTuple::test_namedtuple_serialization, test/test_jit.py::TestNamedTuple::test_namedtuple_slice_unpack, test/test_jit.py::TestNamedTuple::test_namedtuple_type_annotation, test/test_jit.py::TestNamedTuple::test_namedtuple_wrong_types, test/test_jit.py::TestNamedTuple::test_return_named_tuple, test/test_jit.py::TestScriptDict::test_bool, test/test_jit.py::TestScriptDict::test_contains, test/test_jit.py::TestScriptDict::test_delitem, test/test_jit.py::TestScriptDict::test_getitem, test/test_jit.py::TestScriptDict::test_items, test/test_jit.py::TestScriptDict::test_iter, test/test_jit.py::TestScriptDict::test_len, test/test_jit.py::TestScriptDict::test_nested, test/test_jit.py::TestScriptDict::test_reference_semantics, test/test_jit.py::TestScriptDict::test_repr, test/test_jit.py::TestScriptDict::test_setitem, test/test_jit.py::TestScriptList::test_append, test/test_jit.py::TestScriptList::test_bool, test/test_jit.py::TestScriptList::test_clear, test/test_jit.py::TestScriptList::test_contains, test/test_jit.py::TestScriptList::test_count, test/test_jit.py::TestScriptList::test_defaultdict, test/test_jit.py::TestScriptList::test_delitem, test/test_jit.py::TestScriptList::test_extend, test/test_jit.py::TestScriptList::test_getitem, test/test_jit.py::TestScriptList::test_insert, test/test_jit.py::TestScriptList::test_iter, test/test_jit.py::TestScriptList::test_len, test/test_jit.py::TestScriptList::test_nested, test/test_jit.py::TestScriptList::test_pop, test/test_jit.py::TestScriptList::test_reference_semantics, test/test_jit.py::TestScriptList::test_remove, test/test_jit.py::TestScriptList::test_repr, test/test_jit.py::TestScriptList::test_setitem, test/test_jit.py::TestAsync::test_async_future_type_python, test/test_jit.py::TestAsync::test_async_grad_guard_no_grad, test/test_jit.py::TestAsync::test_async_grad_guard_with_grad, test/test_jit.py::TestAsync::test_async_kwargs, test/test_jit.py::TestAsync::test_async_parsing, test/test_jit.py::TestAsync::test_async_python, test/test_jit.py::TestAsync::test_async_script, test/test_jit.py::TestAsync::test_async_script_capture, test/test_jit.py::TestAsync::test_async_script_error, test/test_jit.py::TestAsync::test_async_script_multi_forks, test/test_jit.py::TestAsync::test_async_script_multi_waits, test/test_jit.py::TestAsync::test_async_script_nested, test/test_jit.py::TestAsync::test_async_script_no_script_mod, test/test_jit.py::TestAsync::test_async_script_trace, test/test_jit.py::TestAsync::test_future_subtyping, test/test_jit.py::TestAsync::test_no_future_subtype_message, test/test_jit.py::TestAsync::test_trace_fork_wait, test/test_jit.py::TestAsync::test_trace_fork_wait_inline, test/test_jit.py::TestAsync::test_trace_fork_wait_leaking, test/test_jit.py::TestAsync::test_trace_fork_wait_list_modulecalls, test/test_jit.py::TestAsync::test_trace_modulecalls_with_different_output_types, test/test_jit.py::TestAwait::test_await_class_arg, test/test_jit.py::TestAwait::test_await_class_return, test/test_jit.py::TestAwait::test_await_eager_lazy, test/test_jit.py::TestAwait::test_await_func_arg, test/test_jit.py::TestAwait::test_await_getattr_implicit_convertion, test/test_jit.py::TestAwait::test_await_isinstance, test/test_jit.py::TestAwait::test_await_multiout_save, test/test_jit.py::TestAwait::test_await_nested, test/test_jit.py::TestAwait::test_await_out_of_interpreter, test/test_jit.py::TestAwait::test_await_python, test/test_jit.py::TestAwait::test_await_type_python, test/test_jit.py::TestAwait::test_awaitable_to_await, test/test_jit.py::TestAwait::test_eager_await_non_scriptable, test/test_jit.py::TestAwait::test_jit_trace, test/test_jit.py::TestAwait::test_nowait, test/test_jit.py::TestAwait::test_nowait_class, test/test_jit.py::TestAwait::test_script, test/test_jit.py::TestDataParallel::test_python_submodule_script, test/test_jit.py::TestDataParallel::test_shared_module, test/test_jit.py::TestDataParallel::test_tensor_sharing, test/test_jit.py::TestDataParallel::test_tensor_sharing_with_forward, test/test_jit.py::TestDataParallel::test_traced_module, test/test_jit.py::TestModels::test_alexnet, test/test_jit.py::TestModels::test_dcgan_models, test/test_jit.py::TestModels::test_dcgan_models_cuda, test/test_jit.py::TestModels::test_mnist, test/test_jit.py::TestModels::test_mnist_cuda, test/test_jit.py::TestModels::test_mnist_training_leaks_no_memory_cuda, test/test_jit.py::TestModels::test_neural_style, test/test_jit.py::TestModels::test_neural_style_cuda, test/test_jit.py::TestModels::test_reinforcement_learning, test/test_jit.py::TestModels::test_reinforcement_learning_cuda, test/test_jit.py::TestModels::test_script_module_script_resnet, test/test_jit.py::TestModels::test_script_module_trace_resnet18, test/test_jit.py::TestModels::test_snli, test/test_jit.py::TestModels::test_snli_cuda, test/test_jit.py::TestModels::test_super_resolution, test/test_jit.py::TestModels::test_super_resolution_cuda, test/test_jit.py::TestModels::test_time_sequence_prediction, test/test_jit.py::TestModels::test_vae, test/test_jit.py::TestModels::test_vae_cuda, test/test_jit.py::TestModules::test_script_module_with_constants_list, test/test_jit.py::TestAutodiffJit::test_autodiff_requires_grad_nograd, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs_profiled_twice, test/test_jit.py::TestAutodiffJit::test_requires_grad_outputs_side_effects, test/test_jit.py::TestAutodiffJit::test_undefined_tensor_lists, test/test_jit.py::TestAutodiffSubgraphSlicing::test_aliased_outputs, test/test_jit.py::TestAutodiffSubgraphSlicing::test_bias_as_arg, test/test_jit.py::TestAutodiffSubgraphSlicing::test_bias_as_module_attr, test/test_jit.py::TestAutodiffSubgraphSlicing::test_chunk_constant_script_ad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_constructed_bias, test/test_jit.py::TestAutodiffSubgraphSlicing::test_diff_graph_inline_threshold, test/test_jit.py::TestAutodiffSubgraphSlicing::test_differentiable_graph_ops_requires_grad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_does_not_create_cycles, test/test_jit.py::TestAutodiffSubgraphSlicing::test_does_not_merge_unrelated, test/test_jit.py::TestAutodiffSubgraphSlicing::test_has_profiled_info_aliasing_outputs, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merge_respects_aliasing, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_dense, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_down, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_up, test/test_jit.py::TestAutodiffSubgraphSlicing::test_merges_without_cycles, test/test_jit.py::TestAutodiffSubgraphSlicing::test_prune_grad, test/test_jit.py::TestAutodiffSubgraphSlicing::test_requires_grad_for_tensor_list, test/test_jit.py::TestAutodiffSubgraphSlicing::test_respects_lexical_scoping, test/test_jit.py::TestAutodiffSubgraphSlicing::test_simple_merge, test/test_jit.py::TestAutodiffSubgraphSlicing::test_simple_no_merge, test/test_jit.py::TestCustomOperators::test_calling_scripted_custom_op, test/test_jit.py::TestCustomOperators::test_calling_traced_custom_op, test/test_jit.py::TestCustomOperators::test_default_arguments_are_used, test/test_jit.py::TestCustomOperators::test_dynamic_op_registry, test/test_jit.py::TestCustomOperators::test_generic_list, test/test_jit.py::TestCustomOperators::test_getting_invalid_attr, test/test_jit.py::TestCustomOperators::test_passing_and_returning_lists, test/test_jit.py::TestCustomOperators::test_passing_one_positional_but_not_the_second, test/test_jit.py::TestCustomOperators::test_passing_too_few_args, test/test_jit.py::TestCustomOperators::test_passing_too_many_args, test/test_jit.py::TestCustomOperators::test_passing_unknown_kwargs, test/test_jit.py::TestCustomOperators::test_script_graph_contains_custom_op, test/test_jit.py::TestCustomOperators::test_script_graph_for_custom_ops_matches_traced_graph, test/test_jit.py::TestCustomOperators::test_simply_calling_an_operator, test/test_jit.py::TestCustomOperators::test_where_no_scalar, test/test_jit.py::TestGraphRewritePasses::test_fuse_linear, test/test_jit.py::TestClassType::test_cast_overloads, test/test_jit.py::TestClassType::test_class_attribute_wrong_type, test/test_jit.py::TestClassType::test_class_constant, test/test_jit.py::TestClassType::test_class_constructs_itself, test/test_jit.py::TestClassType::test_class_inheritance, test/test_jit.py::TestClassType::test_class_inheritance_implicit, test/test_jit.py::TestClassType::test_class_sorting, test/test_jit.py::TestClassType::test_class_specialization, test/test_jit.py::TestClassType::test_class_type_as_param, test/test_jit.py::TestClassType::test_classmethod, test/test_jit.py::TestClassType::test_conditional_set_attr, test/test_jit.py::TestClassType::test_custom_delete, test/test_jit.py::TestClassType::test_default_args, test/test_jit.py::TestClassType::test_get_attr, test/test_jit.py::TestClassType::test_get_attr_not_initialized, test/test_jit.py::TestClassType::test_get_with_method, test/test_jit.py::TestClassType::test_imported_classes, test/test_jit.py::TestClassType::test_in, test/test_jit.py::TestClassType::test_init_compiled_first, test/test_jit.py::TestClassType::test_interface, test/test_jit.py::TestClassType::test_optional_type_promotion, test/test_jit.py::TestClassType::test_out_of_order_methods, test/test_jit.py::TestClassType::test_overloaded_fn, test/test_jit.py::TestClassType::test_properties, test/test_jit.py::TestClassType::test_py_class_to_ivalue_missing_attribute, test/test_jit.py::TestClassType::test_python_interop, test/test_jit.py::TestClassType::test_recursive_class, test/test_jit.py::TestClassType::test_recursive_script_builtin_type_resolution, test/test_jit.py::TestClassType::test_recursive_script_module_builtin_type_resolution, test/test_jit.py::TestClassType::test_recursive_scripting, test/test_jit.py::TestClassType::test_recursive_scripting_failed, test/test_jit.py::TestClassType::test_reference_semantics, test/test_jit.py::TestClassType::test_save_load_with_classes, test/test_jit.py::TestClassType::test_save_load_with_classes_nested, test/test_jit.py::TestClassType::test_save_load_with_classes_returned, test/test_jit.py::TestClassType::test_schema_human_readable, test/test_jit.py::TestClassType::test_self_referential_method, test/test_jit.py::TestClassType::test_set_attr_in_method, test/test_jit.py::TestClassType::test_set_attr_non_initialized, test/test_jit.py::TestClassType::test_set_attr_type_mismatch, test/test_jit.py::TestClassType::test_staticmethod, test/test_jit.py::TestClassType::test_type_annotation, test/test_jit.py::TestClassType::test_type_annotations, test/test_jit.py::TestClassType::test_unresolved_class_attributes, test/test_jit.py::TestClassType::test_unused_method, test/test_jit.py::TestBuiltins::test_del, test/test_jit.py::TestBuiltins::test_del_multiple_operands, test/test_jit.py::TestBuiltins::test_has_attr, test/test_jit.py::TestBuiltins::test_has_attr_invalid_args, test/test_jit.py::TestTensorBuiltins::test_method_on_number, test/test_jit.py::TestTensorBuiltins::test_scalar_to_num_conversions, test/test_jit.py::TestTensorBuiltins::test_tensor_item, test/test_jit.py::TestTensorBuiltins::test_tensor_properties, test/test_jit.py::TestTensorBuiltins::test_tensor_subscript_assign, test/test_jit.py::TestTensorBuiltins::test_tensor_subscript_assign_device, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_inp_out, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_just_inp, test/test_jit.py::TestIgnoreContextManager::test_with_ignore_context_manager_with_just_out, test/test_jit.py::TestSymbolicShapeAnalysis::test_adaptive_avg_pool2d, test/test_jit.py::TestSymbolicShapeAnalysis::test_arange_shape, test/test_jit.py::TestSymbolicShapeAnalysis::test_binary_shape_fns_inplace, test/test_jit.py::TestSymbolicShapeAnalysis::test_binary_shape_functions, test/test_jit.py::TestSymbolicShapeAnalysis::test_conv_deconv, test/test_jit.py::TestSymbolicShapeAnalysis::test_convolution_backward, test/test_jit.py::TestSymbolicShapeAnalysis::test_cross_entropy_loss, test/test_jit.py::TestSymbolicShapeAnalysis::test_if_propagation, test/test_jit.py::TestSymbolicShapeAnalysis::test_partial_eval_graph_conv, test/test_jit.py::TestSymbolicShapeAnalysis::test_partial_eval_stitching, test/test_jit.py::TestSymbolicShapeAnalysis::test_refinement_through_graph_stitching, test/test_jit.py::TestSymbolicShapeAnalysis::test_register_function_error_checking, test/test_jit.py::TestSymbolicShapeAnalysis::test_returning_input_symbolic_shapes, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_analysis, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_concat, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_embedding_bag, test/test_jit.py::TestSymbolicShapeAnalysis::test_shape_function_includes, test/test_jit.py::TestSymbolicShapeAnalysis::test_shared_shape_graph, test/test_jit.py::TestSymbolicShapeAnalysis::test_size_and_sizes, test/test_jit.py::TestSymbolicShapeAnalysis::test_squeeze_dims, test/test_jit.py::TestSymbolicShapeAnalysis::test_stitching_concat, test/test_jit.py::TestSymbolicShapeAnalysis::test_stitching_multi_output, test/test_jit.py::TestSymbolicShapeAnalysis::test_sym_ir_parsing, test/test_jit.py::TestSymbolicShapeAnalysis::test_unary_shape_fns_inplace, test/test_jit.py::TestSymbolicShapeAnalysis::test_unary_shape_functions, test/test_jit.py::TestSymbolicShapeAnalysis::test_write, test/test_jit.py::TestOpDecompositions::test_op_decomposition, test/test_jit.py::TestOpDecompositions::test_registered_decomposition, test/test_jit.py::TestUnsupportedOps::test_factory_ops_requires_grad_fail, test/test_jit.py::TestUnsupportedOps::test_init_ops, test/test_jit.py::TestFreezing::test_freeze_interface_swapping_two_methods, test/test_jit.py::TestFreezing::test_freeze_interface_within_object, test/test_jit.py::TestFreezing::test_freeze_module, test/test_jit.py::TestFreezing::test_freeze_module_detach_gradient, test/test_jit.py::TestFreezing::test_freeze_module_in_training_mode, test/test_jit.py::TestFreezing::test_freeze_module_inlining, test/test_jit.py::TestFreezing::test_freeze_module_no_forward, test/test_jit.py::TestFreezing::test_freeze_module_return_self, test/test_jit.py::TestFreezing::test_freeze_module_return_sub_module, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr2, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_attr3, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr2, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr3, test/test_jit.py::TestFreezing::test_freeze_module_with_aliased_tensor_attr4, test/test_jit.py::TestFreezing::test_freeze_module_with_call_method, test/test_jit.py::TestFreezing::test_freeze_module_with_fork, test/test_jit.py::TestFreezing::test_freeze_module_with_fork2, test/test_jit.py::TestFreezing::test_freeze_module_with_fork_calling_module_method, test/test_jit.py::TestFreezing::test_freeze_module_with_helperfunction, test/test_jit.py::TestFreezing::test_freeze_module_with_inplace_mutable, test/test_jit.py::TestFreezing::test_freeze_module_with_list, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_dict, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_list, test/test_jit.py::TestFreezing::test_freeze_module_with_mutable_tensor, test/test_jit.py::TestFreezing::test_freeze_module_with_nested_fork, test/test_jit.py::TestFreezing::test_freeze_module_with_nestedaliasing, test/test_jit.py::TestFreezing::test_freeze_module_with_nestedaliasingscalar, test/test_jit.py::TestFreezing::test_freeze_module_with_non_static_module_container_index, test/test_jit.py::TestFreezing::test_freeze_module_with_overlapping_attrs, test/test_jit.py::TestFreezing::test_freeze_module_with_preserve_sub_module, test/test_jit.py::TestFreezing::test_freeze_module_with_preserve_sub_module_and_mutation, test/test_jit.py::TestFreezing::test_freeze_module_with_sharedclasstype, test/test_jit.py::TestFreezing::test_freeze_module_with_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_tensor, test/test_jit.py::TestFreezing::test_freeze_module_with_tuple, test/test_jit.py::TestFreezing::test_freeze_module_with_tupleoutput_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attr, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attribute_on_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_attribute_on_unused_submodule, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method2, test/test_jit.py::TestFreezing::test_freeze_module_with_user_preserved_method_on_submodule, test/test_jit.py::TestFreezing::test_freeze_no_forward, test/test_jit.py::TestFreezing::test_freeze_non_interface_module_swap, test/test_jit.py::TestFreezing::test_freeze_non_module_class_getattr, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces_same_name, test/test_jit.py::TestFreezing::test_freeze_recursive_interfaces_with_reassignment, test/test_jit.py::TestFreezing::test_freeze_with_interface_mutable, test/test_jit.py::TestFreezing::test_freeze_with_swapping_interfaces, test/test_jit.py::TestFreezing::test_module_getattr_indirection, test/test_jit.py::TestFreezing::test_module_with_shared_type_instances, test/test_jit.py::TestFrozenOptimizations::test_bn_not_broadcast_with_linear, test/test_jit.py::TestFrozenOptimizations::test_collapse_adjacent_conversions, test/test_jit.py::TestFrozenOptimizations::test_conv_add_folding, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding_autocast_scenario_cuda, test/test_jit.py::TestFrozenOptimizations::test_conv_bn_folding_not_forward, test/test_jit.py::TestFrozenOptimizations::test_conv_hardswish, test/test_jit.py::TestFrozenOptimizations::test_conv_mul_add_bn, test/test_jit.py::TestFrozenOptimizations::test_conv_to_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_conv_to_mkldnn_no_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_freeze_conv_relu_fusion, test/test_jit.py::TestFrozenOptimizations::test_freeze_conv_relu_fusion_not_forward, test/test_jit.py::TestFrozenOptimizations::test_freeze_mkdlnn, test/test_jit.py::TestFrozenOptimizations::test_freeze_remove_dropout, test/test_jit.py::TestFrozenOptimizations::test_freeze_remove_feature_dropout, test/test_jit.py::TestFrozenOptimizations::test_hardswish_hardsigmoid, test/test_jit.py::TestFrozenOptimizations::test_incompatible_perf_formats, test/test_jit.py::TestFrozenOptimizations::test_linear_bn_folding, test/test_jit.py::TestFrozenOptimizations::test_linear_bn_folding_autocast_scenario_cuda, test/test_jit.py::TestFrozenOptimizations::test_linear_concat, test/test_jit.py::TestFrozenOptimizations::test_linear_concat_complex, test/test_jit.py::TestFrozenOptimizations::test_linear_concat_different_input, test/test_jit.py::TestFrozenOptimizations::test_linear_multiple_blocks, test/test_jit.py::TestFrozenOptimizations::test_linear_non_constant_weight, test/test_jit.py::TestFrozenOptimizations::test_linear_transpose, test/test_jit.py::TestFrozenOptimizations::test_maxpool_mkldnn, test/test_jit.py::TestFrozenOptimizations::test_mkldnn_fuser_broadcasting, test/test_jit.py::TestFrozenOptimizations::test_mkldnn_inplace_removal, test/test_jit.py::TestFrozenOptimizations::test_numel_less_than_size_with_padding, test/test_jit.py::TestFrozenOptimizations::test_optimize_freeze_module, test/test_jit.py::TestFrozenOptimizations::test_pool2d_batchnorm, test/test_jit.py::TestFrozenOptimizations::test_pool3d_batchnorm, test/test_jit.py::TestFrozenOptimizations::test_remove_detach, test/test_jit.py::TestFrozenOptimizations::test_remove_detach_not_applied, test/test_jit.py::TestFrozenOptimizations::test_scalar_mul, test/test_jit.py::TestMKLDNNReinplacing::test_always_alive_values, test/test_jit.py::TestMKLDNNReinplacing::test_merge_liveness, test/test_jit.py::TestMKLDNNReinplacing::test_successful, test/test_jit.py::TestMKLDNNReinplacing::test_switch_inputs_to_inplace, test/test_jit.py::TestPeephole::test_conv_dim_folding, test/test_jit.py::TestPeephole::test_integer_refinement, test/test_jit.py::TestPeephole::test_noop_peephole, test/test_jit.py::TestPeephole::test_normalized_is_op, test/test_jit.py::TestPeephole::test_normalized_isnot_op, test/test_jit.py::TestPeephole::test_normalized_rsub, test/test_jit.py::TestPeephole::test_optimize_out_comparison_same_value, test/test_jit.py::TestPeephole::test_peephole, test/test_jit.py::TestPeephole::test_peephole_add_zero, test/test_jit.py::TestPeephole::test_peephole_arith, test/test_jit.py::TestPeephole::test_peephole_cuda, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_dict_modified, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_get_input_arg, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_keys_might_overlap, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_missing_key, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_overlapping_keys, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_no_optimization_unsupported_type, test/test_jit.py::TestPeephole::test_peephole_dict_getitem_simple, test/test_jit.py::TestPeephole::test_peephole_dict_len, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_keys_might_overlap, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_overlapping_keys, test/test_jit.py::TestPeephole::test_peephole_dict_len_no_optimization_unsupported_type, test/test_jit.py::TestPeephole::test_peephole_dynamic, test/test_jit.py::TestPeephole::test_peephole_int, test/test_jit.py::TestPeephole::test_peephole_len_list, test/test_jit.py::TestPeephole::test_peephole_list_len, test/test_jit.py::TestPeephole::test_peephole_list_ops, test/test_jit.py::TestPeephole::test_peephole_no_output_aliasing, test/test_jit.py::TestPeephole::test_peephole_optional_refine, test/test_jit.py::TestPeephole::test_peephole_slice_all_three_args, test/test_jit.py::TestPeephole::test_peephole_slice_one_empty_arg, test/test_jit.py::TestPeephole::test_peephole_slice_optimization_not_applied_list_modified, test/test_jit.py::TestPeephole::test_peephole_slice_optimization_not_applied_non_const_args, test/test_jit.py::TestPeephole::test_peephole_slice_two_empty_args, test/test_jit.py::TestPeephole::test_peephole_type_refinements, test/test_jit.py::TestPeephole::test_peephole_with_non_output_writes, test/test_jit.py::TestPeephole::test_peephole_with_writes, test/test_jit.py::TestPeephole::test_refine_integer_values, test/test_jit.py::TestPeephole::test_short_circuit_optimization, test/test_jit.py::TestAliasAnalysis::test_becomes_wildcard_annotations, test/test_jit.py::TestAliasAnalysis::test_multiple_compilation_units, test/test_jit.py::TestAliasAnalysis::test_nested_list_construct_not_wildcard, test/test_jit.py::TestAliasAnalysis::test_recursive_calls, test/test_jit.py::TestSaveLoad::test_different_functions, test/test_jit.py::TestSaveLoad::test_different_interfaces, test/test_jit.py::TestSaveLoad::test_different_modules, test/test_jit.py::TestSaveLoad::test_many_collisions, test/test_jit.py::TestSaveLoad::test_save_load_large_string_attribute, test/test_jit.py::TestSaveLoad::test_save_load_meta_tensors, test/test_jit.py::TestSaveLoad::test_save_load_meta_tensors_to_device, test/test_jit.py::TestSaveLoad::test_save_load_params_buffers_submodules, test/test_jit.py::TestSaveLoad::test_save_load_using_pathlib, test/test_jit.py::TestSaveLoad::test_save_load_with_extra_files, test/test_jit.py::TestSaveLoad::test_save_load_with_saved_traced_inputs, test/test_jit.py::TestSaveLoad::test_save_namedtuple_input_only, test/test_jit.py::TestSaveLoad::test_save_namedtuple_input_only_forwardref, test/test_jit.py::TestSaveLoad::test_save_namedtuple_output_only, test/test_jit.py::TestSaveLoad::test_save_nonexit_file, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_functions, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_interfaces, test/test_jit.py::TestSaveLoadFlatbuffer::test_different_modules, test/test_jit.py::TestSaveLoadFlatbuffer::test_many_collisions, test/test_jit.py::TestSaveLoadFlatbuffer::test_module_info_flatbuffer, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_params_buffers_submodules, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_using_pathlib, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_load_with_extra_files, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_namedtuple_input_only, test/test_jit.py::TestSaveLoadFlatbuffer::test_save_namedtuple_output_only, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_inplace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_reciprocal, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_scalar_scalar, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor_inplace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_div_tensor_out, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_linspace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_linspace_out, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_logspace, test/test_jit.py::TestSaveLoadForOpVersion::test_versioned_logspace_out, test/test_jit.py::TestModuleContainers::test_custom_container_forward, test/test_jit.py::TestModuleContainers::test_empty_dict_override_contains, test/test_jit.py::TestModuleContainers::test_module_inplace_construct, test/test_jit.py::TestModuleContainers::test_module_interface_special_methods, test/test_jit.py::TestModuleContainers::test_module_properties, test/test_jit.py::TestModuleContainers::test_moduledict, test/test_jit.py::TestModuleContainers::test_moduledict_getitem, test/test_jit.py::TestModuleContainers::test_moduledict_keyerror, test/test_jit.py::TestModuleContainers::test_normal_list_attribute_with_modules_error, test/test_jit.py::TestModuleContainers::test_parameterdict_script_getitem, test/test_jit.py::TestModuleContainers::test_parameterlist_script_getitem, test/test_jit.py::TestModuleContainers::test_parameterlist_script_iter, test/test_jit.py::TestModuleContainers::test_script_module_list_sequential, test/test_jit.py::TestModuleContainers::test_script_modulelist_index, test/test_jit.py::TestModuleContainers::test_sequential_intermediary_types, test/test_jit.py::TestModuleContainers::test_special_method_with_override, test/test_jit.py::TestModuleContainers::test_typed_module_dict, test/test_jit.py::TestModuleContainers::test_typed_module_list, test/test_jit.py::TestPythonBindings::test_add_input, test/test_jit.py::TestPythonBindings::test_aliasdb, test/test_jit.py::TestPythonBindings::test_canonicalize, test/test_jit.py::TestPythonBindings::test_cu_create_function, test/test_jit.py::TestPythonBindings::test_cu_get_functions, test/test_jit.py::TestPythonBindings::test_graph_create, test/test_jit.py::TestPythonBindings::test_graph_iterator_keepalive, test/test_jit.py::TestPythonBindings::test_invalidation, test/test_jit.py::TestPythonIr::test_param_strides, test/test_jit.py::TestPythonIr::test_permute_inputs_binding, test/test_jit.py::TestPythonIr::test_python_ir_utils, test/test_jit.py::TestPythonIr::test_python_ir_utils_graph, test/test_jit.py::TestFunctionalBlocks::test_subgraph_creation, test/test_jit.py::TestRemoveMutation::test_aten_inplace, test/test_jit.py::TestRemoveMutation::test_common_pytorch_list_ops, test/test_jit.py::TestRemoveMutation::test_if_output, test/test_jit.py::TestRemoveMutation::test_if_output_fail, test/test_jit.py::TestRemoveMutation::test_list_indexing_removal, test/test_jit.py::TestRemoveMutation::test_lists_append, test/test_jit.py::TestRemoveMutation::test_lists_insert, test/test_jit.py::TestRemoveMutation::test_special_mapped_op, test/test_jit.py::TestTorchbind::test_default_args, test/test_jit.py::TestTorchbind::test_hasattr, test/test_jit.py::TestTorchbind::test_lambda_as_constructor, test/test_jit.py::TestTorchbind::test_profiler_custom_op, test/test_jit.py::TestTorchbind::test_staticmethod, test/test_jit.py::TestTorchbind::test_torchbind, test/test_jit.py::TestTorchbind::test_torchbind_attr_exception, test/test_jit.py::TestTorchbind::test_torchbind_class_attr_recursive, test/test_jit.py::TestTorchbind::test_torchbind_class_attribute, test/test_jit.py::TestTorchbind::test_torchbind_deepcopy, test/test_jit.py::TestTorchbind::test_torchbind_def_property_getter_setter, test/test_jit.py::TestTorchbind::test_torchbind_def_property_just_getter, test/test_jit.py::TestTorchbind::test_torchbind_def_property_readwrite, test/test_jit.py::TestTorchbind::test_torchbind_getattr, test/test_jit.py::TestTorchbind::test_torchbind_getstate, test/test_jit.py::TestTorchbind::test_torchbind_instantiate_missing_class, test/test_jit.py::TestTorchbind::test_torchbind_lambda_method, test/test_jit.py::TestTorchbind::test_torchbind_no_init, test/test_jit.py::TestTorchbind::test_torchbind_optional_explicit_attr, test/test_jit.py::TestTorchbind::test_torchbind_pass_wrong_type, test/test_jit.py::TestTorchbind::test_torchbind_pickle_serialization, test/test_jit.py::TestTorchbind::test_torchbind_python_deepcopy, test/test_jit.py::TestTorchbind::test_torchbind_return_instance, test/test_jit.py::TestTorchbind::test_torchbind_return_instance_from_method, test/test_jit.py::TestTorchbind::test_torchbind_return_tuple, test/test_jit.py::TestTorchbind::test_torchbind_save_load, test/test_jit.py::TestTorchbind::test_torchbind_take_as_arg, test/test_jit.py::TestTorchbind::test_torchbind_take_instance_as_method_arg, test/test_jit.py::TestTorchbind::test_torchbind_tracing, test/test_jit.py::TestTorchbind::test_torchbind_tracing_nested, test/test_jit.py::TestModuleInterface::test_freeze_module_with_inplace_mutation_in_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_interface_and_fork, test/test_jit.py::TestModuleInterface::test_freeze_module_with_mutated_interface, test/test_jit.py::TestModuleInterface::test_freeze_module_with_setattr_in_interface, test/test_jit.py::TestModuleInterface::test_module_apis_interface, test/test_jit.py::TestModuleInterface::test_module_doc_string, test/test_jit.py::TestModuleInterface::test_module_interface, test/test_jit.py::TestModuleInterface::test_module_interface_inheritance, test/test_jit.py::TestModuleInterface::test_module_interface_subtype, test/test_jit.py::TestModuleInterface::test_module_swap, test/test_jit.py::TestModuleInterface::test_module_swap_no_lazy_compile, test/test_jit.py::TestModuleInterface::test_module_swap_no_module_interface, test/test_jit.py::TestModuleInterface::test_module_swap_wrong_module, test/test_jit.py::TestModuleInterface::test_not_submodule_interface_call, test/test_jit.py::TestModuleInterface::test_script_module_as_interface_swap, test/test_jit.py::TestWith::test_with_as, test/test_jit.py::TestWith::test_with_errors, test/test_jit.py::TestWith::test_with_exceptions, test/test_jit.py::TestWith::test_with_no_as, test/test_jit.py::TestWith::test_with_no_grad, test/test_jit.py::TestWith::test_with_record_function, test/test_jit.py::TestEnum::test_closed_over_enum_constant, test/test_jit.py::TestEnum::test_enum_as_const, test/test_jit.py::TestEnum::test_enum_as_module_attribute, test/test_jit.py::TestEnum::test_enum_comp, test/test_jit.py::TestEnum::test_enum_comp_diff_classes, test/test_jit.py::TestEnum::test_enum_explicit_script, test/test_jit.py::TestEnum::test_enum_iterate, test/test_jit.py::TestEnum::test_enum_ivalue_type, test/test_jit.py::TestEnum::test_enum_module_return, test/test_jit.py::TestEnum::test_enum_name, test/test_jit.py::TestEnum::test_enum_return, test/test_jit.py::TestEnum::test_enum_value, test/test_jit.py::TestEnum::test_enum_value_types, test/test_jit.py::TestEnum::test_heterogenous_value_type_enum_error, test/test_jit.py::TestEnum::test_non_existent_enum_value, test/test_jit.py::TestEnum::test_string_enum_as_module_attribute, test/test_jit.py::TestEnum::test_typed_enum, test/test_jit.py::TestStringFormatting::test_modulo_operator, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_alternate_digit_placeholder, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_capital_exponent_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_char_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_char_placeholder_and_true_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_digit_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_digit_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_double_percent_in_string, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_exponent_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_float_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_float_placeholder_and_float_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_lowercase_exponent_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_multiple_placeholders, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_percent_in_string, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_digit_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_format_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_string_placeholder_and_string_variable, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_subscript, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_too_few_arguments, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_too_many_arguments, test/test_jit.py::TestStringFormatting::test_string_interpolation_with_unknown_format_specifier, test/test_jit.py::TestProfiler::test_aliasing_merge, test/test_jit.py::TestProfiler::test_autograd_fallback_graph, test/test_jit.py::TestProfiler::test_fallback_graph_not_specialized, test/test_jit.py::TestProfiler::test_iterative_fusion, test/test_jit.py::TestProfiler::test_local_fusion_strategy, test/test_jit.py::TestProfiler::test_not_fusing_scalar_ops, test/test_jit.py::TestProfiler::test_not_optimizing_property, test/test_jit.py::TestProfiler::test_specialize_backward, test/test_jit.py::TestProfiler::test_specialized_types, test/test_jit.py::TestProfiler::test_tensor_constant, test/test_jit.py::TestProfiler::test_tensor_type_not_determined_by_inputs, test/test_jit.py::TestProfiler::test_use_not_profiled, test/test_jit.py::TestSlice::test_module_list_slicing, test/test_jit.py::TestSlice::test_slice_as_variable, test/test_jit.py::TestSlice::test_slice_dynamic_index, test/test_jit.py::TestSlice::test_slice_kwarg, test/test_jit.py::TestSlice::test_slice_one_none, test/test_jit.py::TestSlice::test_slice_start_stop, test/test_jit.py::TestSlice::test_slice_start_stop_step, test/test_jit.py::TestSlice::test_slice_start_stop_with_none, test/test_jit.py::TestSlice::test_slice_stop_clipped, test/test_jit.py::TestSlice::test_slice_stop_only, test/test_jit.py::TestSlice::test_slice_stop_only_with_nones, test/test_jit.py::TestSlice::test_slice_string, test/test_jit.py::TestSlice::test_slice_tensor, test/test_jit.py::TestSlice::test_slice_tensor_multidim, test/test_jit.py::TestSlice::test_slice_tensor_multidim_with_dots, test/test_jit.py::TestSlice::test_slice_three_nones, test/test_jit.py::TestSlice::test_slice_two_nones, test/test_jit.py::TestSlice::test_tuple_slicing, test/test_jit.py::TestIgnorableArgs::test_add_out_ignorable_args, test/test_jit.py::TestIgnorableArgs::test_slice_ignorable_args_for_slice, test/test_jit.py::TestHooks::test_forward_tuple_input, test/test_jit.py::TestHooks::test_hook_compilation_hint, test/test_jit.py::TestHooks::test_hook_hook_name_collision, test/test_jit.py::TestHooks::test_hook_method_name_collision, test/test_jit.py::TestHooks::test_module_direct_forward_invocation, test/test_jit.py::TestHooks::test_module_forward_multiple_inputs, test/test_jit.py::TestHooks::test_module_forward_single_input, test/test_jit.py::TestHooks::test_module_hook_return_nothing, test/test_jit.py::TestHooks::test_module_multiple_hooks_multiple_inputs, test/test_jit.py::TestHooks::test_module_multiple_hooks_single_input, test/test_jit.py::TestHooks::test_module_no_forward_input, test/test_jit.py::TestHooks::test_module_same_hook_repeated, test/test_jit.py::TestHooks::test_submodule_called_directly_with_hooks, test/test_jit.py::TestHooks::test_submodule_direct_forward_invocation, test/test_jit.py::TestHooks::test_submodule_forward_multiple_inputs, test/test_jit.py::TestHooks::test_submodule_forward_single_input, test/test_jit.py::TestHooks::test_submodule_forward_single_input_return_not_tupled, test/test_jit.py::TestHooks::test_submodule_hook_return_nothing, test/test_jit.py::TestHooks::test_submodule_multiple_hooks_multiple_inputs, test/test_jit.py::TestHooks::test_submodule_multiple_hooks_single_input, test/test_jit.py::TestHooks::test_submodule_no_forward_input, test/test_jit.py::TestHooks::test_submodule_same_hook_repeated, test/test_jit.py::TestHooks::test_wrong_hook_signatures, test/test_jit.py::TestHooks::test_wrong_pre_hook_signatures, test/test_jit.py::TestWarn::test_warn, test/test_jit.py::TestWarn::test_warn_multiple_calls_multiple_warnings, test/test_jit.py::TestWarn::test_warn_multiple_calls_same_func_diff_stack, test/test_jit.py::TestWarn::test_warn_once_per_func, test/test_jit.py::TestWarn::test_warn_once_per_func_in_loop, test/test_jit.py::TestWarn::test_warn_only_once, test/test_jit.py::TestWarn::test_warn_only_once_in_loop_func, test/test_jit.py::TestIsinstance::test_bool, test/test_jit.py::TestIsinstance::test_dict, test/test_jit.py::TestIsinstance::test_dict_nested, test/test_jit.py::TestIsinstance::test_dict_no_contained_type, test/test_jit.py::TestIsinstance::test_dict_tensor, test/test_jit.py::TestIsinstance::test_empty_container_special_cases, test/test_jit.py::TestIsinstance::test_empty_container_throws_warning_in_eager, test/test_jit.py::TestIsinstance::test_float, test/test_jit.py::TestIsinstance::test_if_else, test/test_jit.py::TestIsinstance::test_in_if, test/test_jit.py::TestIsinstance::test_in_while_loop, test/test_jit.py::TestIsinstance::test_int, test/test_jit.py::TestIsinstance::test_list, test/test_jit.py::TestIsinstance::test_list_nested, test/test_jit.py::TestIsinstance::test_list_no_contained_type, test/test_jit.py::TestIsinstance::test_list_tensor, test/test_jit.py::TestIsinstance::test_list_tensor_type_true, test/test_jit.py::TestIsinstance::test_nontuple_container_rhs_throws_in_eager, test/test_jit.py::TestIsinstance::test_optional, test/test_jit.py::TestIsinstance::test_optional_nested, test/test_jit.py::TestIsinstance::test_optional_no_contained_type, test/test_jit.py::TestIsinstance::test_optional_none, test/test_jit.py::TestIsinstance::test_tensor_type_false, test/test_jit.py::TestIsinstance::test_tuple, test/test_jit.py::TestIsinstance::test_tuple_nested, test/test_jit.py::TestIsinstance::test_tuple_no_contained_type, test/test_jit.py::TestIsinstance::test_tuple_rhs, test/test_jit.py::TestIsinstance::test_tuple_tensor, test/test_jit.py::TestIsinstance::test_type_refinement, test/test_jit.py::TestPythonBuiltinOP::test_add, test/test_jit.py::TestPythonBuiltinOP::test_adv_indexing_list, test/test_jit.py::TestPythonBuiltinOP::test_advancedindex, test/test_jit.py::TestPythonBuiltinOP::test_gather, test/test_jit.py::TestPythonBuiltinOP::test_index, test/test_jit.py::TestPythonBuiltinOP::test_index_ellipses, test/test_jit.py::TestPythonBuiltinOP::test_inf, test/test_jit.py::TestPythonBuiltinOP::test_matmul_py3, test/test_jit.py::TestPythonBuiltinOP::test_mul, test/test_jit.py::TestPythonBuiltinOP::test_pow, test/test_jit.py::TestPythonBuiltinOP::test_random, test/test_jit.py::TestPythonBuiltinOP::test_slice, test/test_jit.py::TestPythonBuiltinOP::test_stepped_tuple_slicing, test/test_jit.py::TestPythonBuiltinOP::test_str_to_float, test/test_jit.py::TestPythonBuiltinOP::test_triple, test/test_jit.py::TestTyping::test_bool_list_io, test/test_jit.py::TestTyping::test_dict_comprehension, test/test_jit.py::TestTyping::test_dict_comprehension_scope, test/test_jit.py::TestTyping::test_dict_comprehension_with_type_annotation, test/test_jit.py::TestTyping::test_dict_in_not_in, test/test_jit.py::TestTyping::test_dict_invalid_annotations, test/test_jit.py::TestTyping::test_dict_type_refinement_annotation_key_mismatch, test/test_jit.py::TestTyping::test_dict_type_refinement_annotation_value_mismatch, test/test_jit.py::TestTyping::test_for_in_dict, test/test_jit.py::TestTyping::test_for_in_string, test/test_jit.py::TestTyping::test_for_tuple_assign, test/test_jit.py::TestTyping::test_for_tuple_unpack, test/test_jit.py::TestTyping::test_inherited_annotations_python_310, test/test_jit.py::TestTyping::test_list_io, test/test_jit.py::TestTyping::test_list_iterables, test/test_jit.py::TestTyping::test_list_sum, test/test_jit.py::TestTyping::test_list_type_refinement_annotation_element_mismatch, test/test_jit.py::TestTyping::test_list_unification, test/test_jit.py::TestTyping::test_multiple_assign, test/test_jit.py::TestTyping::test_namedtuple_error_source_attribution, test/test_jit.py::TestTyping::test_namedtuple_good_error, test/test_jit.py::TestTyping::test_namedtuple_py2, test/test_jit.py::TestTyping::test_namedtuple_redefine, test/test_jit.py::TestTyping::test_nested_list, test/test_jit.py::TestTyping::test_opt_opt_refinement, test/test_jit.py::TestTyping::test_optional_conversion, test/test_jit.py::TestTyping::test_optional_refinement, test/test_jit.py::TestTyping::test_optional_tuple, test/test_jit.py::TestTyping::test_singleton_tuple_unpack, test/test_jit.py::TestTyping::test_sum_list_diff_elms, test/test_jit.py::TestTyping::test_sum_list_empty, test/test_jit.py::TestTyping::test_sum_list_literal, test/test_jit.py::TestTyping::test_sum_list_one, test/test_jit.py::TestTyping::test_sum_list_wrong_type, test/test_jit.py::TestTyping::test_tuple_assignments, test/test_jit.py::TestTyping::test_tuple_create_return, test/test_jit.py::TestTyping::test_tuple_io, test/test_jit.py::TestTyping::test_tuple_keyword, test/test_jit.py::TestTyping::test_tuple_specialization, test/test_jit.py::TestHash::test_hash_bool, test/test_jit.py::TestHash::test_hash_device, test/test_jit.py::TestHash::test_hash_float, test/test_jit.py::TestHash::test_hash_int, test/test_jit.py::TestHash::test_hash_none, test/test_jit.py::TestHash::test_hash_string, test/test_jit.py::TestHash::test_hash_tensor, test/test_jit.py::TestHash::test_hash_tuple, test/test_jit.py::TestHash::test_hash_tuple_nested_unhashable_type, test/test_jit.py::TestComplex::test_binary_op_complex_tensor, test/test_jit.py::TestComplex::test_comparison_ops, test/test_jit.py::TestComplex::test_complex_constants_and_ops, test/test_jit.py::TestComplex::test_complex_constructor, test/test_jit.py::TestComplex::test_complex_list_sum, test/test_jit.py::TestComplex::test_complex_parse, test/test_jit.py::TestComplex::test_complexdict, test/test_jit.py::TestComplex::test_complexlist, test/test_jit.py::TestComplex::test_div, test/test_jit.py::TestComplex::test_infj_nanj_pickle, test/test_jit.py::TestComplex::test_pickle, test/test_jit.py::TestComplex::test_script, test/test_jit.py::TestComplex::test_tensor_attributes, test/test_jit.py::TestComplex::test_torch_complex_constructor_with_tensor, test/test_jit.py::TestJitUtils::test_checkscriptassertraisesregex, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_hybrid, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_keyword_only, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_positional_only, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_positional_or_keyword, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_var_keyword, test/test_jit.py::TestJitUtils::test_get_callable_argument_names_var_positional, test/test_jit.py::TestJitUtils::test_no_tracer_warn_context_manager, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_annotation_and_init_annotation, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_annotation_only, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_class_level_jit_annotation, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_dict, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_dict_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_list, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_list_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_optional, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_empty_tensor, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_falsy_base_type, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_nonempty_container, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_attribute, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_dict, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_dict_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_list, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_list_lowercase, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_jit_empty_optional, test/test_jit.py::TestScriptModuleInstanceAttributeTypeAnnotation::test_annotated_with_torch_jit_import, test/test_jit.py::TestTypesAndAnnotation::test_annotate_outside_init, test/test_jit.py::TestTypesAndAnnotation::test_bad_types, test/test_jit.py::TestTypesAndAnnotation::test_ignore_with_types, test/test_jit.py::TestTypesAndAnnotation::test_ignoring_fn_with_nonscriptable_types, test/test_jit.py::TestTypesAndAnnotation::test_ignoring_module_attributes, test/test_jit.py::TestTypesAndAnnotation::test_inferred_type_error_message, test/test_jit.py::TestTypesAndAnnotation::test_mismatched_annotation, test/test_jit.py::TestTypesAndAnnotation::test_optional_no_element_type_annotation, test/test_jit.py::TestTypesAndAnnotation::test_parser_bug, test/test_jit.py::TestTypesAndAnnotation::test_pep585_type, test/test_jit.py::TestTypesAndAnnotation::test_python_callable, test/test_jit.py::TestTypesAndAnnotation::test_reannotate, test/test_jit.py::TestTypesAndAnnotation::test_tuple_no_element_type_annotation, test/test_jit.py::TestTypesAndAnnotation::test_type_annotate_py3, test/test_jit.py::TestTypesAndAnnotation::test_types_as_values, test/test_jit.py::TestTypesAndAnnotation::test_unimported_type_resolution, test/test_jit.py::TestMisc::test_broadcasting_list, test/test_jit.py::TestMisc::test_export_opnames_interface, test/test_jit.py::TestMisc::test_future_isinstance, test/test_jit.py::TestMisc::test_hacked_twin, test/test_jit.py::TestMisc::test_if_returning_any, test/test_jit.py::TestMisc::test_jit_get_operation_order, test/test_jit.py::TestMisc::test_joined_str, test/test_jit.py::TestMisc::test_kwarg_support, test/test_jit.py::TestMisc::test_legacy_tensor_constructor, test/test_jit.py::TestMisc::test_list_literal_infer, test/test_jit.py::TestMisc::test_math_inf, test/test_jit.py::TestMisc::test_parse_ir_annotate, test/test_jit.py::TestMisc::test_parse_ir_single_element_tensor_negative, test/test_jit.py::TestMisc::test_parse_ir_single_element_tensor_positive, test/test_jit.py::TestMisc::test_pow_multiple_dtype, test/test_jit.py::TestMisc::test_script_many_decorators, test/test_jit.py::TestMisc::test_str_refine_any, test/test_jit.py::TestMisc::test_subexpression_Dict_int_Future, test/test_jit.py::TestMisc::test_subexpression_Future_annotate, test/test_jit.py::TestMisc::test_subexpression_List_Future, test/test_jit.py::TestMisc::test_subexpression_Optional, test/test_jit.py::TestMisc::test_subexpression_Tuple_int_int_Future, test/test_jit.py::TestMisc::test_tuple_subscripted_assign, test/test_jit.py::TestMisc::test_unsafe_hacked_twin, test/test_jit.py::TestUpgraders::test_add_value_to_version_map, test/test_jit.py::TestUpgraders::test_aten_div_scalar_at_3, test/test_jit.py::TestUpgraders::test_aten_div_tensor_at_3, test/test_jit.py::TestUpgraders::test_aten_div_tensor_out_at_3, test/test_jit.py::TestUpgraders::test_aten_full_at_4, test/test_jit.py::TestUpgraders::test_aten_full_other_variants, test/test_jit.py::TestUpgraders::test_aten_full_out_at_4, test/test_jit.py::TestUpgraders::test_aten_linspace, test/test_jit.py::TestUpgraders::test_aten_linspace_out, test/test_jit.py::TestUpgraders::test_aten_logspace, test/test_jit.py::TestUpgraders::test_aten_logspace_out, test/test_jit.py::TestUpgraders::test_aten_test_serialization, test/test_jit.py::TestUpgraders::test_populated_test_upgrader_graph, test/test_jit.py::TestUpgraders::test_populated_upgrader_graph, test/test_jit.py::TestTensorCreationOps::test_randperm_default_dtype, test/test_jit.py::TestTensorCreationOps::test_randperm_specifed_dtype, test/test_jit.py::TestTensorCreationOps::test_tril_indices_default_dtype, test/test_jit.py::TestTensorCreationOps::test_tril_indices_specified_dtype, test/test_jit.py::TestTensorCreationOps::test_triu_indices_default_dtype, test/test_jit.py::TestTensorCreationOps::test_triu_indices_specified_dtype, test/test_jit.py::TestModuleAPIs::test_customized_state_dict_methods, test/test_jit.py::TestModuleAPIs::test_default_state_dict_methods, test/test_jit.py::TestModuleAPIs::test_submodule_customized_state_dict_methods, test/test_jit.py::TestScriptProfile::test_basic, test/test_jit.py::TestScriptProfile::test_empty, test/test_jit.py::TestScriptProfile::test_multi, test/test_jit.py::TestScriptProfile::test_script, test/test_jit.py::TestScriptProfile::test_section, test/test_jit.py::TestFunctionalToInplaceActivation::test_check_no_type_promotion, test/test_jit.py::TestFunctionalToInplaceActivation::test_functional_to_inplace_activation, test/test_jit.py::TestFunctionalToInplaceActivation::test_no_functional_to_inplace, test/test_jit.py::TestFunctionalToInplaceActivation::test_resnet18_correctness, test/test_jit.py::TestInplaceToFunctionalActivation::test_inplace_to_functional_activation, test/test_jit.py::TestInplaceToFunctionalActivation::test_resnet18_correctness, test/test_jit.py::TestParametrization::test_scriptable, test/test_jit.py::TestParametrization::test_traceable, test/test_jit.py::TestGetDefaultAttr::test_getattr_named_tuple, test/test_jit.py::TestGetDefaultAttr::test_getattr_tuple, test/test_jit.py::TestGetDefaultAttr::test_getattr_with_default, test/test_jit.py::TestAtenPow::test_aten_pow_zero_negative_exponent, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_1, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_2, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_3, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_fuse_activation_with_pack_ops_linear_conv2d_4, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_insert_pre_packed_linear_before_inline_and_conv_2d_op, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_insert_pre_packed_linear_op, test/test_jit.py::TestOptimizeForMobilePreserveDebugInfo::test_replace_conv1d_with_conv2d, test/test_jit.py::TestUnion::test_check_union_annotation, test/test_jit.py::TestUnion::test_union_T_None_is_equivalent_to_optional_T, test/test_jit.py::TestUnion::test_union_argument_order_is_ignored, test/test_jit.py::TestUnion::test_union_argument_order_is_ignored_container, test/test_jit.py::TestUnion::test_union_as_annotation, test/test_jit.py::TestUnion::test_union_as_annotation_in_typed_container, test/test_jit.py::TestUnion::test_union_as_annotation_py2, test/test_jit.py::TestUnion::test_union_as_dict_key, test/test_jit.py::TestUnion::test_union_as_dict_value, test/test_jit.py::TestUnion::test_union_as_internal_tuple_type, test/test_jit.py::TestUnion::test_union_branching_does_not_autoinfer_undeclared_union, test/test_jit.py::TestUnion::test_union_branching_does_not_widen_existing_inferred_type, test/test_jit.py::TestUnion::test_union_branching_with_union_return_and_homogenous_types, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type_empty_container, test/test_jit.py::TestUnion::test_union_does_not_replace_existing_annotated_type_union, test/test_jit.py::TestUnion::test_union_in_class_constructor, test/test_jit.py::TestUnion::test_union_memory_aliasing, test/test_jit.py::TestUnion::test_union_module_with_union_class_variable, test/test_jit.py::TestUnion::test_union_module_with_union_instance_variable, test/test_jit.py::TestUnion::test_union_optional_of_union_is_flattened, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_container, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_optional, test/test_jit.py::TestUnion::test_union_redundant_arguments_are_skipped_subtyping, test/test_jit.py::TestUnion::test_union_return_type, test/test_jit.py::TestUnion::test_union_schema_matching_on_internal_type, test/test_jit.py::TestUnion::test_union_serialization_preserves_type_annotations, test/test_jit.py::TestUnion::test_union_subclasses_larger_union, test/test_jit.py::TestUnion::test_union_subtractive_refinement, test/test_jit.py::TestUnion::test_union_subtractive_refinement_with_container, test/test_jit.py::TestUnion::test_union_type_refinement, test/test_jit.py::TestUnion::test_union_type_refinement_internal_declaration, test/test_jit.py::TestUnion::test_union_type_refinement_partial_static_refinement_tuple_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_partial_static_refinement_union_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_statically_false, test/test_jit.py::TestUnion::test_union_type_refinement_statically_true, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs_noncontained_type, test/test_jit.py::TestUnion::test_union_type_refinement_tuple_rhs_union, test/test_jit.py::TestUnion::test_union_type_refinement_union_rhs, test/test_jit.py::TestUnion::test_union_variable_can_be_reassigned, test/test_jit.py::TestUnion::test_union_with_collections, test/test_jit.py::TestUnion::test_union_with_dict_assignment, test/test_jit.py::TestUnion::test_union_with_enum, test/test_jit.py::TestUnion::test_union_with_list_assignment, test/test_jit.py::TestUnion::test_union_with_scalar_values, test/test_jit.py::TestUnion::test_unions_of_a_single_argument_vanish, test/test_jit.py::TestUnion::test_unions_of_unions_are_flattened, test/test_jit.py::TestBatchMM::test_batch_mm_no_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_permitted_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation_if_node, test/test_jit.py::TestBatchMM::test_batch_mm_prohibited_mutation_multiple_adds, test/test_jit.py::TestBatchMM::test_batch_mm_side_permitted_mutation, test/test_jit.py::TestBatchMM::test_batch_mm_side_prohibited_mutation_common_side, test/test_jit.py::TestBatchMM::test_batch_mm_side_prohibited_mutation_uncommon_side, test/test_jit.py::TestDtypeAnalysis::test_binary_scalar, test/test_jit.py::TestDtypeAnalysis::test_binary_tensors, test/test_jit.py::TestDtypeAnalysis::test_combined, test/test_jit.py::TestDtypeAnalysis::test_conv_no_mixed_args, test/test_jit.py::TestDtypeAnalysis::test_custom_rules, test/test_jit.py::TestDtypeAnalysis::test_unary, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_expected_failure_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_avg_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_batch_norm_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_conv_transpose2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_hardswish_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool2d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_max_pool3d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_ints_nn_functional_prelu_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_avg_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_batch_norm_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv1d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_complex128, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_complex64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_conv_transpose2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_hardswish_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool1d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool2d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_float64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int64, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_int8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_max_pool3d_cpu_uint8, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_bfloat16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float16, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float32, test/test_jit.py::TestDtypeCustomRulesCPU::test_custom_rules_nn_functional_prelu_cpu_float64, test/test_jit.py::TestDeviceAnalysis::test_custom_device_op, test/test_jit.py::TestDeviceAnalysis::test_device_apply, test/test_jit.py::TestDeviceAnalysis::test_device_arg, test/test_jit.py::TestDeviceAnalysis::test_device_if_propagation, test/test_jit.py::TestDeviceAnalysis::test_if_loop_mix, test/test_jit.py::TestDeviceAnalysis::test_loop_device_change, test/test_jit.py::TestDeviceAnalysis::test_loop_simple, test/test_jit.py::TestDeviceAnalysis::test_mobilenet, test/test_jit.py::TestDeviceAnalysis::test_nested_loops, test/test_jit.py::TestDeviceAnalysis::test_set_dtype, test/test_jit.py::TestDeviceAnalysis::test_simple, test/test_jit.py::TestDeviceAnalysis::test_tensor_as_fns, test/test_jit.py::TestDeviceAnalysis::test_while_change, test/test_jit.py::TestDeviceAnalysis::test_zerodim_cpu, test/test_jit.py::TestDeviceAnalysis::test_zerodim_gpu, test/test_jit.py::TestDeviceAnalysis::test_zerodim_no_device, test/test_jit.py::TestDCE::test_mutated_loop, test/test_jit.py::TestDCE::test_mutated_simple, test/test_jit.py::TestDCE::test_setattr_no_aliasdb, test/test_jit.py::TestDCE::test_setattr_removed, test/test_jit.py::TestSparse::test_freeze_sparse_coo, test/test_jit.py::TestSparse::test_freeze_sparse_csr, test/test_jit.py::TestSparse::test_serialize_sparse_coo, test/test_jit.py::TestSparse::test_serialize_sparse_csr, test/test_jit.py::TestTensorMethods::test_getitem, test/test_jit.py::TestTensorMethods::test_getitem_invalid, test/test_jit.py::TestDataclasses::test__post_init__, test/test_jit.py::TestDataclasses::test_comparators, test/test_jit.py::TestDataclasses::test_custom__eq__, test/test_jit.py::TestDataclasses::test_default_factories, test/test_jit.py::TestDataclasses::test_init_vars, test/test_jit.py::TestDataclasses::test_no_source, test/test_jit.py::TestDataclasses::test_use_unregistered_dataclass_raises, test/test_jit.py::TestGenerator::test_default_generator, test/test_jit.py::TestGenerator::test_generator_arg, test/test_jit.py::TestGenerator::test_save_load, test/test_jit.py::TestGenerator::test_script, test/test_jit.py::TestGenerator::test_trace, test/test_jit.py::TestJitProfiler::test_profiler, test/test_jit.py::TestJit::test_ModuleList, test/test_jit.py::TestJit::test_Sequential, test/test_jit.py::TestJit::test_T_mT_H_mH, test/test_jit.py::TestJit::test_add_relu_fusion, test/test_jit.py::TestJit::test_arg_configurations, test/test_jit.py::TestJit::test_attrs, test/test_jit.py::TestJit::test_batchnorm, test/test_jit.py::TestJit::test_big, test/test_jit.py::TestJit::test_conj_transpose, test/test_jit.py::TestJit::test_constant_insertion, test/test_jit.py::TestJit::test_constant_prop_aliasing_type, test/test_jit.py::TestJit::test_constant_prop_exception, test/test_jit.py::TestJit::test_constant_prop_if_constant, test/test_jit.py::TestJit::test_constant_prop_if_inline, test/test_jit.py::TestJit::test_constant_prop_loop_constant, test/test_jit.py::TestJit::test_constant_prop_nested, test/test_jit.py::TestJit::test_constant_prop_none, test/test_jit.py::TestJit::test_constant_prop_print, test/test_jit.py::TestJit::test_constant_prop_rand, test/test_jit.py::TestJit::test_constant_prop_remove_output, test/test_jit.py::TestJit::test_constant_prop_simple, test/test_jit.py::TestJit::test_constants_pkl, test/test_jit.py::TestJit::test_cpp, test/test_jit.py::TestJit::test_cse, test/test_jit.py::TestJit::test_cse_not_introduce_aliasing, test/test_jit.py::TestJit::test_cu_escaped_number, test/test_jit.py::TestJit::test_cuda_export_restore, test/test_jit.py::TestJit::test_debug_flush_compilation_cache, test/test_jit.py::TestJit::test_decompose_addmm, test/test_jit.py::TestJit::test_device_not_equal, test/test_jit.py::TestJit::test_diff_subgraph_clones_constants, test/test_jit.py::TestJit::test_disabled, test/test_jit.py::TestJit::test_dropout, test/test_jit.py::TestJit::test_dropout_cuda, test/test_jit.py::TestJit::test_dropout_func_requires_grad, test/test_jit.py::TestJit::test_dropout_module_requires_grad, test/test_jit.py::TestJit::test_einsum, test/test_jit.py::TestJit::test_element_size, test/test_jit.py::TestJit::test_expand_fold_quant_inputs, test/test_jit.py::TestJit::test_expand_quantlint, test/test_jit.py::TestJit::test_export_batchnorm, test/test_jit.py::TestJit::test_export_dropout, test/test_jit.py::TestJit::test_export_lstm, test/test_jit.py::TestJit::test_export_opnames, test/test_jit.py::TestJit::test_export_rnn, test/test_jit.py::TestJit::test_flags, test/test_jit.py::TestJit::test_function_default_values, test/test_jit.py::TestJit::test_hide_source_ranges_context_manager, test/test_jit.py::TestJit::test_import_method, test/test_jit.py::TestJit::test_inferred_as_tensor, test/test_jit.py::TestJit::test_layout, test/test_jit.py::TestJit::test_matrix_conj_transpose, test/test_jit.py::TestJit::test_matrix_transpose, test/test_jit.py::TestJit::test_module_default_values, test/test_jit.py::TestJit::test_mutable_default_values, test/test_jit.py::TestJit::test_native_dropout_corner_case, test/test_jit.py::TestJit::test_nn_conv, test/test_jit.py::TestJit::test_nn_lp_pool1d, test/test_jit.py::TestJit::test_nn_lp_pool2d, test/test_jit.py::TestJit::test_nn_padding, test/test_jit.py::TestJit::test_nn_padding_functional, test/test_jit.py::TestJit::test_no_erroneous_warnings, test/test_jit.py::TestJit::test_non_ascii_string, test/test_jit.py::TestJit::test_numel, test/test_jit.py::TestJit::test_pattern_based_module_rewrite, test/test_jit.py::TestJit::test_pattern_based_rewrite, test/test_jit.py::TestJit::test_pattern_based_rewrite_with_source_range_preserved, test/test_jit.py::TestJit::test_peephole_optimize_shape_ops, test/test_jit.py::TestJit::test_pretty_printer, test/test_jit.py::TestJit::test_print_classes_module, test/test_jit.py::TestJit::test_print_op_module, test/test_jit.py::TestJit::test_print_torch_ops_modules, test/test_jit.py::TestJit::test_python_bindings, test/test_jit.py::TestJit::test_python_ir, test/test_jit.py::TestJit::test_python_ivalue, test/test_jit.py::TestJit::test_pytorch_jit_env_off, test/test_jit.py::TestJit::test_recursive_cse, test/test_jit.py::TestJit::test_repeat_interleave_script, test/test_jit.py::TestJit::test_restore_device, test/test_jit.py::TestJit::test_restore_device_cuda, test/test_jit.py::TestJit::test_restore_shared_storage_on_cuda, test/test_jit.py::TestJit::test_script_autograd_grad, test/test_jit.py::TestJit::test_script_backward, test/test_jit.py::TestJit::test_script_backward_twice, test/test_jit.py::TestJit::test_script_bool_literal_conversion, test/test_jit.py::TestJit::test_script_fn_pkl, test/test_jit.py::TestJit::test_script_fn_valid_name, test/test_jit.py::TestJit::test_script_tensor_type, test/test_jit.py::TestJit::test_shape_analysis_broadcast, test/test_jit.py::TestJit::test_shape_analysis_masked_select, test/test_jit.py::TestJit::test_shape_analysis_unsqueeze_in_loop, test/test_jit.py::TestJit::test_sparse_csr_tensors, test/test_jit.py::TestJit::test_sparse_tensors, test/test_jit.py::TestJit::test_torch_complex, test/test_jit.py::TestJit::test_torch_load_error, test/test_jit.py::TestJit::test_torch_load_zipfile_check, test/test_jit.py::TestJit::test_torch_ops_kwonly, test/test_jit.py::TestJit::test_torch_ops_overloaded, test/test_jit.py::TestJit::test_torch_sum, test/test_jit.py::TestJit::test_trace_retains_train, test/test_jit.py::TestJit::test_train_eval, test/test_jit.py::TestJit::test_transpose, test/test_jit.py::TestJit::test_unchecked_cast, test/test_jit.py::TestJit::test_unique_state_dict, test/test_jit.py::TestJit::test_verify, test/test_jit.py::TestJit::test_warnings, test/test_jit.py::TestFrontend::test_dictionary_as_example_inputs_for_jit_trace, test/test_jit.py::TestFrontend::test_instancing_error, test/test_jit.py::TestScript::test_add_out, test/test_jit.py::TestScript::test_add_tuple_different_types, test/test_jit.py::TestScript::test_add_tuple_non_optional, test/test_jit.py::TestScript::test_add_tuple_optional, test/test_jit.py::TestScript::test_add_tuple_same_types, test/test_jit.py::TestScript::test_addmm_grad, test/test_jit.py::TestScript::test_alias_covariant_type_containers, test/test_jit.py::TestScript::test_all, test/test_jit.py::TestScript::test_annot_ast_mypy_fn, test/test_jit.py::TestScript::test_annot_ast_mypy_method, test/test_jit.py::TestScript::test_annot_ast_py3_fn, test/test_jit.py::TestScript::test_annot_ast_py3_method, test/test_jit.py::TestScript::test_annot_string_mypy_fn, test/test_jit.py::TestScript::test_annot_string_mypy_method, test/test_jit.py::TestScript::test_annot_string_py3_fn, test/test_jit.py::TestScript::test_annot_string_py3_method, test/test_jit.py::TestScript::test_annotated_script_fn, test/test_jit.py::TestScript::test_annotated_script_fn_arg_mismatch, test/test_jit.py::TestScript::test_annotated_script_fn_return_mismatch, test/test_jit.py::TestScript::test_annotated_script_method, test/test_jit.py::TestScript::test_annoying_doubles, test/test_jit.py::TestScript::test_any, test/test_jit.py::TestScript::test_assert_is_scripting_metacompile, test/test_jit.py::TestScript::test_assertion_optional_refinement, test/test_jit.py::TestScript::test_attr_module_constants, test/test_jit.py::TestScript::test_attr_qscheme_script, test/test_jit.py::TestScript::test_attribute_in_init, test/test_jit.py::TestScript::test_attribute_serialization, test/test_jit.py::TestScript::test_attribute_unpickling, test/test_jit.py::TestScript::test_augmented_assign, test/test_jit.py::TestScript::test_autodiff_complex, test/test_jit.py::TestScript::test_backend_cudnn_enabled, test/test_jit.py::TestScript::test_bad_multiline_annotations, test/test_jit.py::TestScript::test_bailout_loop_carried_deps_name_clash, test/test_jit.py::TestScript::test_bailout_loop_counter_transition, test/test_jit.py::TestScript::test_batch_norm_inference_backward_cuda, test/test_jit.py::TestScript::test_batchnorm_fuser_cpu, test/test_jit.py::TestScript::test_big_float_literals, test/test_jit.py::TestScript::test_big_int_literals, test/test_jit.py::TestScript::test_binary_op_shape, test/test_jit.py::TestScript::test_bitwise_ops, test/test_jit.py::TestScript::test_block_input_grad_in_loop, test/test_jit.py::TestScript::test_bool_augassign_bitwise_and, test/test_jit.py::TestScript::test_bool_augassign_bitwise_or, test/test_jit.py::TestScript::test_bool_augassign_bitwise_xor, test/test_jit.py::TestScript::test_bool_dispatch, test/test_jit.py::TestScript::test_boolean_literal_constant_metacompile, test/test_jit.py::TestScript::test_break_continue_error, test/test_jit.py::TestScript::test_breaks_continues, test/test_jit.py::TestScript::test_builtin_args, test/test_jit.py::TestScript::test_builtin_args_fails, test/test_jit.py::TestScript::test_builtin_function_attributes, test/test_jit.py::TestScript::test_builtin_use_as_value, test/test_jit.py::TestScript::test_call_ge, test/test_jit.py::TestScript::test_call_python_fn_from_script_fn, test/test_jit.py::TestScript::test_call_python_fn_from_script_module, test/test_jit.py::TestScript::test_call_python_fn_from_traced_module, test/test_jit.py::TestScript::test_call_python_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_python_mod_from_script_fn, test/test_jit.py::TestScript::test_call_python_mod_from_script_module, test/test_jit.py::TestScript::test_call_python_mod_from_traced_module, test/test_jit.py::TestScript::test_call_python_mod_from_tracing_fn, test/test_jit.py::TestScript::test_call_script_fn_from_script_fn, test/test_jit.py::TestScript::test_call_script_fn_from_script_module, test/test_jit.py::TestScript::test_call_script_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_script_mod_from_script_fn, test/test_jit.py::TestScript::test_call_script_mod_from_script_module, test/test_jit.py::TestScript::test_call_script_mod_from_tracing_fn, test/test_jit.py::TestScript::test_call_traced_fn_from_tracing_fn, test/test_jit.py::TestScript::test_call_traced_mod_from_tracing_fn, test/test_jit.py::TestScript::test_calls_in_type_annotations, test/test_jit.py::TestScript::test_canonicalize_control_outputs, test/test_jit.py::TestScript::test_cast, test/test_jit.py::TestScript::test_cat, test/test_jit.py::TestScript::test_cat_lifts, test/test_jit.py::TestScript::test_chr, test/test_jit.py::TestScript::test_circular_dependency, test/test_jit.py::TestScript::test_class_as_attribute, test/test_jit.py::TestScript::test_class_attribute, test/test_jit.py::TestScript::test_class_attribute_in_script, test/test_jit.py::TestScript::test_class_with_comment_at_lower_indentation, test/test_jit.py::TestScript::test_code_with_constants, test/test_jit.py::TestScript::test_code_with_constants_restore, test/test_jit.py::TestScript::test_comment_ignore_indent, test/test_jit.py::TestScript::test_compare_two_bool_inputs, test/test_jit.py::TestScript::test_compile_module_with_constant, test/test_jit.py::TestScript::test_conditional_casting, test/test_jit.py::TestScript::test_constant_as_attr, test/test_jit.py::TestScript::test_constant_pooling_introduce_aliasing, test/test_jit.py::TestScript::test_constant_pooling_none, test/test_jit.py::TestScript::test_constant_pooling_same_identity, test/test_jit.py::TestScript::test_context_manager, test/test_jit.py::TestScript::test_conv_error, test/test_jit.py::TestScript::test_convert_base, test/test_jit.py::TestScript::test_cpp_function_tensor_str, test/test_jit.py::TestScript::test_cpp_module_iterator, test/test_jit.py::TestScript::test_desugar_module, test/test_jit.py::TestScript::test_device_kwarg, test/test_jit.py::TestScript::test_device_type, test/test_jit.py::TestScript::test_device_type_cuda, test/test_jit.py::TestScript::test_dict_str, test/test_jit.py::TestScript::test_dir, test/test_jit.py::TestScript::test_divmod, test/test_jit.py::TestScript::test_dominated_bailout, test/test_jit.py::TestScript::test_dropout_eval, test/test_jit.py::TestScript::test_dtype_attr, test/test_jit.py::TestScript::test_dtype_op_shape, test/test_jit.py::TestScript::test_dtype_op_shape2, test/test_jit.py::TestScript::test_early_return_closure, test/test_jit.py::TestScript::test_early_return_fork_join, test/test_jit.py::TestScript::test_early_return_rewrite, test/test_jit.py::TestScript::test_early_return_type_refinement, test/test_jit.py::TestScript::test_early_returns_loops, test/test_jit.py::TestScript::test_ellipsis_const_end, test/test_jit.py::TestScript::test_ellipsis_const_mid, test/test_jit.py::TestScript::test_ellipsis_const_mid_select, test/test_jit.py::TestScript::test_ellipsis_const_start, test/test_jit.py::TestScript::test_ellipsis_end, test/test_jit.py::TestScript::test_ellipsis_mid, test/test_jit.py::TestScript::test_ellipsis_mid_select, test/test_jit.py::TestScript::test_ellipsis_start, test/test_jit.py::TestScript::test_embedding_renorm_grad_error, test/test_jit.py::TestScript::test_empty_like_memory_format_bc, test/test_jit.py::TestScript::test_empty_tuple_str, test/test_jit.py::TestScript::test_enumerate_modlist_range, test/test_jit.py::TestScript::test_erase_number_types, test/test_jit.py::TestScript::test_error, test/test_jit.py::TestScript::test_error_stacktrace, test/test_jit.py::TestScript::test_error_stacktrace_interface, test/test_jit.py::TestScript::test_eval_python, test/test_jit.py::TestScript::test_exception_exits_closure, test/test_jit.py::TestScript::test_exceptions_with_control_flow, test/test_jit.py::TestScript::test_expand, test/test_jit.py::TestScript::test_fibb, test/test_jit.py::TestScript::test_fibb_totally_better, test/test_jit.py::TestScript::test_file_format_serialization, test/test_jit.py::TestScript::test_file_line_error, test/test_jit.py::TestScript::test_file_line_error_class_defn, test/test_jit.py::TestScript::test_file_line_graph, test/test_jit.py::TestScript::test_file_line_save_load, test/test_jit.py::TestScript::test_file_line_string, test/test_jit.py::TestScript::test_file_line_trace, test/test_jit.py::TestScript::test_file_reader_no_memory_leak, test/test_jit.py::TestScript::test_filecheck, test/test_jit.py::TestScript::test_filecheck_parse, test/test_jit.py::TestScript::test_first_class_calls, test/test_jit.py::TestScript::test_first_class_module, test/test_jit.py::TestScript::test_floor_div, test/test_jit.py::TestScript::test_floordiv, test/test_jit.py::TestScript::test_for_else, test/test_jit.py::TestScript::test_for_in_dict, test/test_jit.py::TestScript::test_for_in_enumerate, test/test_jit.py::TestScript::test_for_in_range, test/test_jit.py::TestScript::test_for_in_range_ast, test/test_jit.py::TestScript::test_for_in_range_dynamic, test/test_jit.py::TestScript::test_for_in_range_if_ast, test/test_jit.py::TestScript::test_for_in_range_start_end, test/test_jit.py::TestScript::test_for_in_range_start_end_step, test/test_jit.py::TestScript::test_for_in_range_zero_step, test/test_jit.py::TestScript::test_for_in_string, test/test_jit.py::TestScript::test_for_in_tensors, test/test_jit.py::TestScript::test_for_in_tensors_fail_scalar, test/test_jit.py::TestScript::test_for_in_tensors_nested, test/test_jit.py::TestScript::test_for_in_tensors_rank0, test/test_jit.py::TestScript::test_for_in_zip, test/test_jit.py::TestScript::test_for_in_zip_enumerate, test/test_jit.py::TestScript::test_for_tuple_assign, test/test_jit.py::TestScript::test_for_tuple_unpack, test/test_jit.py::TestScript::test_format, test/test_jit.py::TestScript::test_func_call, test/test_jit.py::TestScript::test_function_compilation_caching, test/test_jit.py::TestScript::test_function_overload_misuse, test/test_jit.py::TestScript::test_function_overloading_isinstance, test/test_jit.py::TestScript::test_function_overloads, test/test_jit.py::TestScript::test_fuser_double_float_codegen, test/test_jit.py::TestScript::test_fuser_double_literal_precision, test/test_jit.py::TestScript::test_fuser_multiple_blocks, test/test_jit.py::TestScript::test_gather_dynamic_index, test/test_jit.py::TestScript::test_generic_list_errors, test/test_jit.py::TestScript::test_get_set_state, test/test_jit.py::TestScript::test_get_set_state_with_tensors, test/test_jit.py::TestScript::test_grad_from_script, test/test_jit.py::TestScript::test_hash, test/test_jit.py::TestScript::test_hex_literals, test/test_jit.py::TestScript::test_id, test/test_jit.py::TestScript::test_if, test/test_jit.py::TestScript::test_if_define, test/test_jit.py::TestScript::test_if_different_type, test/test_jit.py::TestScript::test_if_for_in_range, test/test_jit.py::TestScript::test_if_is_none_dispatch, test/test_jit.py::TestScript::test_if_list_cat, test/test_jit.py::TestScript::test_if_nest_while, test/test_jit.py::TestScript::test_if_noelse, test/test_jit.py::TestScript::test_if_not_defined_error, test/test_jit.py::TestScript::test_if_supertype, test/test_jit.py::TestScript::test_ignore_decorator, test/test_jit.py::TestScript::test_ignored_as_value, test/test_jit.py::TestScript::test_ignored_method_binding, test/test_jit.py::TestScript::test_ignored_props, test/test_jit.py::TestScript::test_import_constants_not_specialized, test/test_jit.py::TestScript::test_in_for_and_comp_expr, test/test_jit.py::TestScript::test_in_operator_with_two_strings, test/test_jit.py::TestScript::test_index, test/test_jit.py::TestScript::test_index_select_shape_prop, test/test_jit.py::TestScript::test_index_with_tuple, test/test_jit.py::TestScript::test_indexing_error, test/test_jit.py::TestScript::test_infer_size, test/test_jit.py::TestScript::test_inferred_error_msg, test/test_jit.py::TestScript::test_inherit_method, test/test_jit.py::TestScript::test_inline_and_run_annotated_script_fn, test/test_jit.py::TestScript::test_inlined_graph, test/test_jit.py::TestScript::test_inlining_cleanup, test/test_jit.py::TestScript::test_inplace_add, test/test_jit.py::TestScript::test_inplace_copy_script, test/test_jit.py::TestScript::test_input_keyword_in_schema, test/test_jit.py::TestScript::test_int_cast, test/test_jit.py::TestScript::test_integral_shape_inference, test/test_jit.py::TestScript::test_interpret_graph, test/test_jit.py::TestScript::test_interpreter_fuzz, test/test_jit.py::TestScript::test_intlist_args, test/test_jit.py::TestScript::test_invalid_call_arguments, test/test_jit.py::TestScript::test_invalid_lhs_assignment, test/test_jit.py::TestScript::test_invalid_prefix_annotation, test/test_jit.py::TestScript::test_irparser, test/test_jit.py::TestScript::test_is_after_use, test/test_jit.py::TestScript::test_is_isnot, test/test_jit.py::TestScript::test_is_optional, test/test_jit.py::TestScript::test_is_scripting, test/test_jit.py::TestScript::test_is_scripting_metacompile, test/test_jit.py::TestScript::test_isinstance, test/test_jit.py::TestScript::test_isinstance_dynamic, test/test_jit.py::TestScript::test_isinstance_metacompile, test/test_jit.py::TestScript::test_isinstance_refinement, test/test_jit.py::TestScript::test_jitter_bug, test/test_jit.py::TestScript::test_keyword, test/test_jit.py::TestScript::test_kwarg_expansion_error, test/test_jit.py::TestScript::test_kwargs_error_msg, test/test_jit.py::TestScript::test_lazy_script, test/test_jit.py::TestScript::test_lhs_advanced_indexing_assignment, test/test_jit.py::TestScript::test_lhs_advanced_indexing_augmented_assignment, test/test_jit.py::TestScript::test_lhs_indexing, test/test_jit.py::TestScript::test_lhs_indexing_increment, test/test_jit.py::TestScript::test_lhs_indexing_increment_list, test/test_jit.py::TestScript::test_lhs_indexing_increment_list_prim, test/test_jit.py::TestScript::test_lhs_indexing_list, test/test_jit.py::TestScript::test_lhs_indexing_multi, test/test_jit.py::TestScript::test_linear_grad, test/test_jit.py::TestScript::test_list_comprehension_modulelist, test/test_jit.py::TestScript::test_list_comprehension_variable_write, test/test_jit.py::TestScript::test_list_iterables, test/test_jit.py::TestScript::test_list_python_op, test/test_jit.py::TestScript::test_list_unify, test/test_jit.py::TestScript::test_literal, test/test_jit.py::TestScript::test_literals, test/test_jit.py::TestScript::test_logical_short_circuit, test/test_jit.py::TestScript::test_loop_liveness, test/test_jit.py::TestScript::test_loop_unroll_negative, test/test_jit.py::TestScript::test_loop_unroll_unused_counter, test/test_jit.py::TestScript::test_loop_unrolling, test/test_jit.py::TestScript::test_loop_unrolling_const, test/test_jit.py::TestScript::test_loop_unrolling_nested, test/test_jit.py::TestScript::test_lower_nested_tuples, test/test_jit.py::TestScript::test_math_ops, test/test_jit.py::TestScript::test_maxpool_guard_elimination, test/test_jit.py::TestScript::test_meshgrid, test/test_jit.py::TestScript::test_method_casts_script, test/test_jit.py::TestScript::test_method_no_self, test/test_jit.py::TestScript::test_method_overloading, test/test_jit.py::TestScript::test_missing_getstate, test/test_jit.py::TestScript::test_mm_batching, test/test_jit.py::TestScript::test_module_apis, test/test_jit.py::TestScript::test_module_attrs, test/test_jit.py::TestScript::test_module_copy_with_attributes, test/test_jit.py::TestScript::test_module_copying, test/test_jit.py::TestScript::test_module_error, test/test_jit.py::TestScript::test_module_method_reassignment, test/test_jit.py::TestScript::test_module_none_attrs, test/test_jit.py::TestScript::test_module_parameters_and_buffers, test/test_jit.py::TestScript::test_module_str, test/test_jit.py::TestScript::test_module_with_params_called_fails, test/test_jit.py::TestScript::test_multi_reduction, test/test_jit.py::TestScript::test_multi_starred_expr_lhs, test/test_jit.py::TestScript::test_multiline_annot_ast_py3_fn, test/test_jit.py::TestScript::test_multiline_optional_future_refinement, test/test_jit.py::TestScript::test_multiline_string_dedents, test/test_jit.py::TestScript::test_multiple_assign, test/test_jit.py::TestScript::test_multiple_assignment, test/test_jit.py::TestScript::test_mutable_dce, test/test_jit.py::TestScript::test_mutable_dce_block, test/test_jit.py::TestScript::test_mutable_dce_graph_input, test/test_jit.py::TestScript::test_mutable_dce_indirect_wildcard_write, test/test_jit.py::TestScript::test_mutable_dce_indirect_wildcards, test/test_jit.py::TestScript::test_mutable_dce_list, test/test_jit.py::TestScript::test_mutable_dce_loop, test/test_jit.py::TestScript::test_mutable_dce_wildcards, test/test_jit.py::TestScript::test_mutate_constant, test/test_jit.py::TestScript::test_mypy_type_ignore, test/test_jit.py::TestScript::test_named_buffers_are_iterable, test/test_jit.py::TestScript::test_namedtuple_attr, test/test_jit.py::TestScript::test_namedtuple_default_values_Tensor_type, test/test_jit.py::TestScript::test_namedtuple_default_values_container_type, test/test_jit.py::TestScript::test_namedtuple_default_values_missing, test/test_jit.py::TestScript::test_namedtuple_default_values_simple_type, test/test_jit.py::TestScript::test_namedtuple_default_values_using_factory_constructor, test/test_jit.py::TestScript::test_namedtuple_python, test/test_jit.py::TestScript::test_namedtuple_type_inference, test/test_jit.py::TestScript::test_narrow_copy, test/test_jit.py::TestScript::test_nested_aug_assign, test/test_jit.py::TestScript::test_nested_bailouts, test/test_jit.py::TestScript::test_nested_breaks, test/test_jit.py::TestScript::test_nested_list_construct, test/test_jit.py::TestScript::test_nested_select_assign, test/test_jit.py::TestScript::test_nn_GRU, test/test_jit.py::TestScript::test_nn_LSTM, test/test_jit.py::TestScript::test_nn_LSTM_with_layers, test/test_jit.py::TestScript::test_nn_init, test/test_jit.py::TestScript::test_nn_init_generator, test/test_jit.py::TestScript::test_no_dtype_shape, test/test_jit.py::TestScript::test_no_self_arg_ignore_function, test/test_jit.py::TestScript::test_non_final_return, test/test_jit.py::TestScript::test_none_type_str, test/test_jit.py::TestScript::test_not, test/test_jit.py::TestScript::test_not_initialized_err, test/test_jit.py::TestScript::test_ntuple_builtins, test/test_jit.py::TestScript::test_number_abs, test/test_jit.py::TestScript::test_number_augassign, test/test_jit.py::TestScript::test_number_augassign_bitwise_lshift, test/test_jit.py::TestScript::test_number_augassign_bitwise_pow, test/test_jit.py::TestScript::test_number_augassign_bitwise_rshift, test/test_jit.py::TestScript::test_number_div, test/test_jit.py::TestScript::test_number_math, test/test_jit.py::TestScript::test_number_neg, test/test_jit.py::TestScript::test_oneline_func, test/test_jit.py::TestScript::test_op_dtype, test/test_jit.py::TestScript::test_operator_precedence, test/test_jit.py::TestScript::test_optional_list, test/test_jit.py::TestScript::test_optional_tensor, test/test_jit.py::TestScript::test_ord, test/test_jit.py::TestScript::test_override_magic, test/test_jit.py::TestScript::test_pack_tuple_into_non_var, test/test_jit.py::TestScript::test_pack_unpack_nested, test/test_jit.py::TestScript::test_pack_unpack_state, test/test_jit.py::TestScript::test_parameter_order, test/test_jit.py::TestScript::test_parse_empty_tuple_annotation, test/test_jit.py::TestScript::test_parse_empty_tuple_annotation_element_error, test/test_jit.py::TestScript::test_parse_generator, test/test_jit.py::TestScript::test_parse_nested_names, test/test_jit.py::TestScript::test_parse_none_type_annotation, test/test_jit.py::TestScript::test_parse_scalar_tensor_constants, test/test_jit.py::TestScript::test_parse_tensor_constants, test/test_jit.py::TestScript::test_parser_kwargonly, test/test_jit.py::TestScript::test_parser_type_annotations, test/test_jit.py::TestScript::test_parser_type_annotations_comment, test/test_jit.py::TestScript::test_parser_type_annotations_incompatible_expression, test/test_jit.py::TestScript::test_parser_type_annotations_subscript_non_ident, test/test_jit.py::TestScript::test_parser_type_annotations_subscript_tensor, test/test_jit.py::TestScript::test_parser_type_annotations_unknown_type, test/test_jit.py::TestScript::test_partial_returns, test/test_jit.py::TestScript::test_pass, test/test_jit.py::TestScript::test_pickle_checkpoint, test/test_jit.py::TestScript::test_pickle_checkpoint_cuda, test/test_jit.py::TestScript::test_pickle_checkpoint_tup, test/test_jit.py::TestScript::test_pow_scalar_backward_cuda, test/test_jit.py::TestScript::test_pretty_print_function, test/test_jit.py::TestScript::test_prim_grad_undefined, test/test_jit.py::TestScript::test_print, test/test_jit.py::TestScript::test_print_kwargs, test/test_jit.py::TestScript::test_profiling_graph_executor, test/test_jit.py::TestScript::test_profiling_merge, test/test_jit.py::TestScript::test_pybind_type_comparisons, test/test_jit.py::TestScript::test_python_call, test/test_jit.py::TestScript::test_python_call_annotation, test/test_jit.py::TestScript::test_python_call_annoytation_failure, test/test_jit.py::TestScript::test_python_call_failure, test/test_jit.py::TestScript::test_python_call_non_tensor, test/test_jit.py::TestScript::test_python_call_non_tensor_wrong, test/test_jit.py::TestScript::test_python_frontend, test/test_jit.py::TestScript::test_python_frontend_py3, test/test_jit.py::TestScript::test_python_frontend_source_range, test/test_jit.py::TestScript::test_python_op_builtins, test/test_jit.py::TestScript::test_python_op_name, test/test_jit.py::TestScript::test_python_val_doesnt_have_attr, test/test_jit.py::TestScript::test_rand, test/test_jit.py::TestScript::test_rand_profiling, test/test_jit.py::TestScript::test_range_args, test/test_jit.py::TestScript::test_reassign_module_lhs, test/test_jit.py::TestScript::test_reassign_module_rhs, test/test_jit.py::TestScript::test_refine_tuple_types, test/test_jit.py::TestScript::test_remove_dropout, test/test_jit.py::TestScript::test_repeated_script_on_function, test/test_jit.py::TestScript::test_request_bailout, test/test_jit.py::TestScript::test_requires_grad_loop, test/test_jit.py::TestScript::test_rescripting_loaded_modules, test/test_jit.py::TestScript::test_resize_input_ops, test/test_jit.py::TestScript::test_return, test/test_jit.py::TestScript::test_return_stmt_not_at_end, test/test_jit.py::TestScript::test_return_tuple, test/test_jit.py::TestScript::test_robust_op_resolution, test/test_jit.py::TestScript::test_round, test/test_jit.py::TestScript::test_save_load_attr_error, test/test_jit.py::TestScript::test_script_annotation, test/test_jit.py::TestScript::test_script_bool_constant, test/test_jit.py::TestScript::test_script_chunk, test/test_jit.py::TestScript::test_script_clamp_none, test/test_jit.py::TestScript::test_script_copy, test/test_jit.py::TestScript::test_script_cu, test/test_jit.py::TestScript::test_script_define_order, test/test_jit.py::TestScript::test_script_define_order_recursive_fail, test/test_jit.py::TestScript::test_script_docstring, test/test_jit.py::TestScript::test_script_forward_method_replacement, test/test_jit.py::TestScript::test_script_get_device_cuda, test/test_jit.py::TestScript::test_script_get_tracing_state, test/test_jit.py::TestScript::test_script_is_tracing, test/test_jit.py::TestScript::test_script_kwargs_fn_call, test/test_jit.py::TestScript::test_script_method_docstring, test/test_jit.py::TestScript::test_script_method_torch_function_overload, test/test_jit.py::TestScript::test_script_module, test/test_jit.py::TestScript::test_script_module_call_noscript, test/test_jit.py::TestScript::test_script_module_const, test/test_jit.py::TestScript::test_script_module_const_submodule_fail, test/test_jit.py::TestScript::test_script_module_export_blocks, test/test_jit.py::TestScript::test_script_module_export_shared_storage, test/test_jit.py::TestScript::test_script_module_export_submodule, test/test_jit.py::TestScript::test_script_module_export_tensor_cuda, test/test_jit.py::TestScript::test_script_module_export_tensor_type, test/test_jit.py::TestScript::test_script_module_fail_exist, test/test_jit.py::TestScript::test_script_module_for, test/test_jit.py::TestScript::test_script_module_for2, test/test_jit.py::TestScript::test_script_module_invalid_consts, test/test_jit.py::TestScript::test_script_module_nochange_submodule, test/test_jit.py::TestScript::test_script_module_none_exist_fail, test/test_jit.py::TestScript::test_script_module_not_tuple, test/test_jit.py::TestScript::test_script_module_param_buffer_mutation, test/test_jit.py::TestScript::test_script_module_star_assign2, test/test_jit.py::TestScript::test_script_module_star_assign2_inplace, test/test_jit.py::TestScript::test_script_module_star_assign_fail_builtin, test/test_jit.py::TestScript::test_script_module_star_assign_fail_pythonop, test/test_jit.py::TestScript::test_script_module_tensor_subclass_argument, test/test_jit.py::TestScript::test_script_nested_mod_list, test/test_jit.py::TestScript::test_script_non_tensor_args_outputs, test/test_jit.py::TestScript::test_script_optional_none, test/test_jit.py::TestScript::test_script_outputs, test/test_jit.py::TestScript::test_script_pack_padded_sequence, test/test_jit.py::TestScript::test_script_pad_sequence_pack_sequence, test/test_jit.py::TestScript::test_script_scope, test/test_jit.py::TestScript::test_script_sequential_for, test/test_jit.py::TestScript::test_script_sequential_in_mod_list, test/test_jit.py::TestScript::test_script_sequential_multi_output_fail, test/test_jit.py::TestScript::test_script_sequential_orderdict, test/test_jit.py::TestScript::test_script_sequential_sliced_iteration, test/test_jit.py::TestScript::test_script_star_assign, test/test_jit.py::TestScript::test_script_star_expr, test/test_jit.py::TestScript::test_script_star_expr_string, test/test_jit.py::TestScript::test_scriptable_fn_as_attr, test/test_jit.py::TestScript::test_scriptmodule_multi_head_attn_cuda, test/test_jit.py::TestScript::test_scriptmodule_releases_tensors_cuda, test/test_jit.py::TestScript::test_scriptmodule_transformer_cuda, test/test_jit.py::TestScript::test_select_after_chunk, test/test_jit.py::TestScript::test_sequence_parsing, test/test_jit.py::TestScript::test_sequential_intermediary_types, test/test_jit.py::TestScript::test_serialization_big_ints, test/test_jit.py::TestScript::test_serialization_sharing, test/test_jit.py::TestScript::test_serialize_long_lines, test/test_jit.py::TestScript::test_serialized_source_ranges, test/test_jit.py::TestScript::test_serialized_source_ranges2, test/test_jit.py::TestScript::test_serialized_source_ranges_dont_jitter, test/test_jit.py::TestScript::test_serialized_source_ranges_graph, test/test_jit.py::TestScript::test_serialized_source_ranges_no_dups, test/test_jit.py::TestScript::test_set_attribute_through_optional, test/test_jit.py::TestScript::test_shape_analysis_grad_property, test/test_jit.py::TestScript::test_shape_analysis_loop, test/test_jit.py::TestScript::test_shape_prop_promote_scalar_arg, test/test_jit.py::TestScript::test_shape_prop_promotion, test/test_jit.py::TestScript::test_signed_float_zero, test/test_jit.py::TestScript::test_single_starred_expr_for_loop, test/test_jit.py::TestScript::test_single_starred_lhs, test/test_jit.py::TestScript::test_singleton_tuple_unpack, test/test_jit.py::TestScript::test_slice_guard_elimination, test/test_jit.py::TestScript::test_split, test/test_jit.py::TestScript::test_stack, test/test_jit.py::TestScript::test_static_if_prop, test/test_jit.py::TestScript::test_static_method_on_module, test/test_jit.py::TestScript::test_static_methods, test/test_jit.py::TestScript::test_str_cast, test/test_jit.py::TestScript::test_string_cu, test/test_jit.py::TestScript::test_string_device_implicit_conversion, test/test_jit.py::TestScript::test_string_frontend_elif, test/test_jit.py::TestScript::test_string_index, test/test_jit.py::TestScript::test_string_len, test/test_jit.py::TestScript::test_string_list, test/test_jit.py::TestScript::test_string_new_line, test/test_jit.py::TestScript::test_string_ops, test/test_jit.py::TestScript::test_string_print, test/test_jit.py::TestScript::test_string_single_escape, test/test_jit.py::TestScript::test_string_slicing, test/test_jit.py::TestScript::test_string_sort, test/test_jit.py::TestScript::test_string_sorted, test/test_jit.py::TestScript::test_submodule_attribute_serialization, test/test_jit.py::TestScript::test_submodule_twice, test/test_jit.py::TestScript::test_sum, test/test_jit.py::TestScript::test_sum_list_diff_elms, test/test_jit.py::TestScript::test_sum_list_empty, test/test_jit.py::TestScript::test_sum_list_literal, test/test_jit.py::TestScript::test_sum_list_one, test/test_jit.py::TestScript::test_sum_list_wrong_type, test/test_jit.py::TestScript::test_sys_stdout_override, test/test_jit.py::TestScript::test_tensor_as_tensor_shape_prop, test/test_jit.py::TestScript::test_tensor_data, test/test_jit.py::TestScript::test_tensor_device, test/test_jit.py::TestScript::test_tensor_dtype, test/test_jit.py::TestScript::test_tensor_grad, test/test_jit.py::TestScript::test_tensor_import_export, test/test_jit.py::TestScript::test_tensor_len, test/test_jit.py::TestScript::test_tensor_number_math, test/test_jit.py::TestScript::test_tensor_number_math_cuda, test/test_jit.py::TestScript::test_tensor_requires_grad, test/test_jit.py::TestScript::test_tensor_shape, test/test_jit.py::TestScript::test_tensor_subclasses, test/test_jit.py::TestScript::test_tensor_to, test/test_jit.py::TestScript::test_tensor_to_cpu, test/test_jit.py::TestScript::test_tensor_to_cuda, test/test_jit.py::TestScript::test_tensor_to_device, test/test_jit.py::TestScript::test_ternary, test/test_jit.py::TestScript::test_ternary_module_type_hint, test/test_jit.py::TestScript::test_ternary_right_associative, test/test_jit.py::TestScript::test_ternary_static_if, test/test_jit.py::TestScript::test_torch_any, test/test_jit.py::TestScript::test_torch_functional, test/test_jit.py::TestScript::test_torch_functional_tensordot_int, test/test_jit.py::TestScript::test_torch_functional_tensordot_list, test/test_jit.py::TestScript::test_torch_functional_tensordot_tensor, test/test_jit.py::TestScript::test_torch_functional_tensordot_tuple, test/test_jit.py::TestScript::test_torch_ignore_conversion_to_none, test/test_jit.py::TestScript::test_torch_manual_seed, test/test_jit.py::TestScript::test_torch_pow, test/test_jit.py::TestScript::test_torch_tensor_as_tensor, test/test_jit.py::TestScript::test_torch_tensor_as_tensor_empty_list, test/test_jit.py::TestScript::test_torch_tensor_bad_input, test/test_jit.py::TestScript::test_torch_tensor_dtype, test/test_jit.py::TestScript::test_torchscript_memoryformat, test/test_jit.py::TestScript::test_torchscript_multi_head_attn, test/test_jit.py::TestScript::test_torchscript_multi_head_attn_fast_path, test/test_jit.py::TestScript::test_training_param, test/test_jit.py::TestScript::test_tuple_assignments, test/test_jit.py::TestScript::test_tuple_error_msg, test/test_jit.py::TestScript::test_tuple_index_to_list, test/test_jit.py::TestScript::test_tuple_indexing, test/test_jit.py::TestScript::test_tuple_len, test/test_jit.py::TestScript::test_tuple_nested_sort, test/test_jit.py::TestScript::test_tuple_sort, test/test_jit.py::TestScript::test_tuple_sort_reverse, test/test_jit.py::TestScript::test_tuple_sorted, test/test_jit.py::TestScript::test_tuple_str, test/test_jit.py::TestScript::test_tuple_to_opt_list, test/test_jit.py::TestScript::test_tuple_unsortable_diff_type, test/test_jit.py::TestScript::test_tuple_unsortable_element_type, test/test_jit.py::TestScript::test_tuple_unsortable_nested_diff_type, test/test_jit.py::TestScript::test_type_annotate, test/test_jit.py::TestScript::test_type_annotation_module, test/test_jit.py::TestScript::test_type_annotation_py3, test/test_jit.py::TestScript::test_type_annotations, test/test_jit.py::TestScript::test_type_annotations_repeated_list, test/test_jit.py::TestScript::test_type_annotations_varargs, test/test_jit.py::TestScript::test_type_call_in_script, test/test_jit.py::TestScript::test_type_cast, test/test_jit.py::TestScript::test_type_comments_in_body, test/test_jit.py::TestScript::test_type_inferred_from_empty_annotation, test/test_jit.py::TestScript::test_unbind, test/test_jit.py::TestScript::test_unfold_zero_dim, test/test_jit.py::TestScript::test_unicode_comments, test/test_jit.py::TestScript::test_uninitialized, test/test_jit.py::TestScript::test_union_to_number, test/test_jit.py::TestScript::test_unknown_builtin, test/test_jit.py::TestScript::test_unmatched_type_annotation, test/test_jit.py::TestScript::test_unspecialized_any_binding, test/test_jit.py::TestScript::test_unsqueeze_guard_elimination, test/test_jit.py::TestScript::test_unsupported_builtin_error, test/test_jit.py::TestScript::test_unused_decorator, test/test_jit.py::TestScript::test_unwrap_optional_builtin, test/test_jit.py::TestScript::test_var_aug_assign, test/test_jit.py::TestScript::test_vararg_zeros, test/test_jit.py::TestScript::test_view_listconstruct_shape_prop, test/test_jit.py::TestScript::test_view_shape_prop, test/test_jit.py::TestScript::test_view_write, test/test_jit.py::TestScript::test_weak_cuda, test/test_jit.py::TestScript::test_where, test/test_jit.py::TestScript::test_where_method, test/test_jit.py::TestScript::test_while, test/test_jit.py::TestScript::test_while_nest_if, test/test_jit.py::TestScript::test_while_nonexistent_cond_value, test/test_jit.py::TestScript::test_while_nonexistent_value, test/test_jit.py::TestScript::test_while_write_outer_then_read, test/test_jit.py::TestScript::test_wrong_attr_lookup, test/test_jit.py::TestScript::test_wrong_implicit_expand, test/test_jit.py::TestScript::test_wrong_method_call_inputs, test/test_jit.py::TestScript::test_wrong_module_attr_lookup, test/test_jit.py::TestScript::test_wrong_return_type, test/test_jit.py::TestScript::test_wrong_use_as_callable, test/test_jit.py::TestScript::test_wrong_use_as_tuple, test/test_jit.py::TestScript::test_zero_dimension_tensor_trace, test/test_jit.py::TestScript::test_zeros, test/test_jit.py::TestScript::test_zip_enumerate_modulelist, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCELoss_weights_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_legacy_enum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_BCEWithLogitsLoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_Bilinear, test/test_jit.py::TestJitGeneratedModule::test_nn_CELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad1size1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad2size1, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_reflect_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_stride, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv1d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_padded, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_depthwise_with_multiplier, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_groups_thnn, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_padding, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_reflect_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv2d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_1x1x1_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_circular_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_dilated_strided, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_same, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_same_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_pad_valid, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_replicate_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_stride, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_stride_padding, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_zero_batch, test/test_jit.py::TestJitGeneratedModule::test_nn_Conv3d_zeros_stride2_pad2, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose1d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_groups, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose2d_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose3d, test/test_jit.py::TestJitGeneratedModule::test_nn_ConvTranspose3d_dilated, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_CosineEmbeddingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_CrossMapLRN2d, test/test_jit.py::TestJitGeneratedModule::test_nn_ELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_discontiguous, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_max, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_max_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_mean_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sparse, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_EmbeddingBag_sum_padding_idx, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding_discontiguous, test/test_jit.py::TestJitGeneratedModule::test_nn_Embedding_sparse, test/test_jit.py::TestJitGeneratedModule::test_nn_Flatten, test/test_jit.py::TestJitGeneratedModule::test_nn_Flatten_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_no_batch_dim_input, test/test_jit.py::TestJitGeneratedModule::test_nn_Fold_no_batch_dim_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_GELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_GLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_GRUCell, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardsigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardswish_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Hardtanh_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_margin_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_HingeEmbeddingLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_delta, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_HuberLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_log_target, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_no_reduce_scalar_log_target, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_with_log_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_KLDivLoss_with_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce_complex, test/test_jit.py::TestJitGeneratedModule::test_nn_L1Loss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_LSTMCell, test/test_jit.py::TestJitGeneratedModule::test_nn_LayerNorm_3d_no_affine_large_feature, test/test_jit.py::TestJitGeneratedModule::test_nn_LeakyReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Linear_no_bias, test/test_jit.py::TestJitGeneratedModule::test_nn_LogSigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MSELoss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MarginRankingLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_Mish_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_0d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_1d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_index_neg, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiLabelSoftMarginLoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_1d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_margin_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_p_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiMarginLoss_weights_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_MultiheadAttention, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss2d_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLossNd_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights_ignore_index, test/test_jit.py::TestJitGeneratedModule::test_nn_NLLLoss_no_reduce_weights_ignore_index_neg, test/test_jit.py::TestJitGeneratedModule::test_nn_PReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_broadcast_lhs, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_broadcast_rhs, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_PairwiseDistance_with_non_default_args, test/test_jit.py::TestJitGeneratedModule::test_nn_PixelShuffle, test/test_jit.py::TestJitGeneratedModule::test_nn_PixelUnshuffle, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_PoissonNLLLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_RNNCell, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_with_up_down, test/test_jit.py::TestJitGeneratedModule::test_nn_RReLU_with_up_down_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_ReLU6_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_ReLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d_complex, test/test_jit.py::TestJitGeneratedModule::test_nn_ReplicationPad3d_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SELU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SiLU_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Sigmoid_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_beta, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_no_reduce_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_SmoothL1Loss_zero_beta, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_SoftMarginLoss_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_Softplus_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Softshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Softsign_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Tanh_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Tanhshrink_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Threshold_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Transformer, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerDecoderLayer_gelu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerDecoderLayer_relu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerEncoderLayer_gelu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_TransformerEncoderLayer_relu_activation, test/test_jit.py::TestJitGeneratedModule::test_nn_Transformer_multilayer_coder, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_mean, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_none, test/test_jit.py::TestJitGeneratedModule::test_nn_TripletMarginLoss_no_batch_dim_sum, test/test_jit.py::TestJitGeneratedModule::test_nn_Unflatten_no_batch_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_Unfold, test/test_jit.py::TestJitGeneratedModule::test_nn_Unfold_int_input, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_shared_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_skewed_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_scale_tuple_skewed_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bicubic_tuple_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_shared_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_skewed_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_scale_tuple_skewed_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_bilinear_tuple_2d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_1d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_scale_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_scale_1d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_linear_tuple_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_1d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d_launch_configs, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_2d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_3d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_scale_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_1d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_2d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_nearest_tuple_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_3d_zero_dim, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_scale_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_scale_3d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_tuple_3d, test/test_jit.py::TestJitGeneratedModule::test_nn_interpolate_trilinear_tuple_3d_align_corners, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_dim0, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_dim3, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_lastdim, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_spatial, test/test_jit.py::TestJitGeneratedModule::test_nn_log_softmax_spatial_special, test/test_jit.py::TestJitGeneratedModule::test_nn_multimarginloss_1d_input_0d_target_no_reduce, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_dim0, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_dim3, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_functional_scalar, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_lastdim, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_lastdim_dtype, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial_dtype, test/test_jit.py::TestJitGeneratedModule::test_nn_softmax_spatial_special, test/test_jit.py::TestProducerVersion::test_version 2025-06-01T22:41:26.0436318Z 2025-06-01T22:41:26.8225637Z Running torch_np/test_basic 1/1 ... [2025-06-01 22:41:26.820963] 2025-06-01T22:41:26.8226130Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:26.8232410Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_basic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:41:26.820963] 2025-06-01T22:41:29.4217480Z 2025-06-01T22:41:29.4218764Z functorch/test_aotdispatch 7/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_7.7_5f473f297b25f62d_.log 2025-06-01T22:41:29.4386099Z Running 314 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_dupe_arg_torture, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_duplicated_arguments_on_tensor_overlap, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_aliased_with_mutation_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_data_and_metadata_mutation, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_data_and_metadata_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_metadata_mutation_aliases, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_aliases_bases_out_of_order, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_false_aliasing, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_simple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mem_leak_from_save_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nested_subclasses, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_no_grad_input_output, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_and_returned_flipped, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_multiple_mixed, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_single, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_multiple_inputs_get_correct_one, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_set__and_data_mutation_bad, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_input_mutation_on_input_requiring_grad_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_buffer_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_contiguous, test/functorch/test_aotdispatch.py::TestPartitioning::test_default_partitioner_getitem, test/functorch/test_aotdispatch.py::TestPartitioning::test_generate_gives_inference_graph, test/functorch/test_aotdispatch.py::TestPartitioning::test_min_cut_partitioner_output_tensor_shape_tensor, test/functorch/test_aotdispatch.py::TestPartitioning::test_preserve_random, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_input_data_and_metadata_mutation, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_module_simplified, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_grads_no_force_contiguous_dense, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_inductor_freezing_with_subclasses, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_False_test_subclasses_False_device_cuda, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_external_calls_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_no_decompose_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_H_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rsub___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__softmax_backward_data_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__unsafe_masked_index_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_all_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_angle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_auto_functionalize_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bool_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_byte_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_char_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cos_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diagonal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_div_trunc_rounding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_einsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_empty_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_irfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_flipud_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_floor_divide_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_frac_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_half_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_reduce_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_item_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_kthvalue_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_householder_product_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_ldl_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lu_factor_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_matrix_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_multi_dot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_pinv_singular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_vander_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logcumsumexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lu_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_argmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_median_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_matrix_exp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_max_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_min_reduction_no_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_native_layer_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_neg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_new_full_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_conv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_dropout3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pad_constant_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pad_reflect_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_rms_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_norm_nuc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_normal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_pca_lowrank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_quantile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_resolve_conj_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rot90_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_select_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sgn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_blackman_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_slice_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sort_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_stack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_t_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_topk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_transpose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_trapz_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_uniform_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_while_loop_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rdiv___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rmatmul___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_abs_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_acosh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addcmul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_allclose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_argsort_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atan2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atleast_1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_broadcast_shapes_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cartesian_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cdouble_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cholesky_inverse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cos_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_count_nonzero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cummin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cumprod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cumulative_trapezoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diagonal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diff_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_div_no_rounding_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_dot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_empty_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_empty_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_erf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_fft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_hfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ifft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_irfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_irfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_rfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flip_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fmod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ge_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_geometric_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_hsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_put_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isinf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isneginf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_inv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_slogdet_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_svd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logcumsumexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logdet_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mH_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_map_nested_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_cumprod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_log_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_min_reduction_no_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_minimum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nanmean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_narrow_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_native_layer_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_empty_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_batch_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_celu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_ctc_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_dropout2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_dropout3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_dropout_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_elu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_gelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_glu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_grid_sample_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_kl_div_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_local_response_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pad_constant_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_softplus_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_norm_inf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_normal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ones_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_pinverse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_randn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ravel_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_resize__cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_resolve_neg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_rsqrt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scan_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_nuttall_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sinh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_entr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_hermite_polynomial_he_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_i1e_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_modified_bessel_k0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_split_with_sizes_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_squeeze_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_squeeze_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_stack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sub_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_svd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_svd_lowrank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tensordot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_triu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unbind_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_uniform_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_var_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_var_mean_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_vdot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_view_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_vsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_where_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_zero__cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveAvgPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BatchNorm1d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BatchNorm2d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BatchNorm3d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BatchNorm3d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_FractionalMaxPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LSTM_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LeakyReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LocalResponseNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LogSoftmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MaxPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MultiheadAttention_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_PoissonNLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReflectionPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReplicationPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Threshold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveAvgPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConstantPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Conv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Conv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_FractionalMaxPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Hardshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_HingeEmbeddingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_HuberLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm1d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LPPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LSTM_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConvTranspose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MaxPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReplicationPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_TransformerEncoder_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_mutation_forward_inputs_create_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_composite_impl_compile, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_inner_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_aliases_other_input2, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_simple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mark_activations_dynamic_with_nested, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_nested_subclasses_complicated_inps, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_nested_subclasses_complicated_inps_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_non_tensor_and_none_inputs, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_inplace_view_and_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_op_depending_on_symint, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_synthetic_base_base_attribute_is_none, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_batchnorm_inference, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_custom_autograd, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dupe_arg, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_data_and_metadata_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_modifies_autograd_meta_of_aliases, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_requires_grad_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_inputs_overlapping_with_mutation_guard_base, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_invalid_dupe, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mark_activations_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nested_subclasses, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_input_multi_output_view_should_raise_autograd_error, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_and_returned_different_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_inplace_view_with_detach, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_mutation_linear, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_returned_multiple_times, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_single_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_some_outputs_dont_require_grad_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_squeeze_mutation 2025-06-01T22:41:29.4541952Z 2025-06-01T22:41:31.0123847Z Running inductor/test_cudacodecache 1/1 ... [2025-06-01 22:41:31.011735] 2025-06-01T22:41:31.0124422Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:31.0133392Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudacodecache.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:41:31.012919] 2025-06-01T22:41:33.7450088Z 2025-06-01T22:41:33.7451016Z torch_np/test_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_basic_1.1_5899c3ef7e5e72b6_.log 2025-06-01T22:41:33.7581808Z Running 453 items in this shard: test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func9, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func9, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func9, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func4, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func4, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func4, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func2_np_func2, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func2_np_func2, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func2_np_func2, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func0, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func1, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func2, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func3, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func0, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func1, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func2, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func3, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func4, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func5, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func6, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_array_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_array_func1, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_list_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_list_func1, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_tensor_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_tensor_func1, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func0_args0, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func1_args1, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func2_args2, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func3_args3, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func4_args4, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func5_args5, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func6_args6, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func7_args7, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func8_args8, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func9_args9, test/torch_np/test_basic.py::TestNormalizations::test_too_few_args_positional, test/torch_np/test_basic.py::TestNormalizations::test_unknown_args, test/torch_np/test_basic.py::TestNormalizations::test_unknown_args_with_defaults, test/torch_np/test_basic.py::TestCopyTo::test_copyto_basic, test/torch_np/test_basic.py::TestCopyTo::test_copyto_typecast, test/torch_np/test_basic.py::TestCopyTo::test_copytobcast, test/torch_np/test_basic.py::TestDivmod::test_divmod_no_out, test/torch_np/test_basic.py::TestDivmod::test_divmod_out, test/torch_np/test_basic.py::TestDivmod::test_divmod_out_both_pos_and_kw, test/torch_np/test_basic.py::TestDivmod::test_divmod_out_list, test/torch_np/test_basic.py::TestDivmod::test_divmod_pos_only, test/torch_np/test_basic.py::TestSmokeNotImpl::test_nimpl_basic, test/torch_np/test_basic.py::TestDefaultDtype::test_defaultdtype_defaults, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_dt_float32, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_dt_pytorch, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_float32, test/torch_np/test_basic.py::TestExport::test_exported_objects, test/torch_np/test_basic.py::TestCtorNested::test_arrays_in_lists, test/torch_np/test_basic.py::TestMisc::test_f16_on_cuda, test/torch_np/test_basic.py::TestMisc::test_ndarrays_to_tensors 2025-06-01T22:41:33.7711087Z 2025-06-01T22:41:34.3440977Z Running profiler/test_kineto 1/1 ... [2025-06-01 22:41:34.343576] 2025-06-01T22:41:34.3441534Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:34.3450859Z 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-06-01 22:41:34.344762] 2025-06-01T22:41:35.6505249Z 2025-06-01T22:41:35.6506532Z inductor/test_cudacodecache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudacodecache_1.1_e7827d352818d1e2_.log 2025-06-01T22:41:35.6507284Z 2025-06-01T22:41:38.9161980Z Running inductor/test_aot_inductor_utils 1/1 ... [2025-06-01 22:41:38.915508] 2025-06-01T22:41:38.9162498Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:38.9169634Z 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-06-01 22:41:38.916665] 2025-06-01T22:41:40.4115149Z Running test_segment_reductions 1/1 ... [2025-06-01 22:41:40.403778] 2025-06-01T22:41:40.4115621Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:40.4122201Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_segment_reductions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:41:40.411835] 2025-06-01T22:41:41.9222391Z 2025-06-01T22:41:41.9223362Z profiler/test_kineto 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_kineto_1.1_85afe6ac18f9100e_.log 2025-06-01T22:41:41.9224606Z Running 1 items in this shard: test/profiler/test_kineto.py::SimpleKinetoInitializationTest::test_kineto_profiler_with_environment_variable 2025-06-01T22:41:41.9225230Z 2025-06-01T22:41:46.7063237Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-06-01 22:41:46.704618] 2025-06-01T22:41:46.7063981Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:46.7070197Z 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-06-01 22:41:46.704618] 2025-06-01T22:41:47.0785093Z 2025-06-01T22:41:47.0786296Z test_segment_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_segment_reductions_1.1_4c5725baa6b4db10_.log 2025-06-01T22:41:47.0820666Z Running 74 items in this shard: test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_unsafe_flag_cpu_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_unsafe_flag_cpu_int64 2025-06-01T22:41:47.0853058Z 2025-06-01T22:41:49.1569634Z 2025-06-01T22:41:49.1571066Z 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_bdfd57cc55deeede_.log 2025-06-01T22:41:49.1571881Z 2025-06-01T22:41:52.0432805Z Running functorch/test_ac_knapsack 1/1 ... [2025-06-01 22:41:52.042801] 2025-06-01T22:41:52.0433356Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:52.0439616Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_knapsack.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:41:52.043390] 2025-06-01T22:41:54.0938677Z Running test_tensorexpr_pybind 1/1 ... [2025-06-01 22:41:54.088296] 2025-06-01T22:41:54.0939224Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:41:54.0946949Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorexpr_pybind.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:41:54.093889] 2025-06-01T22:41:56.8581117Z 2025-06-01T22:41:56.8582509Z 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_74fd6dd97ac10305_.log 2025-06-01T22:41:56.8583328Z 2025-06-01T22:41:57.9789073Z 2025-06-01T22:41:57.9790176Z functorch/test_ac_knapsack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_knapsack_1.1_ba00d7a06594b4d7_.log 2025-06-01T22:41:57.9797267Z Running 15 items in this shard: test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_full_joint_nx_graph, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_knapsack_memory_input, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_knapsack_runtime_input, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_non_ac_peak_memory, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_theoretical_max_runtime, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_inialize_from_graph, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_recomputable_node_only_graph, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_recomputable_node_only_graph_with_larger_graph_context, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_simplified_fx_joint_graph, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_distribution_of_results_for_knapsack_algo, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_knapsack_output_accounting_for_backward_pass, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_knapsack_output_not_accounting_for_backward_pass, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_knapsack_output_with_wrong_sized_values, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_get_backward_memory_from_topologically_sorted_graph, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_get_knee_point_memory_budget 2025-06-01T22:41:57.9803703Z 2025-06-01T22:41:59.1184534Z 2025-06-01T22:41:59.1185420Z test_tensorexpr_pybind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorexpr_pybind_1.1_461a5b5469150d02_.log 2025-06-01T22:41:59.1192319Z Running 17 items in this shard: test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_alloc_in_loop, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_call_raw, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_dtype_error, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_dynamic_shape, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_dynamic_shape_2d, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_external_calls, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_shape_prop, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_shape_prop_module, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_custom_lowering, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_expand, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_permute, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_scalar_inputs, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_t, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_tensor_inputs, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_transpose, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_simple_sum, test/test_tensorexpr_pybind.py::TestExprHandlePyBind::test_unary_ops 2025-06-01T22:41:59.1198564Z 2025-06-01T22:42:01.6831805Z Running inductor/test_split_cat_fx_passes 1/1 ... [2025-06-01 22:42:01.682979] 2025-06-01T22:42:01.6832350Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:01.6838911Z 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-06-01 22:42:01.683308] 2025-06-01T22:42:02.9566686Z Running test_complex 1/1 ... [2025-06-01 22:42:02.955129] 2025-06-01T22:42:02.9567102Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:02.9574146Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_complex.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:42:02.955129] 2025-06-01T22:42:03.8627916Z Running test_numpy_interop 1/1 ... [2025-06-01 22:42:03.861353] 2025-06-01T22:42:03.8628388Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:03.8634879Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numpy_interop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:42:03.861353] 2025-06-01T22:42:08.1006113Z 2025-06-01T22:42:08.1006900Z test_complex 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_complex_1.1_a3479e1cee2ff8ea_.log 2025-06-01T22:42:08.1012332Z Running 15 items in this shard: test/test_complex.py::TestComplexTensorCPU::test_all_cpu_complex128, test/test_complex.py::TestComplexTensorCPU::test_all_cpu_complex64, test/test_complex.py::TestComplexTensorCPU::test_any_cpu_complex128, test/test_complex.py::TestComplexTensorCPU::test_any_cpu_complex64, test/test_complex.py::TestComplexTensorCPU::test_conj_copy_cpu_complex128, test/test_complex.py::TestComplexTensorCPU::test_conj_copy_cpu_complex64, test/test_complex.py::TestComplexTensorCPU::test_dtype_inference_cpu_float16, test/test_complex.py::TestComplexTensorCPU::test_dtype_inference_cpu_float32, test/test_complex.py::TestComplexTensorCPU::test_dtype_inference_cpu_float64, test/test_complex.py::TestComplexTensorCPU::test_eq_cpu_complex128, test/test_complex.py::TestComplexTensorCPU::test_eq_cpu_complex64, test/test_complex.py::TestComplexTensorCPU::test_ne_cpu_complex128, test/test_complex.py::TestComplexTensorCPU::test_ne_cpu_complex64, test/test_complex.py::TestComplexTensorCPU::test_to_list_cpu_complex128, test/test_complex.py::TestComplexTensorCPU::test_to_list_cpu_complex64 2025-06-01T22:42:08.1016989Z 2025-06-01T22:42:09.2205193Z 2025-06-01T22:42:09.2206238Z test_numpy_interop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numpy_interop_1.1_eee314e4a881d20e_.log 2025-06-01T22:42:09.2219826Z Running 41 items in this shard: test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_bool, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_complex128, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_complex64, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_float16, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_float32, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_float64, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int16, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int32, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int64, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_int8, test/test_numpy_interop.py::TestNumPyInteropCPU::test___eq___cpu_uint8, test/test_numpy_interop.py::TestNumPyInteropCPU::test_ctor_with_invalid_numpy_array_sequence_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_ctor_with_numpy_scalar_ctor_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_empty_tensors_interop_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_from_list_of_ndarray_warning_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_from_numpy_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_from_numpy_no_leak_on_invalid_dtype_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_has_storage_numpy_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_multiplication_numpy_scalar_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_array_interface_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_index_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_index_multi_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_non_writeable_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_bfloat16, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_bool, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_complex128, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_complex64, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_float16, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_float32, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_float64, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int16, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int32, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int64, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_int8, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_scalar_cmp_cpu_uint8, test/test_numpy_interop.py::TestNumPyInteropCPU::test_numpy_unresizable_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_parse_numpy_int_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_parse_numpy_int_overflow_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_to_numpy_bool_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_to_numpy_cpu, test/test_numpy_interop.py::TestNumPyInteropCPU::test_to_numpy_force_argument_cpu 2025-06-01T22:42:09.2232453Z 2025-06-01T22:42:11.8615643Z 2025-06-01T22:42:11.8617178Z 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_aae3e3c924ed235a_.log 2025-06-01T22:42:11.8618453Z 2025-06-01T22:42:13.2191540Z Running torch_np/test_function_base 1/1 ... [2025-06-01 22:42:13.217471] 2025-06-01T22:42:13.2192009Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:13.2198442Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_function_base.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:42:13.219080] 2025-06-01T22:42:14.1021638Z Running inductor/test_multi_kernel 1/1 ... [2025-06-01 22:42:14.101818] 2025-06-01T22:42:14.1022101Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:14.1029017Z 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-06-01 22:42:14.102389] 2025-06-01T22:42:16.6885573Z Running test_nestedtensor 1/4 ... [2025-06-01 22:42:16.687439] 2025-06-01T22:42:16.6886013Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:16.6892763Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:42:16.687439] 2025-06-01T22:42:18.4346827Z 2025-06-01T22:42:18.4349211Z torch_np/test_function_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_function_base_1.1_724a57f719307eb7_.log 2025-06-01T22:42:18.4350226Z Running 1 items in this shard: test/torch_np/test_function_base.py::TestAppend::test_basic 2025-06-01T22:42:18.4350612Z 2025-06-01T22:42:23.4608432Z Running test_nestedtensor 4/4 ... [2025-06-01 22:42:23.457785] 2025-06-01T22:42:23.4609091Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:23.4617739Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.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-06-01 22:42:23.457785] 2025-06-01T22:42:24.7646419Z 2025-06-01T22:42:24.7648136Z 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_bdfbf913df4fb49e_.log 2025-06-01T22:42:24.7648869Z 2025-06-01T22:42:29.4904400Z Running dynamo/test_misc 1/1 ... [2025-06-01 22:42:29.480208] 2025-06-01T22:42:29.4904831Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:29.4911527Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_misc.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:42:29.480208] 2025-06-01T22:42:36.4194247Z 2025-06-01T22:42:36.4195267Z dynamo/test_misc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_misc_1.1_00a491923047f5a2_.log 2025-06-01T22:42:36.4195877Z 2025-06-01T22:42:41.4635186Z Running export/test_torchbind 1/1 ... [2025-06-01 22:42:41.457939] 2025-06-01T22:42:41.4635694Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:42:41.4642533Z 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-06-01 22:42:41.463563] 2025-06-01T22:42:57.9385083Z 2025-06-01T22:42:57.9386149Z export/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_torchbind_1.1_b4125ef019c262a0_.log 2025-06-01T22:42:57.9422144Z Running 70 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_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_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_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_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_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_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_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_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_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_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_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::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-06-01T22:42:57.9450307Z 2025-06-01T22:43:02.7626940Z Running test_hub 1/1 ... [2025-06-01 22:43:02.762247] 2025-06-01T22:43:02.7636037Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:43:02.7637062Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_hub.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:43:02.763438] 2025-06-01T22:43:07.1297502Z 2025-06-01T22:43:07.1298690Z test_hub 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_hub_1.1_74d5b1b89101668e_.log 2025-06-01T22:43:07.1299231Z 2025-06-01T22:43:11.9103045Z Running distributions/test_constraints 1/1 ... [2025-06-01 22:43:11.909735] 2025-06-01T22:43:11.9103611Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:43:11.9110354Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'distributions/test_constraints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:43:11.910879] 2025-06-01T22:43:17.2266205Z 2025-06-01T22:43:17.2267404Z distributions/test_constraints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_constraints_1.1_7470acdb48a15263_.log 2025-06-01T22:43:17.2317657Z Running 136 items in this shard: test/distributions/test_constraints.py::test_constraint[False-constraint_fn0-False-value0], test/distributions/test_constraints.py::test_constraint[False-constraint_fn1-False-value1], test/distributions/test_constraints.py::test_constraint[False-constraint_fn2-False-value2], test/distributions/test_constraints.py::test_constraint[False-constraint_fn3-True-value3], test/distributions/test_constraints.py::test_constraint[False-constraint_fn4-False-value4], test/distributions/test_constraints.py::test_constraint[False-constraint_fn5-False-value5], test/distributions/test_constraints.py::test_constraint[False-constraint_fn6-True-value6], test/distributions/test_constraints.py::test_constraint[False-constraint_fn7-True-value7], test/distributions/test_constraints.py::test_constraint[False-constraint_fn8-False-value8], test/distributions/test_constraints.py::test_constraint[False-constraint_fn9-True-value9], test/distributions/test_constraints.py::test_constraint[False-constraint_fn10-False-value10], test/distributions/test_constraints.py::test_constraint[False-constraint_fn11-False-value11], test/distributions/test_constraints.py::test_constraint[False-constraint_fn12-True-value12], test/distributions/test_constraints.py::test_constraint[False-constraint_fn13-True-value13], test/distributions/test_constraints.py::test_constraint[False-constraint_fn14-False-value14], test/distributions/test_constraints.py::test_constraint[False-constraint_fn15-True-value15], test/distributions/test_constraints.py::test_constraint[False-constraint_fn16-True-value16], test/distributions/test_constraints.py::test_constraint[False-constraint_fn17-True-value17], test/distributions/test_constraints.py::test_constraint[True-constraint_fn0-False-value0], test/distributions/test_constraints.py::test_constraint[True-constraint_fn1-False-value1], test/distributions/test_constraints.py::test_constraint[True-constraint_fn2-False-value2], test/distributions/test_constraints.py::test_constraint[True-constraint_fn3-True-value3], test/distributions/test_constraints.py::test_constraint[True-constraint_fn4-False-value4], test/distributions/test_constraints.py::test_constraint[True-constraint_fn5-False-value5], test/distributions/test_constraints.py::test_constraint[True-constraint_fn6-True-value6], test/distributions/test_constraints.py::test_constraint[True-constraint_fn7-True-value7], test/distributions/test_constraints.py::test_constraint[True-constraint_fn8-False-value8], test/distributions/test_constraints.py::test_constraint[True-constraint_fn9-True-value9], test/distributions/test_constraints.py::test_constraint[True-constraint_fn10-False-value10], test/distributions/test_constraints.py::test_constraint[True-constraint_fn11-False-value11], test/distributions/test_constraints.py::test_constraint[True-constraint_fn12-True-value12], test/distributions/test_constraints.py::test_constraint[True-constraint_fn13-True-value13], test/distributions/test_constraints.py::test_constraint[True-constraint_fn14-False-value14], test/distributions/test_constraints.py::test_constraint[True-constraint_fn15-True-value15], test/distributions/test_constraints.py::test_constraint[True-constraint_fn16-True-value16], test/distributions/test_constraints.py::test_constraint[True-constraint_fn17-True-value17], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn0-args0], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn1-args1], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn2-args2], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args3], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args4], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args5], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThan-args6], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_biject_to[False-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args10], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args11], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args12], test/distributions/test_constraints.py::test_biject_to[False-_LessThan-args13], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn14-args14], test/distributions/test_constraints.py::test_biject_to[False-_Interval-args15], test/distributions/test_constraints.py::test_biject_to[False-_Interval-args16], test/distributions/test_constraints.py::test_biject_to[False-_Interval-args17], test/distributions/test_constraints.py::test_biject_to[False-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_biject_to[False-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_biject_to[False-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn21-args21], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn22-args22], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn23-args23], test/distributions/test_constraints.py::test_biject_to[False-constraint_fn24-args24], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn0-args0], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn1-args1], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn2-args2], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args3], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args4], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args5], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThan-args6], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_biject_to[True-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args10], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args11], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args12], test/distributions/test_constraints.py::test_biject_to[True-_LessThan-args13], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn14-args14], test/distributions/test_constraints.py::test_biject_to[True-_Interval-args15], test/distributions/test_constraints.py::test_biject_to[True-_Interval-args16], test/distributions/test_constraints.py::test_biject_to[True-_Interval-args17], test/distributions/test_constraints.py::test_biject_to[True-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_biject_to[True-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_biject_to[True-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn21-args21], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn22-args22], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn23-args23], test/distributions/test_constraints.py::test_biject_to[True-constraint_fn24-args24], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn0-args0], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn1-args1], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn2-args2], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args3], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args4], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args5], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThan-args6], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_transform_to[False-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args10], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args11], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args12], test/distributions/test_constraints.py::test_transform_to[False-_LessThan-args13], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn14-args14], test/distributions/test_constraints.py::test_transform_to[False-_Interval-args15], test/distributions/test_constraints.py::test_transform_to[False-_Interval-args16], test/distributions/test_constraints.py::test_transform_to[False-_Interval-args17], test/distributions/test_constraints.py::test_transform_to[False-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_transform_to[False-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_transform_to[False-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn21-args21], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn22-args22], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn23-args23], test/distributions/test_constraints.py::test_transform_to[False-constraint_fn24-args24], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn0-args0], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn1-args1], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn2-args2], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args3], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args4], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args5], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThan-args6], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThanEq-args7], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThanEq-args8], test/distributions/test_constraints.py::test_transform_to[True-_GreaterThanEq-args9], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args10], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args11], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args12], test/distributions/test_constraints.py::test_transform_to[True-_LessThan-args13], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn14-args14], test/distributions/test_constraints.py::test_transform_to[True-_Interval-args15], test/distributions/test_constraints.py::test_transform_to[True-_Interval-args16], test/distributions/test_constraints.py::test_transform_to[True-_Interval-args17], test/distributions/test_constraints.py::test_transform_to[True-_HalfOpenInterval-args18], test/distributions/test_constraints.py::test_transform_to[True-_HalfOpenInterval-args19], test/distributions/test_constraints.py::test_transform_to[True-_HalfOpenInterval-args20], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn21-args21], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn22-args22], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn23-args23], test/distributions/test_constraints.py::test_transform_to[True-constraint_fn24-args24] 2025-06-01T22:43:17.2369817Z 2025-06-01T22:43:22.1020302Z Running functorch/test_vmap 1/2 ... [2025-06-01 22:43:22.101645] 2025-06-01T22:43:22.1021000Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:43:22.1027105Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap.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-06-01 22:43:22.102235] 2025-06-01T22:49:05.2601373Z 2025-06-01T22:49:05.2602366Z functorch/test_vmap 1/2 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_1.2_e1d75aacc74520b3_.log 2025-06-01T22:49:05.3076820Z Running 1055 items in this shard: test/functorch/test_vmap.py::TestVmapAPI::test_accepts_nested_inputs, test/functorch/test_vmap.py::TestVmapAPI::test_batch_rule_does_not_need_to_handle_no_batched_input, test/functorch/test_vmap.py::TestVmapAPI::test_constant_function, test/functorch/test_vmap.py::TestVmapAPI::test_data_attribute, test/functorch/test_vmap.py::TestVmapAPI::test_data_dependent_control_flow_throws, test/functorch/test_vmap.py::TestVmapAPI::test_decomposition_under_python_dispatcher, test/functorch/test_vmap.py::TestVmapAPI::test_fallback_masked_fill, test/functorch/test_vmap.py::TestVmapAPI::test_fallback_warning, test/functorch/test_vmap.py::TestVmapAPI::test_fallback_with_undefined_grad, test/functorch/test_vmap.py::TestVmapAPI::test_grad_unsupported_interaction, test/functorch/test_vmap.py::TestVmapAPI::test_in_dim_not_in_tensor_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_inplace_fallback_nary_different_levels, test/functorch/test_vmap.py::TestVmapAPI::test_inplace_fallback_unary, test/functorch/test_vmap.py::TestVmapAPI::test_item_throws, test/functorch/test_vmap.py::TestVmapAPI::test_multiple_inputs, test/functorch/test_vmap.py::TestVmapAPI::test_multiple_out_dims, test/functorch/test_vmap.py::TestVmapAPI::test_nested_negative_in_dims, test/functorch/test_vmap.py::TestVmapAPI::test_nested_non_default_in_dims, test/functorch/test_vmap.py::TestVmapAPI::test_nested_with_diag_embed, test/functorch/test_vmap.py::TestVmapAPI::test_nested_with_same_map_dim, test/functorch/test_vmap.py::TestVmapAPI::test_non_zero_in_dims, test/functorch/test_vmap.py::TestVmapAPI::test_none_in_dims, test/functorch/test_vmap.py::TestVmapAPI::test_noop_in_inner_vmap, test/functorch/test_vmap.py::TestVmapAPI::test_not_enough_in_dims_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_out_dim_out_of_bounds_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_out_dims_and_num_outputs_mismatch_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_out_dims_edge_case, test/functorch/test_vmap.py::TestVmapAPI::test_out_dims_none_tuple, test/functorch/test_vmap.py::TestVmapAPI::test_out_dims_normal_tensor, test/functorch/test_vmap.py::TestVmapAPI::test_pytree_odict_returns, test/functorch/test_vmap.py::TestVmapAPI::test_pytree_returns_broadcast_simple, test/functorch/test_vmap.py::TestVmapAPI::test_pytree_returns_outdims, test/functorch/test_vmap.py::TestVmapAPI::test_reshape_dim_outof, test/functorch/test_vmap.py::TestVmapAPI::test_restore_vmap_no_vmapped_inputs, test/functorch/test_vmap.py::TestVmapAPI::test_single_input, test/functorch/test_vmap.py::TestVmapAPI::test_unsupported_op_err_msg, test/functorch/test_vmap.py::TestVmapAPI::test_vmap_autocast_cpu, test/functorch/test_vmap.py::TestVmapAPI::test_vmap_autocast_cuda, test/functorch/test_vmap.py::TestVmapOperators::test_T_numpy, test/functorch/test_vmap.py::TestVmapOperators::test_adaptive_avg_pool2d, test/functorch/test_vmap.py::TestVmapOperators::test_argmax_dim, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_div, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_div_dunder, test/functorch/test_vmap.py::TestVmapOperators::test_arithmetic_sub_dunder, test/functorch/test_vmap.py::TestVmapOperators::test_cat, test/functorch/test_vmap.py::TestVmapOperators::test_chunk, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_0_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_0_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_0_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_0_out_dim_2_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_1_out_dim_2_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_2_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_2_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_2_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_2_out_dim_1_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_2_out_dim_2_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_chunk_vmap_in_dim_2_out_dim_2_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_clamp_variant_clamp_max, test/functorch/test_vmap.py::TestVmapOperators::test_clone, test/functorch/test_vmap.py::TestVmapOperators::test_comparison_ops, test/functorch/test_vmap.py::TestVmapOperators::test_cross_batch_size_three, test/functorch/test_vmap.py::TestVmapOperators::test_dot, test/functorch/test_vmap.py::TestVmapOperators::test_expand_as, test/functorch/test_vmap.py::TestVmapOperators::test_fill_and_zero_inplace, test/functorch/test_vmap.py::TestVmapOperators::test_is_complex, test/functorch/test_vmap.py::TestVmapOperators::test_is_floating_point, test/functorch/test_vmap.py::TestVmapOperators::test_mean, test/functorch/test_vmap.py::TestVmapOperators::test_mode_key, test/functorch/test_vmap.py::TestVmapOperators::test_movedim, test/functorch/test_vmap.py::TestVmapOperators::test_new_empty, test/functorch/test_vmap.py::TestVmapOperators::test_new_empty_strided, test/functorch/test_vmap.py::TestVmapOperators::test_new_zeros, test/functorch/test_vmap.py::TestVmapOperators::test_nll_loss, test/functorch/test_vmap.py::TestVmapOperators::test_one_hot, test/functorch/test_vmap.py::TestVmapOperators::test_reshape, test/functorch/test_vmap.py::TestVmapOperators::test_result_type, test/functorch/test_vmap.py::TestVmapOperators::test_select, test/functorch/test_vmap.py::TestVmapOperators::test_silu_backward, test/functorch/test_vmap.py::TestVmapOperators::test_slice, test/functorch/test_vmap.py::TestVmapOperators::test_split, test/functorch/test_vmap.py::TestVmapOperators::test_stack, test/functorch/test_vmap.py::TestVmapOperators::test_stride, test/functorch/test_vmap.py::TestVmapOperators::test_t, test/functorch/test_vmap.py::TestVmapOperators::test_tensor_split, test/functorch/test_vmap.py::TestVmapOperators::test_to, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_abs, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_atan, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_cos, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_floor, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_log, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_log10, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_log2, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_neg, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_reciprocal, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_sigmoid, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_sin, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_sqrt, test/functorch/test_vmap.py::TestVmapOperators::test_unary_pointwise_tan, test/functorch/test_vmap.py::TestVmapOperators::test_unfold, test/functorch/test_vmap.py::TestVmapOperators::test_unsqueeze, test/functorch/test_vmap.py::TestVmapOperators::test_view, test/functorch/test_vmap.py::TestVmapOperators::test_view_as, test/functorch/test_vmap.py::TestVmapOperators::test_view_as_complex, test/functorch/test_vmap.py::TestVmapOperators::test_view_as_real, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_0_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_composition_in_dim_1_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_error_in_dim_1_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_0_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_0_out_dim_1_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_0_out_dim_2_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_1_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_1_out_dim_0_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_1_out_dim_2_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_2_out_dim_0_randomness_error, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_chunksize_in_dim_2_out_dim_2_randomness_same, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_fallback_check, test/functorch/test_vmap.py::TestVmapOperators::test_vmap_fallback_check_ok, test/functorch/test_vmap.py::TestVmapOperators::test_weird_matmul_case, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_advanced_indexing_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_False_track_running_stats_False_affine_False_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_True_track_running_stats_False_affine_False_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_batch_norm_training_True_track_running_stats_True_affine_False_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_conv_double_backward_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_fill__Tensor_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_index_fill_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_index_put_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_inplace_on_view_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_isinf_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_isnan_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_linalg_eigh_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_namedtuple_returns_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_H_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyMulCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyMulScalarCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpySortCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_NumpyTakeCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_SelectAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_T_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___getitem___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rmatmul___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___rmod___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule___ror___cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__softmax_backward_data_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_acos_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_add_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_addbmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_addcdiv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_addcmul_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_addmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_addmv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_addr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_aminmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_arange_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_argmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_argsort_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_as_strided_partial_views_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_atan2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_atleast_1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_baddbmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bernoulli_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bincount_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bitwise_and_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bitwise_not_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bitwise_right_shift_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bitwise_xor_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bool_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_broadcast_to_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_bucketize_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cauchy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cdist_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ceil_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_char_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_char_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cholesky_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cholesky_inverse_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_clamp_min_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_column_stack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_combinations_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_conj_physical_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_constant_pad_nd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_corrcoef_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_count_nonzero_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cov_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cross_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cummax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cumprod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_cumulative_trapezoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_deg2rad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_diag_embed_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_diagflat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_diagonal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_digamma_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_div_floor_rounding_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_div_no_rounding_mode_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_dot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_double_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_dsplit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_empty_strided_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_eq_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_equal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_erfc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_erfinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_expand_as_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_expand_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_expm1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_exponential_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_fft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_fft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_fftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_hfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_ihfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_irfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_rfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fft_rfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fliplr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_float_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_float_power_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_floor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_floor_divide_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_fmod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_frac_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_frexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_gather_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_gcd_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_gt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_half_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_half_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_heaviside_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_histogram_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_hsplit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_hstack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_i0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_fill_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_put_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_reduce_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_index_reduce_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_inner_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_int_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isfinite_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isinf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isnan_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isneginf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isposinf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_isreal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_item_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_jiterator_binary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ldexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_lerp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_lgamma_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_cholesky_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_cholesky_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_det_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_eigh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_eigvals_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_eigvalsh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_householder_product_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_inv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_inv_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_lu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_lu_factor_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_matrix_rank_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_pinv_hermitian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_qr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_slogdet_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_solve_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_solve_triangular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_svd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_tensorsolve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linalg_vector_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linspace_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_linspace_tensor_overload_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logcumsumexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logdet_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logical_or_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logical_xor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_logspace_tensor_overload_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_long_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_lt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_lu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_lu_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_lu_unpack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mT_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_argmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_cumprod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_fill_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_log_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_median_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_normalize_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_softmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_std_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_sum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_masked_var_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_matrix_exp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_max_binary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_max_reduction_with_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_maximum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_median_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_min_reduction_no_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mode_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_movedim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_multinomial_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_mv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nanmedian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nansum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_narrow_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_native_batch_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_native_dropout_backward_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ne_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_neg_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_new_empty_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_new_full_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_new_ones_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nextafter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_bilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_celu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_dropout_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_elu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_embedding_bag_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_embedding_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_glu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_grid_sample_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_group_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_hardswish_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_hardtanh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_kl_div_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_l1_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_logsigmoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_mse_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_normalize_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_one_hot_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pad_circular_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pad_replicate_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_relu6_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_selu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_silu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_softmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_tanhshrink_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_unfold_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nonzero_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_nonzero_static_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_norm_nuc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_normal_number_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ones_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_outer_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_permute_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_polar_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_pow_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_quantile_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_rad2deg_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_randn_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_ravel_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_real_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_remainder_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_renorm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_repeat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_reshape_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_resize__cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_rot90_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_scalar_tensor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_scatter_add_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_scatter_reduce_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_scatter_reduce_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_scatter_reduce_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_scatter_reduce_sum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sgn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_short_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sigmoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_bartlett_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_cosine_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_exponential_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_general_cosine_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_hamming_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_kaiser_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signal_windows_nuttall_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_signbit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sinh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_slice_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_slice_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sort_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_bessel_j0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_bessel_y1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_entr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_erfcx_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_i1e_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_legendre_polynomial_p_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_log_ndtr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_modified_bessel_i0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_modified_bessel_i1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_modified_bessel_k0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_modified_bessel_k1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_ndtr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_spherical_bessel_j0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_special_zeta_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_split_list_args_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_split_with_sizes_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_sqrt_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_std_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_std_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_std_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_t_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_take_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_tan_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_tensor_split_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_tensordot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_tile_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_to_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_topk_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_trace_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_transpose_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_trapezoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_trapz_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_tril_indices_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_triu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unbind_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unique_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unsafe_split_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_unsqueeze_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_var_mean_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_var_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_vdot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_vsplit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_where_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_zero__cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_op_has_batch_rule_zeros_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_searchsorted_bucketize_cpu, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_H_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyCubeCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyMulScalarCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpySplitCopyWithIntCustomOp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_SelectAutogradFunction_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___getitem___functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rdiv___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rmatmul___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rmod___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rpow___cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive___rxor___cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__batch_norm_with_update_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__chunk_cat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive__segment_reduce_offsets_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_addbmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_addcdiv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_addcmul_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_addmm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_addmm_decomposed_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_addmv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_addr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_alias_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_all_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_allclose_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_amax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_amin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_angle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_any_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_argsort_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_argwhere_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_as_strided_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_as_strided_partial_views_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_as_strided_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_asinh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_atan2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_atan_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_atleast_1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_atleast_2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_atleast_3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bernoulli_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bfloat16_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bincount_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bitwise_and_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bitwise_left_shift_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bitwise_not_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bitwise_xor_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_block_diag_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_bool_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_broadcast_tensors_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_broadcast_to_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_byte_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cfloat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_chalf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_char_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cholesky_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_chunk_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_clamp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_clamp_max_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_complex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_conj_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_conj_physical_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_constant_pad_nd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_copysign_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_corrcoef_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cosh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cross_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cummin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cumprod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_cumsum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_deg2rad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_diag_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_diagonal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_diagonal_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_diff_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_digamma_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_dist_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_div_trunc_rounding_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_dstack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_einsum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_empty_permuted_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_eq_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_erf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_exp2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_exp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_expand_as_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_expand_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_expand_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_exponential_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_eye_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_fft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_fft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_fftshift_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_hfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_hfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_ifftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_ihfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_ihfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_irfft2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_rfft_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fft_rfftn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_flatten_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_flip_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_fliplr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_full_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_gcd_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_geometric_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_geqrf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_gradient_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_grid_sampler_2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_half_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_heaviside_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_histogram_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_histogramdd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_hstack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_igamma_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_igammac_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_put_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_put_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_reduce_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_index_select_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_int_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_int_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isfinite_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isinf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_isreal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_kthvalue_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_lcm_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_cholesky_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_cond_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_cross_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_eig_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_householder_product_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_lu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_lu_factor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_lu_factor_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_matrix_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_matrix_power_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_matrix_rank_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_pinv_hermitian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_slogdet_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_solve_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_tensorsolve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_vander_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_linalg_vecdot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_log10_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_log1p_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_log_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_log_normal_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_log_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logaddexp2_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logaddexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logcumsumexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logdet_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logical_xor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logit_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_logspace_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_long_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_lu_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_lu_unpack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mH_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mT_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_log_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_logaddexp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_normalize_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_softmin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_std_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_sum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_masked_var_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_matmul_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_matrix_exp_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_max_binary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_max_reduction_no_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_max_reduction_with_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_maximum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_median_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_min_binary_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_min_reduction_with_dim_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_minimum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_msort_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_multinomial_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ne_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_new_empty_strided_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_new_ones_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nextafter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_batch_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_celu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_ctc_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_dropout2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_elu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_embedding_bag_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_gelu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_hardswish_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_hardtanh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_huber_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_layer_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_local_response_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_logsigmoid_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_pool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_pool3d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_mish_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_mse_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_nll_loss_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_one_hot_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pad_constant_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pad_replicate_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_relu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_rms_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_selu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_silu_complex_cpu_complex64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_silu_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_softshrink_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_nonzero_static_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_norm_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_norm_inf_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_normal_in_place_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ones_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ormqr_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_pca_lowrank_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_pinverse_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_positive_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_pow_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_put_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_rand_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_randint_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_randn_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_randn_like_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_ravel_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_remainder_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_repeat_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_reshape_as_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_resize__cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_resolve_conj_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_resolve_neg_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_round_decimals_neg_3_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scalar_tensor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scatter_add_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scatter_reduce_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scatter_reduce_prod_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_scatter_reduce_sum_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_select_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_select_scatter_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_short_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_short_functorch_no_channels_last_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sign_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_exponential_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_gaussian_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_general_cosine_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_general_hamming_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_kaiser_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_signal_windows_nuttall_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sin_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_slice_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_softmax_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_bessel_j0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_bessel_j1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_bessel_y0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_erfcx_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_hermite_polynomial_h_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_i0e_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_i1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_i1e_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_modified_bessel_i0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_modified_bessel_i1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_modified_bessel_k0_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_modified_bessel_k1_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_special_xlog1py_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_split_list_args_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_squeeze_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_stack_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_std_mean_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_std_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_sub_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_svd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_svd_lowrank_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_t_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_tensor_split_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_tile_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_to_sparse_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_torch__scaled_mm_cpu_float8_e4m3fn, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_trace_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_transpose_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_transpose_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_triangular_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_triu_indices_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_true_divide_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_trunc_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unbind_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unflatten_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unfold_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unfold_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unique_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unravel_index_cpu_int64, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_unsafe_split_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_var_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_var_mean_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_var_mean_unbiased_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_vdot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_view_as_complex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_view_copy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_where_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_xlogy_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_zero__cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_exhaustive_zeros_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_cond_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_cross_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_eig_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_eigh_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_eigvals_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_inv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_ldl_factor_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_lu_solve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_matrix_power_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_multi_dot_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_pinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_svd_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_svdvals_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_tensorinv_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_tensorsolve_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_linalg_failure_1D_input_linalg_vander_cpu_float32, test/functorch/test_vmap.py::TestVmapOperatorsOpInfoCPU::test_vmap_with_anomaly_detection_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_div_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_inplace_manyview_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_lgamma_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_log1p_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_log_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_max_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_median_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_min_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_mul_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_randomness_backend0_randomness_different_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_randomness_backend0_randomness_same_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_select_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_stack_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_sub_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_trace_cpu, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_vmap_fallback_check_ok, test/functorch/test_vmap.py::TestVmapBatchedGradientCPU::test_where_cpu, test/functorch/test_vmap.py::TestTransformFailureCPU::test_fails_with_autograd_function_transform_grad_and_value_cpu, test/functorch/test_vmap.py::TestTransformFailureCPU::test_fails_with_autograd_function_transform_jacfwd_cpu, test/functorch/test_vmap.py::TestTransformFailureCPU::test_fails_with_autograd_function_transform_jvp_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_alpha_dropout_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_first_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_different_batched_input_first_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_first_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_first_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_last_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_error_batched_input_none_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_first_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_last_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_last_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_last_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_none_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_False_randomness_same_batched_input_none_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_first_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_last_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_none_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_different_batched_input_none_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_first_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_last_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_last_batched_probability_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_error_batched_input_none_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_first_batched_probability_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_first_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_last_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_bernoulli_in_place_use_generator_True_randomness_same_batched_input_none_batched_probability_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_0_out_dim_0_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_0_out_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_chunk_vmap_in_dim_2_out_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_dropout_unbatched_randomness_error_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_factory_ops_randomness_different_use_generator_True_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_factory_ops_randomness_same_use_generator_False_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_alpha_dropout_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_different_batched_input_first_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_different_batched_input_none_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_error_batched_input_first_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_error_batched_input_first_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_same_batched_input_first_dim_3_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_same_batched_input_last_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_feature_dropout_randomness_same_batched_input_none_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_like_functions_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_different_batched_call_False_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_different_batched_call_True_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_different_batched_call_True_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_different_batched_call_True_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_error_batched_call_False_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_error_batched_call_False_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_error_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_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_same_batched_call_False_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_False_randomness_same_batched_call_True_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_different_batched_call_False_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_different_batched_call_True_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_different_batched_call_True_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_error_batched_call_False_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_error_batched_call_False_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_error_batched_call_True_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_error_batched_call_True_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_same_batched_call_False_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_same_batched_call_False_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_multinomial_use_generator_True_randomness_same_batched_call_True_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_batched_input_first_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_batched_input_first_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_batched_input_last_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_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_different_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_last_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_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_first_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_first_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_last_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_False_randomness_same_batched_input_none_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_first_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_first_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_last_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_last_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_none_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_different_batched_input_none_batched_other_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_batched_input_first_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_batched_input_first_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_batched_input_last_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_batched_input_none_batched_other_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_error_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_none_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_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_binary_out_of_place_use_generator_True_randomness_same_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_none_batched_other_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_False_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_inplace_use_generator_True_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_error_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_error_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_error_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_same_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_False_randomness_same_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_different_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_different_batched_input_last_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_different_batched_input_none_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_random_unary_out_of_place_use_generator_True_randomness_same_batched_input_first_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_randperm_randomness_different_use_generator_False_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_randperm_randomness_different_use_generator_True_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_randperm_randomness_same_use_generator_False_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_unsupported_random_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_0_out_dim_0_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_1_out_dim_0_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_1_out_dim_2_cpu, test/functorch/test_vmap.py::TestRandomnessCPU::test_vmap_chunksize_in_dim_2_out_dim_0_cpu, test/functorch/test_vmap.py::TestVmapDeviceTypeCPU::test_check_tensor_cpu, test/functorch/test_vmap.py::TestVmapDeviceTypeCPU::test_vmap_fallback_check, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_fallback_binary_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_fallback_binary_nt_and_batched_dense_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_fallback_unary_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_fallback_with_nt_and_batched_dense_with_nonzero_bdim_raises_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_multilevel_vmap_raises_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_nt_acts_as_dense_in_vmap_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_nt_with_nonzero_in_dim_raises_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_nt_with_nonzero_out_dim_raises_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_shape_call_cpu, test/functorch/test_vmap.py::TestVmapNestedTensorCPU::test_vmap_fallback_check_ok 2025-06-01T22:49:05.3525211Z 2025-06-01T22:49:10.0258413Z Running inductor/test_perf 1/1 ... [2025-06-01 22:49:10.017455] 2025-06-01T22:49:10.0258913Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:49:10.0265894Z 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-06-01 22:49:10.017455] 2025-06-01T22:49:20.6505933Z 2025-06-01T22:49:20.6506978Z inductor/test_perf 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_perf_1.1_df24cf244ebf4195_.log 2025-06-01T22:49:20.6507987Z 2025-06-01T22:49:25.6655490Z Running test_ops_jit 2/3 ... [2025-06-01 22:49:25.664883] 2025-06-01T22:49:25.6655965Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:49:25.6661955Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.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-06-01 22:49:25.666036] 2025-06-01T22:49:59.4245370Z 2025-06-01T22:49:59.4246287Z test_nestedtensor 1/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_1.4_4f84ea839324bab5_.log 2025-06-01T22:49:59.4424268Z Running 375 items in this shard: test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_10, 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_3d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_20, 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_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_10, 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_cat, test/test_nestedtensor.py::TestNestedTensor::test_copy_, test/test_nestedtensor.py::TestNestedTensor::test_like_functions_randn_like, test/test_nestedtensor.py::TestNestedTensor::test_nested_tensor, test/test_nestedtensor.py::TestNestedTensor::test_size_dim, test/test_nestedtensor.py::TestNestedTensor::test_unbind_4, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_binary_ops_with_scalar_ge_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_detach_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_detach_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_device_checks_cpu, 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_embedding_jagged_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_noncontiguous_cpu_float32, 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_matmul_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_nt_with_broadcasted_t_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_with_bmm_path_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_narrow_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_384_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_8_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_cpu_float16, 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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_softmax_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim3_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim4_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_cos_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_silu_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_sin_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_sqrt_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_tanh__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float32, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_add_strided_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_for_add_op_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_dropout_backward_jagged_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_gelu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_128_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_edge_case_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_128_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_4_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_512_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_reshape_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_reshape_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_softmax_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_squeeze_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_relu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_selu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_to_buffer_series_ops_grad_with_broadcast_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_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, 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_True_cpu_float64, 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_0_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, 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_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_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_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_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_False_cpu_float16, 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_3_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, 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_False_contiguous_True_cpu_float64, 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_float64, 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_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_True_cpu_float64, 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_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_True_cpu_float32, 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_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_broadcasting_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_with_nested_int_second_arg_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_padded_dense_conversion_preserves_metadata_cache_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_preserves_metadata_cache_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_composite_op_with_custom_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_construction_from_list_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_device_dtype_transfer_updates_offsets_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flatten_decomp_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_False_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_is_contiguous_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_float64, 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_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_False_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_False_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_layer_norm_operate_on_batch_dim_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layout_under_torch_dispatch_mode_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_nt_dim_3_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_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_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_True_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_False_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_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_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_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_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_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_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_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_2_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_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_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_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_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_True_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_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_False_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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_backwards_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_flop_counter_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_constant_sequence_length_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_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_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_2_requires_grad_True_components_require_grad_True_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_specialize_dynamic_shape_recompile_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_squeeze_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_False_requires_grad_True_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_True_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_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_True_cpu_float32, 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_4_requires_grad_False_cpu_float16, 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_nt_dim_2_requires_grad_False_cpu_float16, 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_unbind_backward_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_transpose_ragged_idx_3_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_view_ragged_idx_not_one_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_asin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_ceil_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_erf_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_power_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_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_var_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_5_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_logsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softplus_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_threshold_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_polygamma_polygamma_n_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_real_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sgn_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_ndtri_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_abs_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_complex_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_digamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_max_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_min_binary_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_neg_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_prelu_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_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_i1_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_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_xlogy_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_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atan2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_char_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_floor_rounding_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_erfinv_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_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_floor_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ge_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isclose_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isneginf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_jiterator_binary_return_by_ref_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_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ne_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_hardshrink_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_logsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_relu6_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_rsub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_short_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sinc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_y0_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_spherical_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_zeta_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_split_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_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_trunc_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_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_asinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_count_nonzero_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_digamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_eq_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_erfc_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_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_floor_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_igamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_igammac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isposinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_xor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_lt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_norm_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_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_rms_norm_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_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polygamma_polygamma_n_4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_pow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_airy_ai_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_v_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_legendre_polynomial_p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_scaled_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_scaled_modified_bessel_k1_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_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_trunc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_xlogy_cpu_float32 2025-06-01T22:49:59.4595764Z 2025-06-01T22:50:04.0398835Z Running optim/test_lrscheduler 1/1 ... [2025-06-01 22:50:04.036622] 2025-06-01T22:50:04.0399319Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:50:04.0400605Z 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-06-01 22:50:04.037315] 2025-06-01T22:50:08.5306233Z 2025-06-01T22:50:08.5307493Z optim/test_lrscheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_lrscheduler_1.1_904502e2f0203ff3_.log 2025-06-01T22:50:08.5308376Z 2025-06-01T22:50:13.4055378Z Running xpu/test_gemm 1/1 ... [2025-06-01 22:50:13.404080] 2025-06-01T22:50:13.4061206Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:50:13.4062270Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_gemm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:50:13.404080] 2025-06-01T22:50:17.7131489Z 2025-06-01T22:50:17.7132889Z test_nestedtensor 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_4.4_cba901288c463a17_.log 2025-06-01T22:50:17.7322894Z Running 393 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_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_5_vocab_size_10, 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_2_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_default_nested_tensor, test/test_nestedtensor.py::TestNestedTensor::test_nested_namespace, test/test_nestedtensor.py::TestNestedTensor::test_numel, test/test_nestedtensor.py::TestNestedTensor::test_size, test/test_nestedtensor.py::TestNestedTensor::test_stride, test/test_nestedtensor.py::TestNestedTensor::test_unbind_dim, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cpu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_clone_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_contiguous_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_empty_like_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_empty_like_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_empty_like_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_layer_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_chunk_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_chunk_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_384_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_in_place_cpu_float32, 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_float32, 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_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_False_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_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim4_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_noncontiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_output_size_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_zero_numel_errors_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isinf_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isnan_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unbind_noncontiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float16, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_as_nested_tensor_propagates_gradients_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_2_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_513_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_list_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_mask_and_to_padded_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_padded_fused_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_squeeze_backward_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_set_requires_grad_from_list_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_set_requires_grad_from_mask_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_unbind_flow_through_cpu, 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_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, 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_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_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_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_False_cpu_float32, 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_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_True_contiguous_False_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_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_True_cpu_float32, 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_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_False_cpu_float32, 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_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_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_broadcast_shapes_on_in_graph_constructed_njt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_chunk_cpu, 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_device_dtype_transfer_updates_offsets_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_converts_stacked_seq_indices_cpu_float32, 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_True_cpu_float16, 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_nested_tensor_requires_grad_False_components_require_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_True_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_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, 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_False_requires_grad_True_components_require_grad_False_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_mean_keepdim_True_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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_padded_dense_conversion_kernels_cpu_float16, 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_False_cpu_float64, 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_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_2d_input_requires_grad_False_components_require_grad_True_cpu_float32, 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_reduce_ragged_idx_1_requires_grad_False_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_like_shape_randn_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_empty_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_full_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_ones_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_njt_cat_cpu, 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_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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_False_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_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_mean_keepdim_True_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_False_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_False_requires_grad_True_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_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_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_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_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_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_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_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_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_True_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_True_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_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_True_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_True_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_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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_record_stream_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_backwards_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_compile_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_constant_sequence_length_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_contig_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_with_holes_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_cpu, 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_transpose_non_ragged_dim_requires_grad_False_components_require_grad_True_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_transpose_non_ragged_dim_requires_grad_True_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_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_ragged_and_non_batch_keepdim_True_requires_grad_False_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_False_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_2_requires_grad_False_cpu_float32, 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_True_cpu_float64, 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_3_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_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unary_pointwise_transposed_inputs_cpu, 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_3_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_equals_2_bad_dim_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unsafe_view_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_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_atan2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_cos_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_expm1_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_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_log1p_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_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nan_to_num_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i0e_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_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sub_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___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_copysign_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_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_float_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_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log10_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log2_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_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nansum_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_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_real_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_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rsub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_std_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_all_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_bfloat16_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clone_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_div_trunc_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_eq_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_int_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isreal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_jiterator_unary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_long_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_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_minimum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mvlgamma_mvlgamma_p_3_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_narrow_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_hardsigmoid_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_mish_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_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_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_signbit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_hermite_polynomial_h_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_k0_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_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_unflatten_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___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_abs_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_asin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_bfloat16_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ceil_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_complex_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_conj_physical_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_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_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ge_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_half_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_isreal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_jiterator_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log10_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_not_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_var_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_nansum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ne_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_logsigmoid_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_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_softplus_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sinc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_y0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_log_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_ndtri_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_spherical_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_split_with_sizes_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_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_where_cpu_float32 2025-06-01T22:50:17.7498525Z 2025-06-01T22:50:18.4372272Z 2025-06-01T22:50:18.4374626Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_fa8440b5c4025507_.log 2025-06-01T22:50:18.4375358Z Running 0 items in this shard: 2025-06-01T22:50:18.4375557Z 2025-06-01T22:50:22.5795845Z Running test_ops_gradients 2/2 ... [2025-06-01 22:50:22.566979] 2025-06-01T22:50:22.5796311Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:50:22.5802550Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:50:22.566979] 2025-06-01T22:50:23.3566965Z Running inductor/test_snode_runtime 1/1 ... [2025-06-01 22:50:23.347725] 2025-06-01T22:50:23.3567485Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:50:23.3585589Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_snode_runtime.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:50:23.357857] 2025-06-01T22:50:34.9941686Z 2025-06-01T22:50:34.9942883Z inductor/test_snode_runtime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_snode_runtime_1.1_6149c453eae5b51a_.log 2025-06-01T22:50:34.9943587Z 2025-06-01T22:50:40.4722663Z Running dynamo/test_cudagraphs_expandable_segments 1/1 ... [2025-06-01 22:50:40.471030] 2025-06-01T22:50:40.4723636Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:50:40.4730261Z 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-06-01 22:50:40.471030] 2025-06-01T22:50:46.0222068Z 2025-06-01T22:50:46.0223688Z 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_f88b17216d88acce_.log 2025-06-01T22:50:46.0225325Z 2025-06-01T22:50:51.9369355Z Running dynamo/test_modes 1/1 ... [2025-06-01 22:50:51.936620] 2025-06-01T22:50:51.9370078Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:50:51.9377137Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:50:51.937192] 2025-06-01T22:51:03.7369250Z 2025-06-01T22:51:03.7370442Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_fc1d3510064672da_.log 2025-06-01T22:51:03.7371098Z 2025-06-01T22:51:09.0391294Z Running inductor/test_mkldnn_pattern_matcher 1/1 ... [2025-06-01 22:51:09.038785] 2025-06-01T22:51:09.0391885Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:51:09.0398572Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mkldnn_pattern_matcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:51:09.039364] 2025-06-01T22:51:20.0632510Z 2025-06-01T22:51:20.0633815Z inductor/test_mkldnn_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mkldnn_pattern_matcher_1.1_0498ef1fac23d8d5_.log 2025-06-01T22:51:20.0634601Z 2025-06-01T22:51:25.0473185Z Running dynamo/test_model_output 1/1 ... [2025-06-01 22:51:25.047098] 2025-06-01T22:51:25.0473674Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:51:25.0480356Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_model_output.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:51:25.047767] 2025-06-01T22:51:30.0431439Z 2025-06-01T22:51:30.0432470Z dynamo/test_model_output 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_model_output_1.1_7b6bbb3f96dde27a_.log 2025-06-01T22:51:30.0433149Z 2025-06-01T22:51:34.8535958Z Running torch_np/numpy_tests/core/test_numeric 1/1 ... [2025-06-01 22:51:34.843309] 2025-06-01T22:51:34.8536687Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:51:34.8542601Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_numeric.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:51:34.843309] 2025-06-01T22:51:45.6638616Z 2025-06-01T22:51:45.6639921Z torch_np/numpy_tests/core/test_numeric 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_numeric_1.1_60cfca63673b75c5_.log 2025-06-01T22:51:45.6734101Z Running 273 items in this shard: test/torch_np/numpy_tests/core/test_numeric.py::TestResize::test_copies, test/torch_np/numpy_tests/core/test_numeric.py::TestResize::test_negative_resize, test/torch_np/numpy_tests/core/test_numeric.py::TestResize::test_repeats, test/torch_np/numpy_tests/core/test_numeric.py::TestResize::test_reshape_from_zero, test/torch_np/numpy_tests/core/test_numeric.py::TestResize::test_zeroresize, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_choose, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_clip, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_compress, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_count_nonzero, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_cumproduct, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_diagonal, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_accuracy, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype0, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype1, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype2, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype3, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype4, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype5, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype6, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_dtype7, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_edgecases_val_2147483647_ndigits_-1, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_edgecases_val_2147483647_ndigits_-10, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_dunder_round_edgecases_val_2147483647_ndigits_-9, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_mean, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_prod, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_ptp, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_ravel, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_repeat, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_reshape, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_round, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_round_2, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_round_py_consistency, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_searchsorted, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_size, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_squeeze, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_std, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_sum, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_swapaxes, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_take, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_trace, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_transpose, test/torch_np/numpy_tests/core/test_numeric.py::TestNonarrayArgs::test_var, test/torch_np/numpy_tests/core/test_numeric.py::TestIsscalar::test_isscalar, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolScalar::test_bitwise_and_eq, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolScalar::test_bitwise_and_is, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolScalar::test_bitwise_or_eq, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolScalar::test_bitwise_or_is, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolScalar::test_bitwise_xor_eq, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolScalar::test_bitwise_xor_is, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolScalar::test_logical, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolArray::test_all_any, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolArray::test_logical_and_or_xor, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolArray::test_logical_not_abs, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolCmp::test_double, test/torch_np/numpy_tests/core/test_numeric.py::TestBoolCmp::test_float, test/torch_np/numpy_tests/core/test_numeric.py::TestSeterr::test_default, test/torch_np/numpy_tests/core/test_numeric.py::TestSeterr::test_divide_err, test/torch_np/numpy_tests/core/test_numeric.py::TestSeterr::test_errobj, test/torch_np/numpy_tests/core/test_numeric.py::TestSeterr::test_set, test/torch_np/numpy_tests/core/test_numeric.py::TestFloatExceptions::test_floating_exceptions_typecode_D, test/torch_np/numpy_tests/core/test_numeric.py::TestFloatExceptions::test_floating_exceptions_typecode_F, test/torch_np/numpy_tests/core/test_numeric.py::TestFloatExceptions::test_floating_exceptions_typecode_d, test/torch_np/numpy_tests/core/test_numeric.py::TestFloatExceptions::test_floating_exceptions_typecode_e, test/torch_np/numpy_tests/core/test_numeric.py::TestFloatExceptions::test_floating_exceptions_typecode_f, test/torch_np/numpy_tests/core/test_numeric.py::TestFloatExceptions::test_warnings, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_can_cast, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_can_cast_2, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_can_cast_values, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_coercion, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_coercion_2, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_promote_types_endian, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_result_type, test/torch_np/numpy_tests/core/test_numeric.py::TestTypes::test_tesult_type_2, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_2592_dtype0_count_10_error_index_5, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_2592_dtype0_count_10_error_index_9, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_empty_result, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_failed_itemsetting, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_lengths, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_too_few_items, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_types, test/torch_np/numpy_tests/core/test_numeric.py::TestFromiter::test_values, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_?, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_B, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_D, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_F, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_b, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_d, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_e, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_f, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_h, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_i, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_axis_all_dtypes_typecode_l, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_count_nonzero_list, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_countnonzero_axis_empty, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_countnonzero_keepdims, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_nonzero_onedim, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_nonzero_onedim_differs, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_nonzero_trivial, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_nonzero_trivial_differs, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_nonzero_twodim, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_nonzero_zerod, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_nonzero_zerod_differs, test/torch_np/numpy_tests/core/test_numeric.py::TestNonzeroAndCountNonzero::test_sparse, test/torch_np/numpy_tests/core/test_numeric.py::TestIndex::test_boolean, test/torch_np/numpy_tests/core/test_numeric.py::TestIndex::test_boolean_edgecase, test/torch_np/numpy_tests/core/test_numeric.py::TestBinaryRepr::test_large_neg_int64, test/torch_np/numpy_tests/core/test_numeric.py::TestBinaryRepr::test_neg_width_boundaries, test/torch_np/numpy_tests/core/test_numeric.py::TestBinaryRepr::test_negative, test/torch_np/numpy_tests/core/test_numeric.py::TestBinaryRepr::test_positive, test/torch_np/numpy_tests/core/test_numeric.py::TestBinaryRepr::test_sufficient_width, test/torch_np/numpy_tests/core/test_numeric.py::TestBinaryRepr::test_zero, test/torch_np/numpy_tests/core/test_numeric.py::TestBaseRepr::test_base3, test/torch_np/numpy_tests/core/test_numeric.py::TestBaseRepr::test_base_range, test/torch_np/numpy_tests/core/test_numeric.py::TestBaseRepr::test_negative, test/torch_np/numpy_tests/core/test_numeric.py::TestBaseRepr::test_positive, test/torch_np/numpy_tests/core/test_numeric.py::TestArrayComparisons::test_array_equal, test/torch_np/numpy_tests/core/test_numeric.py::TestArrayComparisons::test_array_equal_equal_nan, test/torch_np/numpy_tests/core/test_numeric.py::TestArrayComparisons::test_array_equiv, test/torch_np/numpy_tests/core/test_numeric.py::TestArrayComparisons::test_none_compares_elementwise, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_array_double, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_complex, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_func_takes_out, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_inplace_array, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_inplace_simple, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_nan, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_non_contig, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_property, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_scalar_nan_propagation_arr0_amin0_amax0, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_value_min_max_flip_amin2_amax2, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_value_min_max_flip_amin_1_amax1, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_value_min_max_flip_amin_1_amax_0, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_with_out_array_int32, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_with_out_array_outint32, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_with_out_memory_overlap, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_with_out_simple, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_with_out_simple2, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_with_out_simple_int32, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_clip_with_out_transposed, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_noncontig_inplace, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_2_dtype_D, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_2_dtype_F, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_2_dtype_e, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_?, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_B, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_b, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_d, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_f, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_h, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_i, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_ones_pathological_dtype_l, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_complex, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_double, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_inplace_01, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_inplace_02, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_int, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_int32_inout_casting0, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_int32_inout_casting_unsafe, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_int32_out, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_int64_inout, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_int64_out, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_nonnative, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_simple_out, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_01, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_02, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_03, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_04, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_05, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_06, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_07, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_08, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_09, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_10, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_11, test/torch_np/numpy_tests/core/test_numeric.py::TestClip::test_type_cast_12, test/torch_np/numpy_tests/core/test_numeric.py::TestAllclose::test_equalnan, test/torch_np/numpy_tests/core/test_numeric.py::TestAllclose::test_ip_allclose, test/torch_np/numpy_tests/core/test_numeric.py::TestAllclose::test_ip_not_allclose, test/torch_np/numpy_tests/core/test_numeric.py::TestAllclose::test_min_int, test/torch_np/numpy_tests/core/test_numeric.py::TestAllclose::test_no_parameter_modification, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_equal_nan, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_ip_all_isclose, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_ip_isclose, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_ip_isclose_allclose, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_ip_none_isclose, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_no_parameter_modification, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_non_finite_scalar, test/torch_np/numpy_tests/core/test_numeric.py::TestIsclose::test_scalar_return, test/torch_np/numpy_tests/core/test_numeric.py::TestStdVar::test_basic, test/torch_np/numpy_tests/core/test_numeric.py::TestStdVar::test_ddof1, test/torch_np/numpy_tests/core/test_numeric.py::TestStdVar::test_ddof2, test/torch_np/numpy_tests/core/test_numeric.py::TestStdVar::test_out_scalar, test/torch_np/numpy_tests/core/test_numeric.py::TestStdVar::test_scalars, test/torch_np/numpy_tests/core/test_numeric.py::TestStdVarComplex::test_basic, test/torch_np/numpy_tests/core/test_numeric.py::TestStdVarComplex::test_scalars, test/torch_np/numpy_tests/core/test_numeric.py::TestCreationFuncs::test_empty, test/torch_np/numpy_tests/core/test_numeric.py::TestCreationFuncs::test_for_reference_leak, test/torch_np/numpy_tests/core/test_numeric.py::TestCreationFuncs::test_full, test/torch_np/numpy_tests/core/test_numeric.py::TestCreationFuncs::test_ones, test/torch_np/numpy_tests/core/test_numeric.py::TestCreationFuncs::test_zeros, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc0_dtype0, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc0_dtype1, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc1_dtype0, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc1_dtype1, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc2_dtype0, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc2_dtype1, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc3_dtype0, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_dtype_str_bytes_likefunc3_dtype1, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_empty_like, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_filled_like, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_ones_like, test/torch_np/numpy_tests/core/test_numeric.py::TestLikeFuncs::test_zeros_like, test/torch_np/numpy_tests/core/test_numeric.py::TestCorrelate::test_complex, test/torch_np/numpy_tests/core/test_numeric.py::TestCorrelate::test_float, test/torch_np/numpy_tests/core/test_numeric.py::TestCorrelate::test_mode, test/torch_np/numpy_tests/core/test_numeric.py::TestCorrelate::test_no_overwrite, test/torch_np/numpy_tests/core/test_numeric.py::TestCorrelate::test_zero_size, test/torch_np/numpy_tests/core/test_numeric.py::TestConvolve::test_mode, test/torch_np/numpy_tests/core/test_numeric.py::TestConvolve::test_no_overwrite, test/torch_np/numpy_tests/core/test_numeric.py::TestConvolve::test_numpy_doc_examples, test/torch_np/numpy_tests/core/test_numeric.py::TestConvolve::test_object, test/torch_np/numpy_tests/core/test_numeric.py::TestDtypePositional::test_dtype_positional, test/torch_np/numpy_tests/core/test_numeric.py::TestArgwhere::test_2D, test/torch_np/numpy_tests/core/test_numeric.py::TestArgwhere::test_list, test/torch_np/numpy_tests/core/test_numeric.py::TestArgwhere::test_nd_nd_0, test/torch_np/numpy_tests/core/test_numeric.py::TestArgwhere::test_nd_nd_1, test/torch_np/numpy_tests/core/test_numeric.py::TestArgwhere::test_nd_nd_2, test/torch_np/numpy_tests/core/test_numeric.py::TestStringFunction::test_set_string_function, test/torch_np/numpy_tests/core/test_numeric.py::TestRoll::test_roll1d, test/torch_np/numpy_tests/core/test_numeric.py::TestRoll::test_roll2d, test/torch_np/numpy_tests/core/test_numeric.py::TestRoll::test_roll_empty, test/torch_np/numpy_tests/core/test_numeric.py::TestRollaxis::test_exceptions, test/torch_np/numpy_tests/core/test_numeric.py::TestRollaxis::test_results, test/torch_np/numpy_tests/core/test_numeric.py::TestMoveaxis::test_errors, test/torch_np/numpy_tests/core/test_numeric.py::TestMoveaxis::test_move_multiples, test/torch_np/numpy_tests/core/test_numeric.py::TestMoveaxis::test_move_new_position, test/torch_np/numpy_tests/core/test_numeric.py::TestMoveaxis::test_move_to_end, test/torch_np/numpy_tests/core/test_numeric.py::TestMoveaxis::test_preserve_order, test/torch_np/numpy_tests/core/test_numeric.py::TestCross::test_2x2, test/torch_np/numpy_tests/core/test_numeric.py::TestCross::test_2x3, test/torch_np/numpy_tests/core/test_numeric.py::TestCross::test_3x3, test/torch_np/numpy_tests/core/test_numeric.py::TestCross::test_broadcasting, test/torch_np/numpy_tests/core/test_numeric.py::TestCross::test_broadcasting_shapes, test/torch_np/numpy_tests/core/test_numeric.py::TestCross::test_uint8_int32_mixed_dtypes, test/torch_np/numpy_tests/core/test_numeric.py::TestOuterMisc::test_outer_out_param, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype0_dims0, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype0_dims1, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype0_dims2, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype1_dims0, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype1_dims1, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype1_dims2, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype2_dims0, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype2_dims1, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype2_dims2, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype3_dims0, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype3_dims1, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_return_type_dtype3_dims2, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_scalar_input, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_simple, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_single_input, test/torch_np/numpy_tests/core/test_numeric.py::TestIndices::test_sparse, test/torch_np/numpy_tests/core/test_numeric.py::TestRequire::test_C_and_F_simul, test/torch_np/numpy_tests/core/test_numeric.py::TestRequire::test_non_array_input, test/torch_np/numpy_tests/core/test_numeric.py::TestRequire::test_require_each, test/torch_np/numpy_tests/core/test_numeric.py::TestRequire::test_unknown_requirement, test/torch_np/numpy_tests/core/test_numeric.py::TestBroadcast::test_broadcast_error_kwargs, test/torch_np/numpy_tests/core/test_numeric.py::TestBroadcast::test_broadcast_in_args, test/torch_np/numpy_tests/core/test_numeric.py::TestBroadcast::test_broadcast_single_arg, test/torch_np/numpy_tests/core/test_numeric.py::TestBroadcast::test_number_of_arguments, test/torch_np/numpy_tests/core/test_numeric.py::TestBroadcast::test_shape_mismatch_error_message, test/torch_np/numpy_tests/core/test_numeric.py::TestTensordot::test_zero_dimension, test/torch_np/numpy_tests/core/test_numeric.py::TestTensordot::test_zero_dimension_einsum, test/torch_np/numpy_tests/core/test_numeric.py::TestTensordot::test_zero_dimensional 2025-06-01T22:51:45.6825429Z 2025-06-01T22:51:51.1296283Z Running test_numba_integration 1/1 ... [2025-06-01 22:51:51.129086] 2025-06-01T22:51:51.1296746Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:51:51.1303267Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_numba_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-06-01 22:51:51.129086] 2025-06-01T22:51:56.2907030Z 2025-06-01T22:51:56.2908621Z test_numba_integration 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_numba_integration_1.1_62f7990a4aa78fbe_.log 2025-06-01T22:51:56.2914813Z Running 8 items in this shard: test/test_numba_integration.py::TestNumbaIntegration::test_active_device, test/test_numba_integration.py::TestNumbaIntegration::test_array_adaptor, test/test_numba_integration.py::TestNumbaIntegration::test_conversion_errors, test/test_numba_integration.py::TestNumbaIntegration::test_cuda_array_interface, test/test_numba_integration.py::TestNumbaIntegration::test_from_cuda_array_interface, test/test_numba_integration.py::TestNumbaIntegration::test_from_cuda_array_interface_active_device, test/test_numba_integration.py::TestNumbaIntegration::test_from_cuda_array_interface_inferred_strides, test/test_numba_integration.py::TestNumbaIntegration::test_from_cuda_array_interface_lifetime 2025-06-01T22:51:56.2920111Z 2025-06-01T22:52:01.7614532Z Running profiler/test_record_function 1/1 ... [2025-06-01 22:52:01.758333] 2025-06-01T22:52:01.7615065Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:52:01.7621398Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_record_function.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:52:01.758333] 2025-06-01T22:52:06.6655265Z 2025-06-01T22:52:06.6656477Z profiler/test_record_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_record_function_1.1_72fc5aa9d98d07d8_.log 2025-06-01T22:52:06.6658840Z Running 4 items in this shard: test/profiler/test_record_function.py::TestRecordFunction::test_datapipe_delegation_with_profiler, test/profiler/test_record_function.py::TestRecordFunction::test_datapipe_with_record_function, test/profiler/test_record_function.py::TestRecordFunction::test_datapipe_with_record_function_fork, test/profiler/test_record_function.py::TestRecordFunction::test_record_function 2025-06-01T22:52:06.6660505Z 2025-06-01T22:52:11.7772631Z Running nn/test_lazy_modules 1/1 ... [2025-06-01 22:52:11.770480] 2025-06-01T22:52:11.7773143Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:52:11.7779064Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_lazy_modules.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:52:11.770480] 2025-06-01T22:52:17.6969546Z 2025-06-01T22:52:17.6971087Z nn/test_lazy_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_lazy_modules_1.1_761c95ac45d14582_.log 2025-06-01T22:52:17.7006763Z Running 59 items in this shard: test/nn/test_lazy_modules.py::TestLazyModules::test_chained_initialization, test/nn/test_lazy_modules.py::TestLazyModules::test_invalid_functions, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm_with_dict_input, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transposed1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_forward_hook, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_linear_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_linear_state_and_forward, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_jit_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_jit_param, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_parameter, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_pre_forward_hook, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_share_memory_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_share_memory_param, test/nn/test_lazy_modules.py::TestLazyModules::test_linear, test/nn/test_lazy_modules.py::TestLazyModules::test_linear_state, test/nn/test_lazy_modules.py::TestLazyModules::test_materialize_device, test/nn/test_lazy_modules.py::TestLazyModules::test_materialize_dtype, test/nn/test_lazy_modules.py::TestLazyModules::test_optimizer_pass, test/nn/test_lazy_modules.py::TestLazyModules::test_spectral_norm, test/nn/test_lazy_modules.py::TestLazyModules::test_weight_norm 2025-06-01T22:52:17.7042606Z 2025-06-01T22:52:22.9412883Z Running test_type_hints 1/1 ... [2025-06-01 22:52:22.939683] 2025-06-01T22:52:22.9413368Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:52:22.9419659Z 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-06-01 22:52:22.939683] 2025-06-01T22:52:28.0063925Z 2025-06-01T22:52:28.0065536Z test_type_hints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_hints_1.1_82c649a9cfcc432b_.log 2025-06-01T22:52:28.0067109Z Running 1 items in this shard: test/test_type_hints.py::TestTypeHints::test_doc_examples 2025-06-01T22:52:28.0067789Z 2025-06-01T22:52:33.4113978Z Running test_jiterator 1/1 ... [2025-06-01 22:52:33.409158] 2025-06-01T22:52:33.4114464Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:52:33.4120868Z 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-06-01 22:52:33.409158] 2025-06-01T22:52:39.4788911Z 2025-06-01T22:52:39.4790544Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_2d8de3aa6c526e81_.log 2025-06-01T22:52:39.4791807Z Running 0 items in this shard: 2025-06-01T22:52:39.4792160Z 2025-06-01T22:52:45.2575803Z Running test_matmul_cuda 1/1 ... [2025-06-01 22:52:45.243701] 2025-06-01T22:52:45.2576604Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:52:45.2583532Z 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-06-01 22:52:45.243701] 2025-06-01T22:52:51.1048353Z 2025-06-01T22:52:51.1050245Z test_matmul_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_matmul_cuda_1.1_83dc21fd2f6ea6d7_.log 2025-06-01T22:52:51.1051124Z Running 0 items in this shard: 2025-06-01T22:52:51.1051339Z 2025-06-01T22:52:56.7482420Z Running nn/test_parametrization 1/1 ... [2025-06-01 22:52:56.747749] 2025-06-01T22:52:56.7484372Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:52:56.7494400Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_parametrization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:52:56.748931] 2025-06-01T22:53:03.9734817Z 2025-06-01T22:53:03.9736223Z nn/test_parametrization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_parametrization_1.1_4ccc2a91186a324b_.log 2025-06-01T22:53:03.9785458Z Running 58 items in this shard: test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_with_transfer_parametrizations_and_params_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_caching_parametrization_with_transfer_parametrizations_and_params_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_deepcopy_after_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_deepcopy_after_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_errors_parametrized_tensor_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_errors_parametrized_tensor_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_errors_unparametrized_tensor_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_errors_unparametrized_tensor_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_initialization_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_initialization_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_multiple_inputs_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_multiple_inputs_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_dim_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_dim_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_forward_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_forward_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_load_state_dict_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_load_state_dict_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_value_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_new_spectral_norm_value_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_errors_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_errors_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_orthogonal_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_parametrization_same_training_mode_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_parametrization_same_training_mode_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_buffer_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_buffer_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_nested_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_nested_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_register_and_remove_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_register_parametrization_no_grad, test/nn/test_parametrization.py::TestNNParametrization::test_serialization_parametrization_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_serialization_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_many_to_one_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_many_to_one_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_right_inverse_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_right_inverse_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_single_param_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_single_param_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_transfer_parametrizations_and_params_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_type_before_parametrizations_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_type_before_parametrizations_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_deepcopy_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_deepcopy_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_pickle_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_pickle_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_state_dict_compat_swap_False, test/nn/test_parametrization.py::TestNNParametrization::test_weight_norm_state_dict_compat_swap_True, test/nn/test_parametrization.py::TestNNParametrization::test_wrapper_subclass_parametrization_swap_True, test/nn/test_parametrization.py::TestNNParametrizationDeviceCPU::test_weight_norm_parametrization_swap_False_cpu, test/nn/test_parametrization.py::TestNNParametrizationDeviceCPU::test_weight_norm_parametrization_swap_True_cpu 2025-06-01T22:53:03.9832571Z 2025-06-01T22:53:09.7700775Z Running test_datapipe 1/1 ... [2025-06-01 22:53:09.769772] 2025-06-01T22:53:09.7701218Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:53:09.7710411Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_datapipe.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:53:09.770868] 2025-06-01T22:53:29.8242671Z 2025-06-01T22:53:29.8243797Z test_datapipe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_datapipe_1.1_1c33728daed2e4ff_.log 2025-06-01T22:53:29.8276325Z Running 94 items in this shard: test/test_datapipe.py::TestDataChunk::test_as_string, test/test_datapipe.py::TestDataChunk::test_getitem, test/test_datapipe.py::TestDataChunk::test_iter, test/test_datapipe.py::TestDataChunk::test_len, test/test_datapipe.py::TestDataChunk::test_random_shuffle, test/test_datapipe.py::TestDataChunk::test_reverse, test/test_datapipe.py::TestDataChunk::test_sort, test/test_datapipe.py::TestStreamWrapper::test_api, test/test_datapipe.py::TestStreamWrapper::test_dir, test/test_datapipe.py::TestStreamWrapper::test_pickle, test/test_datapipe.py::TestStreamWrapper::test_repr, test/test_datapipe.py::TestIterableDataPipeBasic::test_demux_mux_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_groupby_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_listdirfiles_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_listdirfilesdeterministic_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_map_with_col_file_handle_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_openfilesfromdisk_iterable_datapipe, test/test_datapipe.py::TestIterableDataPipeBasic::test_routeddecoder_iterable_datapipe, test/test_datapipe.py::TestCaptureDataFrame::test_basic_capture, test/test_datapipe.py::TestDataFramesPipes::test_batch, test/test_datapipe.py::TestDataFramesPipes::test_capture, test/test_datapipe.py::TestDataFramesPipes::test_collate, test/test_datapipe.py::TestDataFramesPipes::test_filter, test/test_datapipe.py::TestDataFramesPipes::test_shuffle, test/test_datapipe.py::TestDataFramesPipes::test_unbatch, test/test_datapipe.py::TestFunctionalIterDataPipe::test_batch_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_collate_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_concat_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_demux_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_docstring, test/test_datapipe.py::TestFunctionalIterDataPipe::test_filter_datapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_fork_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_iterable_wrapper_datapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_dict_with_col_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_map_tuple_list_with_col_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_mux_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_sampler_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_serializable, test/test_datapipe.py::TestFunctionalIterDataPipe::test_serializable_with_dill, test/test_datapipe.py::TestFunctionalIterDataPipe::test_shuffler_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_stream_reader_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_unbatch_iterdatapipe, test/test_datapipe.py::TestFunctionalIterDataPipe::test_zip_iterdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_batch_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_concat_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_docstring, test/test_datapipe.py::TestFunctionalMapDataPipe::test_map_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_sequence_wrapper_datapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_serializable, test/test_datapipe.py::TestFunctionalMapDataPipe::test_serializable_with_dill, test/test_datapipe.py::TestFunctionalMapDataPipe::test_shuffler_mapdatapipe, test/test_datapipe.py::TestFunctionalMapDataPipe::test_zip_mapdatapipe, test/test_datapipe.py::TestTyping::test_compile_time, test/test_datapipe.py::TestTyping::test_construct_time, test/test_datapipe.py::TestTyping::test_isinstance, test/test_datapipe.py::TestTyping::test_issubinstance, test/test_datapipe.py::TestTyping::test_protocol, test/test_datapipe.py::TestTyping::test_reinforce, test/test_datapipe.py::TestTyping::test_runtime, test/test_datapipe.py::TestTyping::test_subtype, test/test_datapipe.py::TestGraph::test_simple_traverse, test/test_datapipe.py::TestGraph::test_traverse_circular_datapipe, test/test_datapipe.py::TestGraph::test_traverse_forked, test/test_datapipe.py::TestGraph::test_traverse_mapdatapipe, test/test_datapipe.py::TestGraph::test_traverse_mixdatapipe, test/test_datapipe.py::TestGraph::test_traverse_unhashable_datapipe, test/test_datapipe.py::TestSerialization::test_spawn_lambdas_iter, test/test_datapipe.py::TestSerialization::test_spawn_lambdas_map, test/test_datapipe.py::TestCircularSerialization::test_circular_serialization_with_dill, test/test_datapipe.py::TestCircularSerialization::test_circular_serialization_with_pickle, test/test_datapipe.py::TestSharding::test_legacy_custom_sharding, test/test_datapipe.py::TestSharding::test_legacy_custom_sharding_with_old_dataloader, test/test_datapipe.py::TestSharding::test_multi_sharding, test/test_datapipe.py::TestSharding::test_old_dataloader, test/test_datapipe.py::TestSharding::test_sharding_groups, test/test_datapipe.py::TestSharding::test_sharding_groups_in_legacy_grouping_package, test/test_datapipe.py::TestSharding::test_sharding_length, test/test_datapipe.py::TestSharding::test_simple_sharding, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_buggy, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_constraint_multiple_outputs, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_generator, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_new_object, test/test_datapipe.py::TestIterDataPipeSingletonConstraint::test_iterdatapipe_singleton_self_next, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_generator_function, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_generator_function_exception, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_next, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_next_exception, test/test_datapipe.py::TestIterDataPipeCountSampleYielded::test_iterdatapipe_sample_yielded_return_self, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_custom_non_generator, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_custom_self_next, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph_repeated, test/test_datapipe.py::TestIterDataPipeGraphFastForward::test_simple_snapshot_graph_with_serialization 2025-06-01T22:53:29.8304829Z 2025-06-01T22:53:35.2465630Z Running inductor/test_unbacked_symints 1/1 ... [2025-06-01 22:53:35.246334] 2025-06-01T22:53:35.2466442Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:53:35.2473027Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:53:35.246921] 2025-06-01T22:53:47.8131984Z 2025-06-01T22:53:47.8133602Z inductor/test_unbacked_symints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_unbacked_symints_1.1_badac83d3e588b51_.log 2025-06-01T22:53:47.8134915Z 2025-06-01T22:53:53.7496742Z Running test_maskedtensor 1/1 ... [2025-06-01 22:53:53.743645] 2025-06-01T22:53:53.7497528Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:53:53.7503772Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_maskedtensor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:53:53.743645] 2025-06-01T22:54:26.4632763Z 2025-06-01T22:54:26.4633993Z test_maskedtensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_maskedtensor_1.1_ae6c50bc5af134c6_.log 2025-06-01T22:54:26.5134876Z Running 953 items in this shard: test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn0, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn1, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn10, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn11, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn12, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn13, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn14, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn15, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn16, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn17, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn18, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn19, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn2, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn20, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn21, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn22, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn23, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn24, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn25, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn26, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn27, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn28, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn29, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn3, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn30, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn31, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn32, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn33, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn34, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn35, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn36, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn37, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn38, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn39, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn4, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn40, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn41, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn42, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn43, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn44, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn45, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn46, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn47, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn48, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn49, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn5, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn50, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn51, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn52, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn53, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn54, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn55, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn56, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn57, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn6, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn7, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn8, test/test_maskedtensor.py::TestUnary::test_inplace_unary_fn9, test/test_maskedtensor.py::TestUnary::test_unary_fn0, test/test_maskedtensor.py::TestUnary::test_unary_fn1, test/test_maskedtensor.py::TestUnary::test_unary_fn10, test/test_maskedtensor.py::TestUnary::test_unary_fn11, test/test_maskedtensor.py::TestUnary::test_unary_fn12, test/test_maskedtensor.py::TestUnary::test_unary_fn13, test/test_maskedtensor.py::TestUnary::test_unary_fn14, test/test_maskedtensor.py::TestUnary::test_unary_fn15, test/test_maskedtensor.py::TestUnary::test_unary_fn16, test/test_maskedtensor.py::TestUnary::test_unary_fn17, test/test_maskedtensor.py::TestUnary::test_unary_fn18, test/test_maskedtensor.py::TestUnary::test_unary_fn19, test/test_maskedtensor.py::TestUnary::test_unary_fn2, test/test_maskedtensor.py::TestUnary::test_unary_fn20, test/test_maskedtensor.py::TestUnary::test_unary_fn21, test/test_maskedtensor.py::TestUnary::test_unary_fn22, test/test_maskedtensor.py::TestUnary::test_unary_fn23, test/test_maskedtensor.py::TestUnary::test_unary_fn24, test/test_maskedtensor.py::TestUnary::test_unary_fn25, test/test_maskedtensor.py::TestUnary::test_unary_fn26, test/test_maskedtensor.py::TestUnary::test_unary_fn27, test/test_maskedtensor.py::TestUnary::test_unary_fn28, test/test_maskedtensor.py::TestUnary::test_unary_fn29, test/test_maskedtensor.py::TestUnary::test_unary_fn3, test/test_maskedtensor.py::TestUnary::test_unary_fn30, test/test_maskedtensor.py::TestUnary::test_unary_fn31, test/test_maskedtensor.py::TestUnary::test_unary_fn32, test/test_maskedtensor.py::TestUnary::test_unary_fn33, test/test_maskedtensor.py::TestUnary::test_unary_fn34, test/test_maskedtensor.py::TestUnary::test_unary_fn35, test/test_maskedtensor.py::TestUnary::test_unary_fn36, test/test_maskedtensor.py::TestUnary::test_unary_fn37, test/test_maskedtensor.py::TestUnary::test_unary_fn38, test/test_maskedtensor.py::TestUnary::test_unary_fn39, test/test_maskedtensor.py::TestUnary::test_unary_fn4, test/test_maskedtensor.py::TestUnary::test_unary_fn40, test/test_maskedtensor.py::TestUnary::test_unary_fn41, test/test_maskedtensor.py::TestUnary::test_unary_fn42, test/test_maskedtensor.py::TestUnary::test_unary_fn43, test/test_maskedtensor.py::TestUnary::test_unary_fn44, test/test_maskedtensor.py::TestUnary::test_unary_fn45, test/test_maskedtensor.py::TestUnary::test_unary_fn46, test/test_maskedtensor.py::TestUnary::test_unary_fn47, test/test_maskedtensor.py::TestUnary::test_unary_fn48, test/test_maskedtensor.py::TestUnary::test_unary_fn49, test/test_maskedtensor.py::TestUnary::test_unary_fn5, test/test_maskedtensor.py::TestUnary::test_unary_fn50, test/test_maskedtensor.py::TestUnary::test_unary_fn51, test/test_maskedtensor.py::TestUnary::test_unary_fn52, test/test_maskedtensor.py::TestUnary::test_unary_fn53, test/test_maskedtensor.py::TestUnary::test_unary_fn54, test/test_maskedtensor.py::TestUnary::test_unary_fn55, test/test_maskedtensor.py::TestUnary::test_unary_fn56, test/test_maskedtensor.py::TestUnary::test_unary_fn57, test/test_maskedtensor.py::TestUnary::test_unary_fn58, test/test_maskedtensor.py::TestUnary::test_unary_fn59, test/test_maskedtensor.py::TestUnary::test_unary_fn6, test/test_maskedtensor.py::TestUnary::test_unary_fn60, test/test_maskedtensor.py::TestUnary::test_unary_fn61, test/test_maskedtensor.py::TestUnary::test_unary_fn7, test/test_maskedtensor.py::TestUnary::test_unary_fn8, test/test_maskedtensor.py::TestUnary::test_unary_fn9, test/test_maskedtensor.py::TestBinary::test_binary_fn0, test/test_maskedtensor.py::TestBinary::test_binary_fn1, test/test_maskedtensor.py::TestBinary::test_binary_fn10, test/test_maskedtensor.py::TestBinary::test_binary_fn11, test/test_maskedtensor.py::TestBinary::test_binary_fn12, test/test_maskedtensor.py::TestBinary::test_binary_fn13, test/test_maskedtensor.py::TestBinary::test_binary_fn14, test/test_maskedtensor.py::TestBinary::test_binary_fn15, test/test_maskedtensor.py::TestBinary::test_binary_fn16, test/test_maskedtensor.py::TestBinary::test_binary_fn17, test/test_maskedtensor.py::TestBinary::test_binary_fn18, test/test_maskedtensor.py::TestBinary::test_binary_fn19, test/test_maskedtensor.py::TestBinary::test_binary_fn2, test/test_maskedtensor.py::TestBinary::test_binary_fn20, test/test_maskedtensor.py::TestBinary::test_binary_fn21, test/test_maskedtensor.py::TestBinary::test_binary_fn22, test/test_maskedtensor.py::TestBinary::test_binary_fn23, test/test_maskedtensor.py::TestBinary::test_binary_fn24, test/test_maskedtensor.py::TestBinary::test_binary_fn25, test/test_maskedtensor.py::TestBinary::test_binary_fn26, test/test_maskedtensor.py::TestBinary::test_binary_fn27, test/test_maskedtensor.py::TestBinary::test_binary_fn28, test/test_maskedtensor.py::TestBinary::test_binary_fn29, test/test_maskedtensor.py::TestBinary::test_binary_fn3, test/test_maskedtensor.py::TestBinary::test_binary_fn30, test/test_maskedtensor.py::TestBinary::test_binary_fn31, test/test_maskedtensor.py::TestBinary::test_binary_fn32, test/test_maskedtensor.py::TestBinary::test_binary_fn33, test/test_maskedtensor.py::TestBinary::test_binary_fn34, test/test_maskedtensor.py::TestBinary::test_binary_fn35, test/test_maskedtensor.py::TestBinary::test_binary_fn4, test/test_maskedtensor.py::TestBinary::test_binary_fn5, test/test_maskedtensor.py::TestBinary::test_binary_fn6, test/test_maskedtensor.py::TestBinary::test_binary_fn7, test/test_maskedtensor.py::TestBinary::test_binary_fn8, test/test_maskedtensor.py::TestBinary::test_binary_fn9, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn0, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn1, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn10, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn11, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn12, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn13, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn14, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn15, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn16, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn17, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn18, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn19, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn2, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn20, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn21, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn22, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn23, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn24, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn25, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn26, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn27, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn28, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn29, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn3, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn4, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn5, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn6, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn7, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn8, test/test_maskedtensor.py::TestBinary::test_inplace_binary_fn9, test/test_maskedtensor.py::TestBinary::test_masks_match_fn_name_add, test/test_maskedtensor.py::TestBinary::test_masks_match_fn_name_add_, test/test_maskedtensor.py::TestReductions::test__is_any_true, test/test_maskedtensor.py::TestReductions::test__is_any_true_false, test/test_maskedtensor.py::TestReductions::test_all, test/test_maskedtensor.py::TestReductions::test_amax, test/test_maskedtensor.py::TestReductions::test_amax_grad, test/test_maskedtensor.py::TestReductions::test_amin, test/test_maskedtensor.py::TestReductions::test_amin_grad, test/test_maskedtensor.py::TestReductions::test_any_true_dtype, test/test_maskedtensor.py::TestReductions::test_backward, test/test_maskedtensor.py::TestReductions::test_grad_dtype, test/test_maskedtensor.py::TestReductions::test_max_not_implemented, test/test_maskedtensor.py::TestReductions::test_mean, test/test_maskedtensor.py::TestReductions::test_mean_dim_grad, test/test_maskedtensor.py::TestReductions::test_mean_grad_case_1a, test/test_maskedtensor.py::TestReductions::test_mean_grad_case_1b, test/test_maskedtensor.py::TestReductions::test_mean_grad_case_1c, test/test_maskedtensor.py::TestReductions::test_mean_grad_case_1d, test/test_maskedtensor.py::TestReductions::test_mean_grad_case_1e, test/test_maskedtensor.py::TestReductions::test_mean_grad_case_1f, test/test_maskedtensor.py::TestReductions::test_prod, test/test_maskedtensor.py::TestReductions::test_prod_grad, test/test_maskedtensor.py::TestReductions::test_sum, test/test_maskedtensor.py::TestReductions::test_sum_grad, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_add_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_atan2_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_floor_rounding_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_no_rounding_mode_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_div_trunc_rounding_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_eq_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_floor_divide_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmax_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmin_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_fmod_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ge_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_gt_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_le_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_logaddexp_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_lt_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_maximum_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_minimum_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_mul_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_ne_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_nextafter_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_remainder_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_sub_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_binary_core_true_divide_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amax_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_amin_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmax_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_argmin_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_prod_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_reduction_all_sum_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_abs_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acos_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_acosh_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_angle_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asin_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_asinh_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atan_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_atanh_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_ceil_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_conj_physical_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cos_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_cosh_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_deg2rad_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_digamma_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erf_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfc_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_erfinv_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp2_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_exp_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_expm1_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_floor_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_frac_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_i0_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_isnan_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_lgamma_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log10_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log1p_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log2_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_log_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_logit_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_nan_to_num_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_neg_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_positive_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rad2deg_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_reciprocal_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_0_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_3_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_3_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_3_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_3_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_3_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_3_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_neg_3_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_neg_3_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_neg_3_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_neg_3_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_neg_3_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_decimals_neg_3_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_round_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_rsqrt_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sgn_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sigmoid_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sign_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_signbit_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sin_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinc_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sinh_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_sqrt_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_square_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tan_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_tanh_layout2_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout0_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout0_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout0_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout1_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout1_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout1_cpu_float64, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout2_cpu_float16, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout2_cpu_float32, test/test_maskedtensor.py::TestOperatorsCPU::test_unary_core_trunc_layout2_cpu_float64, test/test_maskedtensor.py::TestBasicsCPU::test_add_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_contiguous_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_diff_dim_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_diff_layouts_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_diff_sizes_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_grad_warning_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_invalid_sparse_coo_values_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_invalid_sparse_csr_values_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_invalid_sparse_layout_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_invalid_tensor_inputs_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_nn_unfold_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_softmax_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_stack_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_to_dense_and_sparse_coo_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_to_dense_and_sparse_csr_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_to_dense_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_to_sparse_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_unfold_cpu, test/test_maskedtensor.py::TestBasicsCPU::test_where_cpu 2025-06-01T22:54:26.5585643Z 2025-06-01T22:54:32.8488522Z Running test_monitor 1/1 ... [2025-06-01 22:54:32.847593] 2025-06-01T22:54:32.8494862Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:54:32.8495957Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_monitor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:54:32.847593] 2025-06-01T22:54:38.8464929Z 2025-06-01T22:54:38.8466333Z test_monitor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_monitor_1.1_16d40b31c2048349_.log 2025-06-01T22:54:38.8470024Z Running 6 items in this shard: test/test_monitor.py::TestMonitor::test_event_handler, test/test_monitor.py::TestMonitor::test_fixed_count_stat, test/test_monitor.py::TestMonitor::test_interval_stat, test/test_monitor.py::TestMonitor::test_log_event, test/test_monitor.py::TestMonitor::test_wait_counter, test/test_monitor.py::TestMonitorTensorboard::test_event_handler 2025-06-01T22:54:38.8473507Z 2025-06-01T22:54:44.6559289Z Running inductor/test_efficient_conv_bn_eval 1/1 ... [2025-06-01 22:54:44.655642] 2025-06-01T22:54:44.6559839Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:54:44.6569934Z 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-06-01 22:54:44.656236] 2025-06-01T22:54:55.8788663Z 2025-06-01T22:54:55.8790120Z 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_96e1884b75e5d6fd_.log 2025-06-01T22:54:55.8790903Z 2025-06-01T22:55:01.2886602Z Running test_decomp 1/15 ... [2025-06-01 22:55:01.287984] 2025-06-01T22:55:01.2887079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:55:01.2893208Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:55:01.287984] 2025-06-01T22:56:12.1237549Z 2025-06-01T22:56:12.1239008Z test_ops_jit 2/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_2.3_be5c33391e147928_.log 2025-06-01T22:56:12.1471528Z Running 357 items in this shard: test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_acos_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_digamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_div_trunc_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erfc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erfinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_exp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_ge_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_gt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_igamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_le_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_lgamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_det_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_inv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_lt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mH_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv_transpose3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_group_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_outer_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_sinc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_H_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___getitem___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___radd___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rdiv___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmod___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__chunk_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__native_batch_norm_legit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__softmax_backward_data_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__upsample_bilinear2d_aa_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acosh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addbmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcdiv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_all_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_angle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_any_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_partial_views_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atan_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_1d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_2d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bool_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_shapes_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cartesian_prod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdouble_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chalf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_char_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_inverse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clone_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_column_stack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_constant_pad_nd_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_constant_pad_nd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_contiguous_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_copysign_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cov_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumsum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagflat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_double_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_einsum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_permuted_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_strided_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eq_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_equal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erfc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftshift_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_rfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flipud_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_power_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_floor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gather_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ge_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geometric_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geqrf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gradient_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_half_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_half_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_histogramdd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_imag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_inner_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_int_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isclose_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isclose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isnan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isneginf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isposinf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_istft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_item_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_item_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_unary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kron_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kron_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cond_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_diagonal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eig_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvalsh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_householder_product_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_power_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_qr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_slogdet_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_slogdet_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_triangular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svdvals_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vander_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vander_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vector_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_tensor_overload_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log1p_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_normal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logcumsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_and_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_not_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_long_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mT_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_argmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_normalize_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_select_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_std_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_var_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_reduction_no_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_median_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_list_of_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_min_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_minimum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nanmean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_dropout_backward_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_layer_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_zeros_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_alpha_dropout_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_avg_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_channel_shuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_ctc_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_elu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_embedding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_instance_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_linear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_nearest_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_l1_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_mish_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multi_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_circular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_reflect_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pdist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_relu6_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rms_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rms_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_selu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_soft_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softsign_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_tanhshrink_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_tanhshrink_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_static_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_static_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_fro_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_inf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_inf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_in_place_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_in_place_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pinverse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polar_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_4_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pow_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_put_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_qr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rad2deg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ravel_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_renorm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rot90_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_neg_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsqrt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_short_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_short_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_bartlett_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_blackman_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_cosine_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_gaussian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_hamming_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_nuttall_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_with_dtype_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sort_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_y0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_y1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_v_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_entr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_erfcx_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_hermite_polynomial_h_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_i1e_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_ndtr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_ndtri_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_list_args_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_square_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_square_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_multiple_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_to_size_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_along_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tile_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_sparse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_sparse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_topk_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trace_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapezoid_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_true_divide_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unflatten_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unflatten_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_uniform_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_split_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zero__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_cpu_float32 2025-06-01T22:56:12.1693382Z 2025-06-01T22:56:18.2584001Z Running test_decomp 5/15 ... [2025-06-01 22:56:18.258140] 2025-06-01T22:56:18.2584487Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:56:18.2602326Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=5', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:56:18.260012] 2025-06-01T22:59:02.4703560Z 2025-06-01T22:59:02.4704467Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_498e0ef3d9eab0ff_.log 2025-06-01T22:59:02.5726653Z Running 2656 items in this shard: test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cond_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_quant_packed_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_quant_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_subgraph_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_map_triple_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_while_loop_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cond_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_while_loop_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_like_cpu_float64 2025-06-01T22:59:02.6693914Z 2025-06-01T22:59:07.3045445Z Running test_decomp 8/15 ... [2025-06-01 22:59:07.302473] 2025-06-01T22:59:07.3046086Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T22:59:07.3052140Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=8', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 22:59:07.302473] 2025-06-01T23:04:33.8918806Z 2025-06-01T23:04:33.8920329Z test_decomp 5/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_5.15_5074a2ada852cec5_.log 2025-06-01T23:04:33.9112164Z Running 588 items in this shard: test/test_decomp.py::TestDecompCPU::test_batch_norm_unflatten_weight_bias_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_int8, 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_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_float16, 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_as_strided_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e5m2, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_frexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_grad_oriented_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_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_transpose3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardsigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardsigmoid_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_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_kl_div_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_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_max_unpool3d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_bfloat16, 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_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_float32, 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_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_prelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_complex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_float64, 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_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_float32, 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_resize__cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int32, 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_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_int32, 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_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__batch_norm_with_update_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_int8, 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_int8, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_bfloat16, 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_nan_to_num_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_sinc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_special_log_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_split_with_sizes_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_hypot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_float64, 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_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_neg_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex128, test/test_decomp.py::HasDecompTest::test_aten_core_operators, test/test_decomp.py::HasDecompTest::test_has_decomposition 2025-06-01T23:04:33.9285157Z 2025-06-01T23:04:38.6853511Z Running test_decomp 10/15 ... [2025-06-01 23:04:38.682930] 2025-06-01T23:04:38.6853983Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:04:38.6860698Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=10', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:04:38.682930] 2025-06-01T23:05:58.3519038Z 2025-06-01T23:05:58.3520211Z test_decomp 1/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.15_690d83f4d97754b3_.log 2025-06-01T23:05:58.3710272Z Running 616 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_uint8, 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_full_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvalsh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_float32, 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_lu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_unpack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanquantile_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanquantile_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_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_cross_entropy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_with_train_cpu_float16, 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_gaussian_nll_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_kl_div_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_float16, 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_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_margin_loss_cpu_float64, 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_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_cpu_float16, 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_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_quantile_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_int16, 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_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_blackman_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_cosine_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_nuttall_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_nuttall_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch__scaled_mm_cpu_float8_e4m3fn, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_native_dropout_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int32, 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_cumsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_float32, 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_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_huber_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_prelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_silu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_neg_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_uint8, 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_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_eval_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_train_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_uniform_cpu, test/test_decomp.py::DecompOneOffTestsCPU::test_native_layer_norm_cpu_decomp_cpu, test/test_decomp.py::DecompOneOffTestsCPU::test_sdpa_nn_functional_scaled_dot_product_attention_cpu_bfloat16 2025-06-01T23:05:58.3892465Z 2025-06-01T23:06:03.2029553Z Running test_decomp 14/15 ... [2025-06-01 23:06:03.202564] 2025-06-01T23:06:03.2030167Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:06:03.2036948Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=14', '--num-shards=15', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:06:03.203173] 2025-06-01T23:08:52.7349608Z 2025-06-01T23:08:52.7350662Z test_decomp 8/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_8.15_2a8afa30618cb5d8_.log 2025-06-01T23:08:52.7544943Z Running 611 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_offsets_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_complex64, 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_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int64, 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_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int16, 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_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_float32, 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_irfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_istft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_float64, 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_log2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_normal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_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_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_float32, 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_nextafter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, 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_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float64, 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_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_bfloat16, 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_without_train_cpu_int8, 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_hardtanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_linear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_linear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pinverse_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_pinverse_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_quantile_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_complex64, 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_ravel_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_bfloat16, 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_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_hamming_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_float64, 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_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_bool, 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_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int8, 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_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_bfloat16, 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_float16, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_complex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_renorm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_split_list_args_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e5m2, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex64, 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_elu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_train_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_amp_batch_norm_backward_cpu 2025-06-01T23:08:52.7722142Z 2025-06-01T23:08:57.5334386Z Running dynamo/test_profiler 1/1 ... [2025-06-01 23:08:57.533240] 2025-06-01T23:08:57.5334882Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:08:57.5341129Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_profiler.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:08:57.533240] 2025-06-01T23:09:02.3409599Z 2025-06-01T23:09:02.3411244Z dynamo/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_profiler_1.1_2f60e18e796c77be_.log 2025-06-01T23:09:02.3412382Z 2025-06-01T23:09:08.3567703Z Running optim/test_optim 1/1 ... [2025-06-01 23:09:08.353569] 2025-06-01T23:09:08.3568526Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:09:08.3575246Z 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-06-01 23:09:08.353569] 2025-06-01T23:09:13.5728015Z 2025-06-01T23:09:13.5729363Z optim/test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_optim_1.1_f116e2bad41d4cad_.log 2025-06-01T23:09:13.5730466Z 2025-06-01T23:09:19.4560226Z Running dynamo/test_debug_utils 1/1 ... [2025-06-01 23:09:19.455720] 2025-06-01T23:09:19.4561008Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:09:19.4567653Z 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-06-01 23:09:19.456295] 2025-06-01T23:09:31.8970842Z 2025-06-01T23:09:31.8972161Z 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_f13dad2aee230363_.log 2025-06-01T23:09:31.8973412Z 2025-06-01T23:09:37.3689793Z Running dynamo/test_base_hop 1/1 ... [2025-06-01 23:09:37.367256] 2025-06-01T23:09:37.3690255Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:09:37.3696749Z 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-06-01 23:09:37.367256] 2025-06-01T23:09:48.0985109Z 2025-06-01T23:09:48.0986450Z 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_2a4dc8abe338fc33_.log 2025-06-01T23:09:48.0987110Z 2025-06-01T23:09:53.3077174Z Running test_cuda_sanitizer 1/1 ... [2025-06-01 23:09:53.307281] 2025-06-01T23:09:53.3083818Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:09:53.3085064Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_sanitizer.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:09:53.307872] 2025-06-01T23:09:58.3580986Z 2025-06-01T23:09:58.3582404Z test_cuda_sanitizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_sanitizer_1.1_92b8b3618e22d6ca_.log 2025-06-01T23:09:58.3583657Z Running 0 items in this shard: 2025-06-01T23:09:58.3583989Z 2025-06-01T23:10:03.5291310Z Running dynamo/test_trace_rules 1/1 ... [2025-06-01 23:10:03.528948] 2025-06-01T23:10:03.5291822Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:10:03.5298479Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_trace_rules.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:10:03.529561] 2025-06-01T23:10:08.0530385Z 2025-06-01T23:10:08.0531407Z dynamo/test_trace_rules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_trace_rules_1.1_f1ab15f0e53dafec_.log 2025-06-01T23:10:08.0532104Z 2025-06-01T23:10:12.8957687Z Running dynamo/test_unspec 1/1 ... [2025-06-01 23:10:12.895246] 2025-06-01T23:10:12.8958522Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:10:12.8968618Z 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-06-01 23:10:12.896412] 2025-06-01T23:10:17.9517056Z 2025-06-01T23:10:17.9518272Z dynamo/test_unspec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unspec_1.1_607b8e151751d41d_.log 2025-06-01T23:10:17.9518950Z 2025-06-01T23:10:22.7290396Z Running optim/test_swa_utils 1/1 ... [2025-06-01 23:10:22.728763] 2025-06-01T23:10:22.7290878Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:10:22.7298017Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'optim/test_swa_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:10:22.728763] 2025-06-01T23:10:27.2344194Z 2025-06-01T23:10:27.2345295Z optim/test_swa_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/optim.test_swa_utils_1.1_1d9926cd84f9c3a6_.log 2025-06-01T23:10:27.2346024Z 2025-06-01T23:10:31.9184143Z Running dynamo/test_torchrec 1/1 ... [2025-06-01 23:10:31.917737] 2025-06-01T23:10:31.9184667Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:10:31.9191750Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_torchrec.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:10:31.918892] 2025-06-01T23:10:36.7158497Z 2025-06-01T23:10:36.7159458Z dynamo/test_torchrec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_torchrec_1.1_d9cf61778fbcb5e7_.log 2025-06-01T23:10:36.7160269Z 2025-06-01T23:10:41.5331596Z Running dynamo/test_bytecode_utils 1/1 ... [2025-06-01 23:10:41.526016] 2025-06-01T23:10:41.5332132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:10:41.5338336Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_bytecode_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:10:41.526016] 2025-06-01T23:10:46.1887747Z 2025-06-01T23:10:46.1891203Z dynamo/test_bytecode_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_bytecode_utils_1.1_aad53498c1d8ec8b_.log 2025-06-01T23:10:46.1891958Z 2025-06-01T23:10:51.6990223Z Running dynamo/test_exc 1/1 ... [2025-06-01 23:10:51.698448] 2025-06-01T23:10:51.6991042Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:10:51.6998510Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exc.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:10:51.699551] 2025-06-01T23:10:57.0455075Z 2025-06-01T23:10:57.0455987Z dynamo/test_exc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exc_1.1_55919181640a33a9_.log 2025-06-01T23:10:57.0456808Z 2025-06-01T23:11:01.7314476Z Running torch_np/numpy_tests/core/test_shape_base 1/1 ... [2025-06-01 23:11:01.728473] 2025-06-01T23:11:01.7315167Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:11:01.7324119Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_shape_base.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:11:01.731578] 2025-06-01T23:11:07.4310489Z 2025-06-01T23:11:07.4311739Z torch_np/numpy_tests/core/test_shape_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_shape_base_1.1_3429e341baaec292_.log 2025-06-01T23:11:07.4360342Z Running 119 items in this shard: test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_r1array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_r2array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_casting_and_dtype, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_casting_and_dtype_type_error, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_empty_input, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_generator, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_non_iterable, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_2D_array2, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_casting_and_dtype, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_casting_and_dtype_type_error, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_empty_input, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_generator, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_non_iterable, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_bad_out_shape, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_concatenate, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_concatenate_axis_None, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_exceptions, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_large_concatenate_axis_None, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_operator_concat, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_simple, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_returns_copy, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_3d, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_complicated, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_memory_order, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_mixed_1d_and_2d, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_simple_column_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_simple_row_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_total_size_estimate, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_column_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_multiple_rows, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_row_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_mismatched_shape, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_different_ndims, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_different_ndims_depths, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_empty_lists, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_invalid_nesting, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_nested, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_no_lists, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_returns_copy, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_tuple 2025-06-01T23:11:07.4406858Z 2025-06-01T23:11:12.3384958Z Running test_functional_optim 1/1 ... [2025-06-01 23:11:12.337464] 2025-06-01T23:11:12.3385398Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:11:12.3393915Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functional_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-06-01 23:11:12.339093] 2025-06-01T23:11:17.9391236Z 2025-06-01T23:11:17.9392222Z test_functional_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functional_optim_1.1_7a56c5ede36ce613_.log 2025-06-01T23:11:17.9395916Z Running 4 items in this shard: test/test_functional_optim.py::TestFunctionalOptimParity::test_functional_optim_parity_adam, test/test_functional_optim.py::TestFunctionalOptimParity::test_functional_optim_parity_adam_w, test/test_functional_optim.py::TestFunctionalOptimParity::test_functional_optim_parity_sgd, test/test_functional_optim.py::TestFunctionalOptimParity::test_functional_optim_registration 2025-06-01T23:11:17.9397622Z 2025-06-01T23:11:22.8201786Z Running torch_np/numpy_tests/lib/test_twodim_base 1/1 ... [2025-06-01 23:11:22.819475] 2025-06-01T23:11:22.8202323Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:11:22.8208164Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_twodim_base.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:11:22.820621] 2025-06-01T23:11:28.1456006Z 2025-06-01T23:11:28.1457167Z torch_np/numpy_tests/lib/test_twodim_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_twodim_base_1.1_a73715f9df828399_.log 2025-06-01T23:11:28.1468332Z Running 34 items in this shard: test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_2d, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_bool, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_diag, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_diag2d, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_eye_bounds, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestEye::test_order, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_diag_bounds, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_failure, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_fortran_order, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_matrix, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestDiag::test_vector, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestFliplr::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestFlipud::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_all_outliers, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_asym, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_bad_length_x_len_10_y_len_11, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_bad_length_x_len_20_y_len_19, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_binparameter_combination, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_density, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_empty, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestHistogram2d::test_simple, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_dtype, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_mask_indices, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_indices, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_dtype, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_ndim2, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_ndim3, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTri::test_tril_triu_with_inf, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTriuIndices::test_triu_indices, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTrilIndicesFrom::test_exceptions, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestTriuIndicesFrom::test_exceptions, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestVander::test_basic, test/torch_np/numpy_tests/lib/test_twodim_base.py::TestVander::test_dtypes 2025-06-01T23:11:28.1479647Z 2025-06-01T23:11:33.0545732Z Running test_schema_check 1/1 ... [2025-06-01 23:11:33.054299] 2025-06-01T23:11:33.0546161Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:11:33.0552857Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_schema_check.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:11:33.054883] 2025-06-01T23:13:48.3468397Z 2025-06-01T23:13:48.3486308Z test_decomp 14/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_14.15_53f81a1694b14be5_.log 2025-06-01T23:13:48.3717467Z Running 587 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_offsets_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogramdd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_complex32, 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_put_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int64, 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_index_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_complex64, 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_linspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logaddexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_bfloat16, 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_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int64, 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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardswish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_float64, 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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_bfloat16, 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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pdist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_bool, 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_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_int16, 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_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int64, 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_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_stft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_bfloat16, 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_tile_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_real_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_deg2rad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logaddexp2_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_roll_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int16, 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_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_polar_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int32, 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_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int8, 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_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_uint8 2025-06-01T23:13:48.3889646Z 2025-06-01T23:13:53.6857710Z Running torch_np/numpy_tests/lib/test_arraysetops 1/1 ... [2025-06-01 23:13:53.685163] 2025-06-01T23:13:53.6858336Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:13:53.6865598Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_arraysetops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:13:53.686349] 2025-06-01T23:13:59.7408589Z 2025-06-01T23:13:59.7409621Z torch_np/numpy_tests/lib/test_arraysetops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_arraysetops_1.1_01eb3ae9befcedcd_.log 2025-06-01T23:13:59.7434988Z Running 62 items in this shard: test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_forbidden_type_casts_ary0_prepend0_append_nan_expected_to_end, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_forbidden_type_casts_ary1_prepend1_append1_expected_to_begin, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_forbidden_type_casts_ary2_prepend_nan_append_nan_expected_to_begin, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary0_prepend_65536_append_65540_expected0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary1_prepend1_append1_expected1, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary2_prepend_0_append_0_expected2, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_ediff1d_scalar_handling_ary3_prepend_3_append_-9_expected3, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_boolean_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_boolean_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_boolean_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_both_arrays_are_object, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_both_arrays_have_structured_dtype, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_char_array, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_errors, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_first_array_is_object, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_hit_alternate_algorithm, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_invert_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_invert_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_invert_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_boolean_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_boolean_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_boolean_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype10_dtype20_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype10_dtype20_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype10_dtype20_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype11_dtype21_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype11_dtype21_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_mixed_dtype_dtype11_dtype21_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_ravel_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_ravel_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_ravel_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_second_array_is_object, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_table_timedelta_fails, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_timedelta_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_timedelta_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_in1d_with_arrays_containing_tuples, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_intersect1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_intersect1d_array_like, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_intersect1d_indices, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_isin_kind0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_isin_kind_sort, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_isin_kind_table, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_manyways, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setdiff1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setdiff1d_char_array, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setdiff1d_unique, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_setxor1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestSetOps::test_union1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d_2, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d_with_axis_axis_-1, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_1d_with_axis_axis_0, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis_errors, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis_list, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_axis_zeros, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_nanequals, test/torch_np/numpy_tests/lib/test_arraysetops.py::TestUnique::test_unique_sort_order_with_axis 2025-06-01T23:13:59.7458267Z 2025-06-01T23:14:04.8810069Z Running dynamo/test_hooks 1/1 ... [2025-06-01 23:14:04.876891] 2025-06-01T23:14:04.8810566Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:14:04.8817580Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_hooks.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:14:04.881524] 2025-06-01T23:14:09.7578380Z 2025-06-01T23:14:09.7579362Z dynamo/test_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_hooks_1.1_2e695993ca208082_.log 2025-06-01T23:14:09.7580012Z 2025-06-01T23:14:14.8502089Z Running test_scatter_gather_ops 1/1 ... [2025-06-01 23:14:14.845114] 2025-06-01T23:14:14.8502595Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:14:14.8509035Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_scatter_gather_ops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:14:14.845114] 2025-06-01T23:14:30.9051909Z 2025-06-01T23:14:30.9053046Z test_scatter_gather_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_scatter_gather_ops_1.1_26137cd4a539fe6c_.log 2025-06-01T23:14:30.9085282Z Running 83 items in this shard: test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_False_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_False_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_True_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_backward_with_empty_index_tensor_sparse_grad_True_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_bool_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_expanded_index_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_expanded_index_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_expanded_index_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_large_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_gather_large_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__reductions_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__reductions_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__reductions_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__scalar_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__scalar_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter__scalar_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add__cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add__cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add__cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_add_mult_index_base_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_expanded_index_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amax_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_amin_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_complex128, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_mean_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_bool, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_complex128, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_prod_cpu_uint8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_bfloat16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_complex128, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_complex64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_float16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_float32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_float64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int16, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int32, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int64, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_int8, test/test_scatter_gather_ops.py::TestScatterGatherCPU::test_scatter_reduce_sum_cpu_uint8 2025-06-01T23:14:30.9115869Z 2025-06-01T23:14:35.8902329Z Running test_dataloader 1/2 ... [2025-06-01 23:14:35.889858] 2025-06-01T23:14:35.8902830Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:14:35.8909900Z 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-06-01 23:14:35.890442] 2025-06-01T23:17:18.6048976Z 2025-06-01T23:17:18.6050227Z test_decomp 10/15 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_10.15_a62ed43078b3e486_.log 2025-06-01T23:17:18.6376601Z Running 586 items in this shard: test/test_decomp.py::TestDecompCPU::test_arange_graph_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rxor___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_complex64, 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_addmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_complex128, 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_as_strided_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e4m3fn, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cond_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nextafter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_float32, 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_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_area_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_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_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float64, 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_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_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_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_float32, 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_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polar_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_exponential_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_cosine_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_kaiser_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_float64, 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_i1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch__scaled_mm_cpu_float8_e5m2, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_frac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_rot90_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_triu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int64, 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_nan_to_num_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_glu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_normal_number_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_polar_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int64, 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_log_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float64, 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_rnn_decomp_module_nn_LSTM_train_mode_cpu_float32 2025-06-01T23:17:18.6606393Z 2025-06-01T23:17:24.6265603Z Running dynamo/test_subclasses 1/1 ... [2025-06-01 23:17:24.619768] 2025-06-01T23:17:24.6266359Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:17:24.6273326Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_subclasses.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:17:24.619768] 2025-06-01T23:17:37.5665384Z 2025-06-01T23:17:37.5666744Z dynamo/test_subclasses 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_subclasses_1.1_839efaaf86478df5_.log 2025-06-01T23:17:37.5667922Z 2025-06-01T23:17:43.0981053Z Running test_ops 2/8 ... [2025-06-01 23:17:43.097575] 2025-06-01T23:17:43.0981876Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:17:43.0992705Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=2', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:17:43.098746] 2025-06-01T23:19:35.5195920Z 2025-06-01T23:19:35.5197367Z test_schema_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_schema_check_1.1_0778334e7abd1a43_.log 2025-06-01T23:19:35.9310467Z Running 6013 items in this shard: test/test_schema_check.py::TestSchemaCheck::test_alias_check_fail_custom_ops_output_is_input, test/test_schema_check.py::TestSchemaCheck::test_alias_check_fail_custom_ops_secretly_aliasing, test/test_schema_check.py::TestSchemaCheck::test_alias_check_fail_custom_ops_secretly_mutating, test/test_schema_check.py::TestSchemaCheck::test_alias_check_fail_multiple_operators, test/test_schema_check.py::TestSchemaCheck::test_alias_check_fail_multiple_operators_centered, test/test_schema_check.py::TestSchemaCheck::test_alias_check_fail_outputs_unexpectedly_aliasing, test/test_schema_check.py::TestSchemaCheck::test_alias_check_fail_simple, test/test_schema_check.py::TestSchemaCheck::test_is_alias_of_basic, test/test_schema_check.py::TestSchemaCheck::test_is_alias_of_empty_container, test/test_schema_check.py::TestSchemaCheck::test_mutation_check_fail, test/test_schema_check.py::TestSchemaCheck::test_mutation_check_fail_multiple_operators, test/test_schema_check.py::TestSchemaCheck::test_overlaps_basic, test/test_schema_check.py::TestSchemaCheck::test_overlaps_empty_container, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_empty_list_input, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_aliasing_inputs, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_default_replaced, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_device_input, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_kwarg_tensor, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_list_input, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_mutable_inputs, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_nested_training_op, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_training_op, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_wildcard_after, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_with_multiple_outputs, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_functionality_with_multiple_outputs_aliasing, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_mutated_aliasing_aliasing_inputs, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_mutated_aliasing_aliasing_outputs, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_mutated_aliasing_as_strided, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_mutated_aliasing_multiple_outputs, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_mutated_aliasing_mutation, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_mutated_aliasing_none, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_mutated_aliasing_resize_, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_operator_order, test/test_schema_check.py::TestSchemaCheck::test_schema_check_mode_operator_order_without_grad, test/test_schema_check.py::TestSchemaCheck::test_schema_info_bind_basic, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_H_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_T_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___getitem___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___radd___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rand___cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rand___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rand___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rand___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rand___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rand___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rdiv___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmatmul___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmod___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmod___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmod___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmod___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rmul___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___ror___cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___ror___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___ror___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___ror___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___ror___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___ror___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rpow___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rsub___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rxor___cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rxor___cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rxor___cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rxor___cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rxor___cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness___rxor___cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__batch_norm_with_update_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__batch_norm_with_update_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__batch_norm_with_update_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__batch_norm_with_update_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__chunk_cat_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__native_batch_norm_legit_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__native_batch_norm_legit_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__native_batch_norm_legit_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__native_batch_norm_legit_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_lengths_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_lengths_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_lengths_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_lengths_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_offsets_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_offsets_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_offsets_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__segment_reduce_offsets_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__softmax_backward_data_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__softmax_backward_data_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__softmax_backward_data_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__softmax_backward_data_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__upsample_bilinear2d_aa_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__upsample_bilinear2d_aa_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness__upsample_bilinear2d_aa_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_abs_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acos_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_acosh_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_add_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addbmm_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcdiv_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcdiv_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcdiv_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcdiv_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcdiv_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcdiv_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addcmul_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmm_decomposed_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addmv_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_addr_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_alias_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_all_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_allclose_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_allclose_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_allclose_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_allclose_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_allclose_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_allclose_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_amin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_aminmax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_angle_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_any_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_arange_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argmin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argsort_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_argwhere_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_partial_views_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_as_strided_scatter_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_asinh_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atan_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atanh_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_1d_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_2d_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_atleast_3d_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_baddbmm_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bernoulli_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bernoulli_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bernoulli_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bernoulli_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bfloat16_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bincount_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bincount_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bincount_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bincount_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bincount_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_and_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_and_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_and_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_and_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_and_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_and_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_left_shift_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_left_shift_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_left_shift_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_left_shift_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_left_shift_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_not_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_not_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_not_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_not_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_not_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_not_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_or_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_or_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_or_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_or_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_or_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_or_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_right_shift_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_right_shift_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_right_shift_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_right_shift_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_right_shift_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_xor_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_xor_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_xor_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_xor_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_xor_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bitwise_xor_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_block_diag_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bmm_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bool_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_shapes_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_tensors_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_broadcast_to_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_bucketize_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_byte_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cartesian_prod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cat_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cauchy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cauchy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cauchy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cauchy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdist_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdist_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cdouble_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ceil_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cfloat_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chalf_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_char_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_inverse_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_inverse_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_inverse_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_inverse_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_solve_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_solve_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_solve_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cholesky_solve_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_chunk_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_max_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clamp_min_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_clone_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_column_stack_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_combinations_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_complex_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_complex_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_complex_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_conj_physical_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_constant_pad_nd_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_contiguous_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_copysign_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_corrcoef_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cos_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cosh_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_count_nonzero_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cov_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cross_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cummin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumprod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumsum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_cumulative_trapezoid_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_deg2rad_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diag_embed_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagflat_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diagonal_scatter_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_diff_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_digamma_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dist_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dist_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dist_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dist_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dist_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dist_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_floor_rounding_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_no_rounding_mode_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_div_trunc_rounding_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dot_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_double_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dsplit_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_dstack_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_einsum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_like_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_permuted_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_empty_strided_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eq_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_equal_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erf_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfc_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_erfinv_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exp_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_as_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expand_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_expm1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exponential_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exponential_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exponential_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_exponential_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_float8_e4m3fn, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_float8_e4m3fnuz, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_float8_e5m2, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_float8_e5m2fnuz, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_eye_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fft_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftn_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_fftshift_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfft_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_hfftn_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifft_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftn_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ifftshift_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfft_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_ihfftn_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfft_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_irfftn_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfft_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fft_rfftn_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fill_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flatten_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flip_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fliplr_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_flipud_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_float_power_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_floor_divide_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_fmod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frac_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frac_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frac_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frac_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frexp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frexp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frexp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_frexp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_uint16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_uint32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_full_like_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gather_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gcd_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gcd_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gcd_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gcd_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gcd_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ge_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geometric_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geqrf_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geqrf_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geqrf_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_geqrf_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gradient_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_grid_sampler_2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_grid_sampler_2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_grid_sampler_2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_grid_sampler_2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_gt_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_half_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_heaviside_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histc_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histc_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histc_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histc_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histogram_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histogram_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histogramdd_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_histogramdd_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hsplit_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hstack_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hypot_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hypot_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hypot_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_hypot_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_i0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igamma_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igamma_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igamma_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igamma_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igammac_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igammac_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igammac_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_igammac_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_imag_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_imag_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_imag_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_add_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_fill_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_put_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_amin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_mean_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_reduce_prod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_index_select_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_inner_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_int_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isclose_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isfinite_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isinf_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isnan_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isneginf_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isposinf_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_isreal_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_istft_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_istft_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_item_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_2inputs_2outputs_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_binary_return_by_ref_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_jiterator_unary_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kron_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_kthvalue_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lcm_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lcm_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lcm_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lcm_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lcm_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ldexp_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_le_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lerp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lerp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lerp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lerp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lerp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lerp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lgamma_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_ex_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_ex_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_ex_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cholesky_ex_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cond_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cond_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cond_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cond_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_cross_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_det_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_det_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_det_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_det_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_diagonal_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eig_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eig_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eig_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eig_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvals_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvals_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvals_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvals_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvalsh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvalsh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvalsh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_eigvalsh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_householder_product_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_householder_product_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_householder_product_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_householder_product_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_ex_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_ex_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_ex_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_inv_ex_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_ex_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_ex_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_ex_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_factor_ex_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_solve_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_solve_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_solve_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_ldl_solve_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_grad_oriented_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_grad_oriented_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_grad_oriented_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lstsq_grad_oriented_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_ex_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_ex_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_ex_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_factor_ex_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_solve_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_solve_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_solve_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_lu_solve_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_norm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_norm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_power_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_power_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_power_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_power_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_hermitian_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_hermitian_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_hermitian_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_matrix_rank_hermitian_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_multi_dot_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_subgradients_at_zero_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_subgradients_at_zero_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_norm_subgradients_at_zero_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_hermitian_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_hermitian_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_hermitian_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_hermitian_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_singular_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_singular_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_singular_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_pinv_singular_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_qr_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_qr_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_qr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_qr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_slogdet_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_slogdet_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_slogdet_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_slogdet_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_ex_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_ex_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_ex_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_ex_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_triangular_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_triangular_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_triangular_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_solve_triangular_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svd_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svd_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svd_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svd_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svdvals_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svdvals_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svdvals_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_svdvals_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorinv_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorinv_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorinv_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorinv_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorsolve_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorsolve_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorsolve_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_tensorsolve_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vander_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vecdot_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vecdot_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vecdot_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vecdot_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vecdot_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vecdot_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vector_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vector_norm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vector_norm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vector_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vector_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linalg_vector_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_linspace_tensor_overload_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log10_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log1p_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_normal_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_normal_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_normal_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_normal_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_log_softmax_with_dtype_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp2_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp2_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logaddexp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logcumsumexp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logcumsumexp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logcumsumexp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logcumsumexp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logcumsumexp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logcumsumexp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logdet_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logdet_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logdet_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logdet_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_and_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_not_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_or_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logical_xor_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logit_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logspace_tensor_overload_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_logsumexp_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_long_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lt_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_solve_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_solve_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_solve_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_solve_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_unpack_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_unpack_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_unpack_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_lu_unpack_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mH_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mT_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_amin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_argmin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumprod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_cumsum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_fill_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_log_softmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_log_softmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_log_softmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_log_softmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logaddexp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logaddexp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logaddexp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logaddexp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_logsumexp_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_mean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_mean_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_mean_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_mean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_mean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_mean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_median_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_median_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_median_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_median_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_normalize_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_normalize_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_normalize_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_normalize_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_normalize_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_normalize_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_prod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_scatter_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_select_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_softmin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_std_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_sum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_masked_var_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matmul_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matrix_exp_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matrix_exp_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matrix_exp_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matrix_exp_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matrix_exp_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_matrix_exp_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_binary_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_pool2d_with_indices_backward_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_pool2d_with_indices_backward_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_pool2d_with_indices_backward_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_no_dim_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_max_reduction_with_dim_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_maximum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mean_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mean_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_median_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_list_of_tensors_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_meshgrid_variadic_tensors_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_binary_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_no_dim_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_min_reduction_with_dim_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_minimum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mm_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mode_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_movedim_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_msort_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mul_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_multinomial_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_multinomial_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_multinomial_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_multinomial_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mv_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nan_to_num_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanmedian_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanquantile_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nanquantile_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nansum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_narrow_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_batch_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_batch_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_batch_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_batch_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_dropout_backward_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_layer_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_layer_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_layer_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_native_layer_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ne_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_neg_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_empty_strided_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_full_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_ones_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_new_zeros_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nextafter_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nextafter_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nextafter_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nextafter_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_alpha_dropout_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_alpha_dropout_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_alpha_dropout_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_alpha_dropout_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool1d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool2d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_avg_pool3d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_batch_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_batch_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_batch_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_batch_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_bilinear_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_celu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_celu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_celu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_celu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_channel_shuffle_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv1d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv1d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv1d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv2d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv2d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv2d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv3d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv3d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv3d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose1d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose1d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose1d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose2d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose2d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose2d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose3d_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose3d_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_conv_transpose3d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_similarity_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_similarity_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_similarity_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cosine_similarity_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cross_entropy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cross_entropy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cross_entropy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_cross_entropy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_ctc_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_ctc_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_dropout_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_elu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_elu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_elu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_elu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_bag_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_bag_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_bag_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_bag_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_embedding_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_fractional_max_pool3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gaussian_nll_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gaussian_nll_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gaussian_nll_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gelu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gelu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gelu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_gelu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_glu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_glu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_glu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_glu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_grid_sample_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_grid_sample_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_grid_sample_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_grid_sample_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_group_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_group_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_group_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_group_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardshrink_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardshrink_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardshrink_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardshrink_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardsigmoid_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardsigmoid_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardsigmoid_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardsigmoid_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardswish_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardswish_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardswish_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardswish_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hardtanh_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hinge_embedding_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hinge_embedding_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_hinge_embedding_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_huber_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_huber_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_huber_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_huber_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_instance_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_instance_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_instance_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_instance_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_area_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_area_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_area_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_area_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bicubic_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bicubic_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bicubic_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bicubic_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bilinear_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bilinear_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bilinear_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_bilinear_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_linear_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_linear_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_linear_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_linear_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_nearest_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_trilinear_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_trilinear_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_interpolate_trilinear_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_kl_div_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_kl_div_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_kl_div_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_kl_div_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_l1_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_l1_loss_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_l1_loss_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_l1_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_l1_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_l1_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_layer_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_layer_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_layer_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_layer_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_leaky_relu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_leaky_relu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_leaky_relu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_leaky_relu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_linear_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_local_response_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_local_response_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_local_response_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_local_response_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_local_response_norm_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_logsigmoid_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_logsigmoid_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_logsigmoid_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_logsigmoid_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_margin_ranking_loss_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool2d_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_pool3d_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_grad_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_grad_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool1d_grad_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_grad_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_grad_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool2d_grad_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_grad_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_grad_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_max_unpool3d_grad_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mish_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mish_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mish_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mish_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mse_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mse_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mse_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_mse_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multi_head_attention_forward_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multi_head_attention_forward_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multi_head_attention_forward_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multi_margin_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multi_margin_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multilabel_margin_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multilabel_margin_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_nll_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_nll_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_nll_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_nll_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_normalize_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_normalize_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_normalize_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_normalize_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_normalize_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_normalize_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_one_hot_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_circular_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_constant_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_reflect_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pad_replicate_negative_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pairwise_distance_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pdist_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pdist_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_shuffle_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_pixel_unshuffle_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_poisson_nll_loss_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_prelu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_prelu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_prelu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_prelu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu6_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_relu_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rms_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rms_norm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rms_norm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rms_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rms_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rms_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rrelu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rrelu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_rrelu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_selu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_selu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_selu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_selu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_silu_complex_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_silu_complex_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_silu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_silu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_silu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_silu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_smooth_l1_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_smooth_l1_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_smooth_l1_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_soft_margin_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_soft_margin_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_soft_margin_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softmin_with_dtype_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softplus_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softplus_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softplus_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softplus_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softshrink_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softshrink_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softshrink_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softshrink_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_softsign_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_tanhshrink_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_threshold_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_loss_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_unfold_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_unfold_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_unfold_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_unfold_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_unfold_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_unfold_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_unfold_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_bilinear_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_bilinear_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_bilinear_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_bilinear_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_nearest_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_nearest_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_nearest_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_nearest_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nn_functional_upsample_nearest_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_nonzero_static_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_fro_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_fro_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_fro_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_fro_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_fro_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_fro_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_inf_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_inf_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_inf_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_inf_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_inf_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_inf_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_inf_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_nuc_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_nuc_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_nuc_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_norm_nuc_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_in_place_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_in_place_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_in_place_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_in_place_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_in_place_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_in_place_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_number_mean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_number_mean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_number_mean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_normal_number_mean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ones_like_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ormqr_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ormqr_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ormqr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ormqr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_outer_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pca_lowrank_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pca_lowrank_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pca_lowrank_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pca_lowrank_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_permute_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pinverse_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pinverse_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pinverse_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pinverse_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polar_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polar_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_2_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_3_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_polygamma_polygamma_n_4_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_positive_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_pow_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_prod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_put_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_qr_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_qr_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_qr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_qr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_quantile_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_quantile_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rad2deg_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rand_like_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rand_like_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rand_like_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rand_like_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rand_like_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rand_like_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rand_like_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randint_like_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_like_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_like_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_like_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_like_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_like_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_like_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_randn_like_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_ravel_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_real_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reciprocal_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_remainder_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_renorm_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_renorm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_renorm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_renorm_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_renorm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_renorm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_repeat_interleave_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_as_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_reshape_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize__cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resize_as__cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_conj_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_resolve_neg_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_roll_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rot90_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_0_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_0_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_3_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_3_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_3_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_neg_3_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_neg_3_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_round_decimals_neg_3_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsqrt_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_rsub_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scalar_tensor_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_add_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amax_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_amin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_mean_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_prod_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_scatter_reduce_sum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_searchsorted_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_select_scatter_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sgn_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_short_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sigmoid_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sign_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_bartlett_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_bartlett_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_blackman_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_blackman_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_cosine_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_cosine_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_exponential_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_exponential_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_gaussian_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_gaussian_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_general_cosine_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_general_cosine_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_general_hamming_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_general_hamming_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_hamming_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_hamming_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_hann_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_hann_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_kaiser_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_kaiser_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_nuttall_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signal_windows_nuttall_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_signbit_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sin_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinc_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sinh_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_slice_scatter_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_softmax_with_dtype_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sort_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_mm_reduce_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_mm_reduce_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_mm_reduce_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_mm_reduce_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_sampled_addmm_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_sampled_addmm_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_sampled_addmm_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sparse_sampled_addmm_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_airy_ai_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_j1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_bessel_y1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_t_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_u_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_v_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_chebyshev_polynomial_w_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_entr_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_erfcx_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_h_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_hermite_polynomial_he_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i0e_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_i1e_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_laguerre_polynomial_l_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_legendre_polynomial_p_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_log_ndtr_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_i1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_modified_bessel_k1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtr_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_ndtri_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_scaled_modified_bessel_k1_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_spherical_bessel_j0_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_xlog1py_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_special_zeta_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_list_args_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_split_with_sizes_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sqrt_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_square_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_squeeze_multiple_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stack_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_unbiased_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_unbiased_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_unbiased_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_unbiased_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_unbiased_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_mean_unbiased_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_unbiased_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_unbiased_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_unbiased_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_unbiased_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_unbiased_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_std_unbiased_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stft_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stft_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stft_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_stft_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sub_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_sum_to_size_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_lowrank_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_lowrank_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_lowrank_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_svd_lowrank_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_t_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_along_dim_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_take_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tan_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tanh_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensor_split_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tensordot_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tile_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_to_sparse_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_topk_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch__scaled_mm_cpu_float8_e4m3fn, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch__scaled_mm_cpu_float8_e5m2, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trace_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_transpose_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapezoid_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trapz_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triangular_solve_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triangular_solve_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triangular_solve_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triangular_solve_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_indices_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_tril_indices_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_indices_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_triu_indices_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_true_divide_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_trunc_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unbind_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unflatten_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unfold_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_uniform_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_uniform_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_uniform_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_uniform_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_uniform_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_uniform_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_consecutive_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_uint16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_uint32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_uint64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unique_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unravel_index_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unravel_index_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unravel_index_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unravel_index_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unravel_index_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_chunk_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsafe_split_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_unsqueeze_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_unbiased_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_unbiased_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_unbiased_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_unbiased_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_unbiased_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_mean_unbiased_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_unbiased_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_unbiased_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_unbiased_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_unbiased_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_unbiased_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_var_unbiased_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vdot_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_complex_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_complex_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_complex_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_real_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_as_real_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_copy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_view_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vsplit_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_vstack_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_where_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_xlogy_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zero__cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_cpu_uint8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_bfloat16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_bool, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_complex128, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_complex32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_complex64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_float16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_float32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_float64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_int16, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_int32, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_int64, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_int8, test/test_schema_check.py::TestSchemaCheckModeOpInfoCPU::test_schema_correctness_zeros_like_cpu_uint8 2025-06-01T23:19:36.3614916Z 2025-06-01T23:19:41.3079107Z Running test_ops 6/8 ... [2025-06-01 23:19:41.307193] 2025-06-01T23:19:41.3079536Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:19:41.3085492Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=6', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:19:41.308368] 2025-06-01T23:21:24.2987368Z 2025-06-01T23:21:24.2988720Z test_dataloader 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_1.2_3d1d7f35853eb664_.log 2025-06-01T23:21:24.3047105Z Running 92 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_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-06-01T23:21:24.3098780Z 2025-06-01T23:21:29.6692893Z Running test_ops 7/8 ... [2025-06-01 23:21:29.668760] 2025-06-01T23:21:29.6693409Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:21:29.6700361Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=7', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:21:29.669345] 2025-06-01T23:28:31.4156693Z 2025-06-01T23:28:31.4157636Z test_ops 2/8 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_2.8_f9fd4a9a7729eb3a_.log 2025-06-01T23:28:31.5571946Z Running 4322 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_zeros_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_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_instance_norm_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_bilinear_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_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_T_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_alias_copy_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_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_norm_inf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_rand_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_squeeze_copy_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_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unflatten_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_unsqueeze_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_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___radd___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rand___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_all_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_allclose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ceil_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_eq_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_gcd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isneginf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_istft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_le_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_hardshrink_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_mse_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_split_with_sizes_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_squeeze_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_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_all_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_angle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_argmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atan2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_baddbmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ceil_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_complex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_conj_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_corrcoef_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diagflat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_expand_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_hfftn_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_gather_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_reduce_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lcm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_rank_hermitian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_pinv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_slogdet_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log10_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_log_softmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nansum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ne_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_batch_norm_without_cudnn_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_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_feature_alpha_dropout_without_train_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_linear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_trilinear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool3d_grad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multilabel_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_silu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_norm_inf_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_remainder_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_general_cosine_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_hamming_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sparse_sampled_addmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_y0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_erfcx_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_polygamma_special_polygamma_n_0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_stft_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_trapz_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tril_indices_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_triu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unbind_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_uniform_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_var_mean_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_zeros_like_cpu, test/test_ops.py::TestCommonCPU::test_errors_add_cpu, test/test_ops.py::TestCommonCPU::test_errors_aminmax_cpu, test/test_ops.py::TestCommonCPU::test_errors_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_errors_complex_cpu, test/test_ops.py::TestCommonCPU::test_errors_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_errors_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_diff_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmin_cpu, test/test_ops.py::TestCommonCPU::test_errors_gcd_cpu, test/test_ops.py::TestCommonCPU::test_errors_linspace_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_embedding_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_errors_normal_in_place_cpu, test/test_ops.py::TestCommonCPU::test_errors_polar_cpu, test/test_ops.py::TestCommonCPU::test_errors_roll_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_gaussian_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_legendre_polynomial_p_cpu, test/test_ops.py::TestCommonCPU::test_errors_sub_cpu, test/test_ops.py::TestCommonCPU::test_errors_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_t_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_alias_copy_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_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cholesky_solve_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_frac_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_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_ldl_solve_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_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polygamma_polygamma_n_4_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_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_chebyshev_polynomial_w_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_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___radd___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_any_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argwhere_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_baddbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_corrcoef_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumulative_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_einsum_cpu_float32, 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_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft_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_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_put_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_2inputs_2outputs_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_binary_return_by_ref_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_unary_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_unary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_inv_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_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_vecdot_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_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_native_dropout_backward_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose3d_cpu_int64, 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_interpolate_trilinear_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_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_select_scatter_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_kaiser_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unique_consecutive_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values___ror___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__unsafe_masked_index_put_accumulate_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_acos_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bitwise_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bitwise_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_chalf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_chunk_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_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_double_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_eq_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_rfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_put_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_kron_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_minimum_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_new_ones_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_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_rot90_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_bessel_y1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_chebyshev_polynomial_u_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_ndtr_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_special_spherical_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_list_args_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_split_with_sizes_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_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tile_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_zero__cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_zeros_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_aminmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_angle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_cpu_float32, 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_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_column_stack_cpu_int64, 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_corrcoef_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cov_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diff_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erfc_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_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft_cpu_complex64, 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_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_frexp_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_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gradient_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isin_cpu_int64, 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_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kron_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logcumsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_var_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_gaussian_nll_loss_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_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool2d_grad_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_constant_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_reflect_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_poisson_nll_loss_cpu_int64, 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_with_distance_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randn_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize_as__cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scalar_tensor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sin_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_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_h_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_list_args_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tile_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zero__cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_diagflat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_rms_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_roll_cpu_float64, test/test_ops.py::TestCommonCPU::test_out___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_split_with_sizes_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_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_baddbmm_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_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isin_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_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_vander_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_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_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_logsigmoid_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_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randn_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__native_batch_norm_legit_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_angle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_baddbmm_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_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diag_cpu_complex64, 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_exp2_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_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_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_floor_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_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ldexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lerp_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_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_norm_subgradients_at_zero_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_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorsolve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_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_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_masked_select_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_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_take_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_y1_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_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning_T_cpu, test/test_ops.py::TestCommonCPU::test_out_warning___getitem___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_double_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_long_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_any_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_expand_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flip_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flipud_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_igamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_igammac_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_movedim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_nll_loss_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_relu_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_roll_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_multigammaln_mvlgamma_p_1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_split_with_sizes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_transpose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_aminmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argwhere_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_partial_views_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cholesky_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_combinations_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_dot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_exp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_expand_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_eye_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_half_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_histc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_put_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isnan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isreal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_2inputs_2outputs_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_eigvals_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_householder_product_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_ldl_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_multi_dot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_svdvals_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_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_normalize_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_pool2d_with_indices_backward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_reduction_no_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_maximum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_min_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mvlgamma_mvlgamma_p_1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nanmean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nanmedian_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_batch_norm_without_cudnn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_binary_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_embedding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_linear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_replicate_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_scaled_dot_product_attention_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_unfold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_upsample_nearest_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ones_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ormqr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_permute_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randint_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randn_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_decimals_neg_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_short_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_hermite_polynomial_he_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_modified_bessel_i1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_shifted_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_list_args_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_with_sizes_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_take_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch_ops_aten__efficient_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_transpose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tril_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unfold_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unique_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unravel_index_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_as_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_as_real_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_where_cpu, test/test_ops.py::TestCommonCPU::test_out_zero__cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_int16, 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_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int64, 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_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int32, 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_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int8, 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_he_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_float16, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_int16, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_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_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_bfloat16, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_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_left_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_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_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float64, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_uint8, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_complex128, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_bool, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_float64, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_bool, 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_fftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_complex128, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_int8, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igammac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_imag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_float32, 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_isinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_int8, 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_int16, 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_float16, 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_linspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_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_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int16, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_complex32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_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_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_celu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_gelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_gelu_cpu_float16, 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_group_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_int32, 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_float32, 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_nll_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_float16, 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_relu6_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_float64, 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_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_float64, 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_threshold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_bfloat16, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_float32, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_float16, 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_sin_cpu_int64, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_int32, 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_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, 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_5_cpu_float16, 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_multigammaln_mvlgamma_p_5_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_int64, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_float64, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_float64, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_bfloat16, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_T_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_copysign_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_diagonal_copy_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_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_ge_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_geometric_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_igamma_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_index_add_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_lt_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_narrow_copy_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_group_norm_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_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_where_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_complex32, 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_cdouble_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_int8, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float64, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int64, 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_float32, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_complex128, 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_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_all_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_bool, 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_bool, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_int16, 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_complex128, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_int16, 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_broadcast_to_executor_aten_cpu_complex64, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_bfloat16, 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_max_executor_aten_cpu_bool, 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_min_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_float16, 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_count_nonzero_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_int8, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_int64, 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_int64, 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_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_bfloat16, 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_equal_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_exp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_int32, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float8_e4m3fn, 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_eye_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_complex64, 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_hfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int8, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_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_irfftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_float32, 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_fliplr_executor_aten_cpu_float32, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_bfloat16, 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_fmax_executor_aten_cpu_int16, 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_frexp_executor_aten_cpu_bfloat16, 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_int32, 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_ge_executor_aten_cpu_uint8, 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_heaviside_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hypot_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_bfloat16, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_istft_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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_normal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp2_executor_aten_cpu_float64, 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_bool, 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_and_executor_aten_cpu_float32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_bfloat16, 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_logspace_tensor_overload_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_int64, 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_empty_strided_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_int16, 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_full_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_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_int32, 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_hardshrink_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int16, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_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_int32, 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_pairwise_distance_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softplus_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_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_pow_executor_aten_cpu_complex128, 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_rad2deg_executor_aten_cpu_float64, 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_randn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_int32, 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_uint8, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_int8, 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_sigmoid_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_int16, 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_i1e_executor_aten_cpu_uint8, 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_ndtr_executor_aten_cpu_int32, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_float16, 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_uint8, 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_sqrt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_bfloat16, 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_multiple_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_int16, 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_int16, 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_sum_to_size_executor_aten_cpu_int32, 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_executor_aten_cpu_int32, 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_tan_executor_aten_cpu_int32, 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_tensor_split_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_uint8, 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_to_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_indices_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_int64, 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_true_divide_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int8, 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_trunc_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_complex64, 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_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_complex32, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_bfloat16, 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_complex64, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_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_vdot_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int32, 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_vsplit_executor_aten_cpu_int8, 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_where_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_int16, 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_float_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_complex64, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_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_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_int64, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_complex64, 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_float64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_int8, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_bool, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_float16, 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_cos_cpu_float64, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int16, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_int32, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_bool, 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_int32, 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_int32, 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_fftshift_cpu_int8, 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_hfft2_cpu_int8, 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_hfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_int8, 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_ifftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_bool, 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_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_float64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_int16, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_complex32, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_istft_cpu_complex128, 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_uint8, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int16, 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_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_uint8, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_complex64, 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_float16, 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_or_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_bool, 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_minimum_cpu_int16, 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_uint8, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_float16, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int8, 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_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_group_norm_cpu_bfloat16, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_bfloat16, 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_prelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_int64, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_int8, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_int64, 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_rsub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_float16, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_complex32, 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_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_int64, 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_bool, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_complex64, 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_float32, 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_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_complex64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_complex64, 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_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_int8, 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_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_float64, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int32, 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_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_float32, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_float32, 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_complex128, 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_complex128, 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_float16, 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_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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float64, 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__conversions_short_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex64, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_uint8, 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_complex64, 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_addcmul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_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_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_float32, 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_atan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_complex32, 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_left_shift_cpu_int8, 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_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int8, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_int8, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cauchy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_int8, 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_conj_physical_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_int32, 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_contiguous_cpu_float32, 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_copysign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_complex64, 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_int8, 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_diagonal_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_int32, 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_erfc_cpu_float64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_float64, 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_expand_as_cpu_float16, 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_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int8, 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_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_float32, 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_float_power_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frexp_cpu_bfloat16, 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_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igamma_cpu_float32, 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_copy_cpu_complex128, 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_isfinite_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_complex64, 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_isinf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_uint8, 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_lcm_cpu_int16, 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_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_int16, 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_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_float16, 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_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_bfloat16, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_float32, 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_logaddexp2_cpu_float64, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_complex128, 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_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_int8, 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_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_int32, 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_maximum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_bool, 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_bfloat16, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_uint8, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_complex64, 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_ne_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_complex128, 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_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_int8, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_celu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_float16, 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_hinge_embedding_loss_cpu_float64, 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_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_int64, 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_float16, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_bool, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int16, 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_smooth_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_bfloat16, 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_softmin_with_dtype_cpu_int8, 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_tanhshrink_cpu_bfloat16, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_complex32, 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_complex32, 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_float32, 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_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_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_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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_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_rot90_cpu_int16, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int16, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_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_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_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_int32, 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_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_int8, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_uint8, 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_square_cpu_complex64, 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_squeeze_copy_cpu_complex64, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_int16, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_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_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_bool, 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_float32, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_uint8, 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_uint8, 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_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_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_bfloat16, 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_tril_cpu_float16, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_bool, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_float32, 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_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int8, 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_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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_float16, 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_view_as_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int64, 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_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_bfloat16, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_int64, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_int32, 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_int8, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__chunk_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_angle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_byte_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_contiguous_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_corrcoef_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_copy_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_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dstack_cpu_complex64, 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_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_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flip_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_inner_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_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_qr_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_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_ctc_loss_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_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softshrink_cpu_float32, 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_norm_nuc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pca_lowrank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sparse_sampled_addmm_cpu_complex64, 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_log_ndtr_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_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_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_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_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_uniform_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_where_cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_mse_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_pad_replicate_negative_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_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_roll_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sum_to_size_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_vsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rdiv___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_all_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_le_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_zeros_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_binary_cross_entropy_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_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_embedding_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_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_multi_margin_loss_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_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_roll_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_log_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_equal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_heaviside_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_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isneginf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lgamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_diagonal_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_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_narrow_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ne_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sparse_sampled_addmm_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_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_k1_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_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_svd_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unflatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unique_consecutive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_vsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ceil_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_count_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fliplr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lstsq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_and_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_zeta_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_vstack_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__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_narrow_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_narrow_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_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_kl_div_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_unpool2d_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_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ormqr_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_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_to_sparse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_view_copy_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___rpow___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_bool_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_abs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_addcdiv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_block_diag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cosh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_float_power_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_hsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_imag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logical_not_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logspace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_mul_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_zeros_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_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_randn_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_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_acosh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addmm_decomposed_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_asin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atleast_2d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_baddbmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_bfloat16_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_broadcast_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_contiguous_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumprod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diagonal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_empty_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expand_copy_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_fft_ifftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_irfft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isfinite_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isinf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isnan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_unary_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linspace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_or_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mH_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_movedim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ne_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_softsign_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_norm_inf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_rand_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resize_as__cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resolve_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_rot90_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sinh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_mean_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_tensordot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_view_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_view_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_vsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_T_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_alias_copy_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_diagonal_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_dsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_empty_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_expand_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_fft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fliplr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_index_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_istft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_masked_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_empty_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_randn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_reshape_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_split_with_sizes_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_to_size_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_alias_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cdouble_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cfloat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_constant_pad_nd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_count_nonzero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_flip_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_float_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_gradient_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isfinite_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isreal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_binary_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cholesky_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eigh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eigvals_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eigvalsh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lu_factor_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_multi_dot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_pinv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_solve_triangular_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_svdvals_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logaddexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logdet_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mH_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_prod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_narrow_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_neg_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_conv_transpose2d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nonzero_static_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ones_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_outer_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_permute_copy_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_repeat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_roll_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_scatter_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sigmoid_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_std_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_stft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_svd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tensordot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_true_divide_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unbind_copy_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___rmatmul___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_long_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_short_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_acos_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_addr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_all_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_asin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_broadcast_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_bucketize_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_copysign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_deg2rad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_erfc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_igamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isreal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_item_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_cross_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log10_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logical_not_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_minimum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nan_to_num_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ne_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_hinge_embedding_loss_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_pdist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_relu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softplus_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_positive_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_remainder_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rot90_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_i0e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_i1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_ndtri_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_std_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_tril_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unbind_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unsqueeze_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_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__unsafe_masked_index_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__upsample_bilinear2d_aa_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_acosh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addmv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_aminmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argsort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_asinh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bernoulli_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bfloat16_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bool_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_broadcast_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cholesky_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_clamp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_div_floor_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ihfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_irfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_flatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_floor_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_histogram_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_igammac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_put_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_item_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ldexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lerp_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_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_pinv_hermitian_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_pinv_singular_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_solve_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_svd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log10_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_and_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_or_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_median_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_softmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_matmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_matrix_exp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ne_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nextafter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_avg_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_batch_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv_transpose1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_feature_alpha_dropout_with_train_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_group_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_hardsigmoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_multi_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_poisson_nll_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_softmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_unfold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nonzero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ones_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_qr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rad2deg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_reciprocal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signbit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_i1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_modified_bessel_i0_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_ndtr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_std_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_take_along_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_take_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_var_unbiased_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_cfloat_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_half_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_addr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atleast_1d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_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_cumprod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_div__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_hfft_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_geometric__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_hstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isreal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_linspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_xor_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_masked_fill_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_nan_to_num__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_native_layer_norm_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_nn_functional_dropout_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_softplus_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ones_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rad2deg_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rot90_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_round_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_sigmoid_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sign__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_zeta_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_stft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sub_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_take_along_dim_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_transpose_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_unfold_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_as_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_vsplit_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_python_ref_db_op__refs_T_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_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_half_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_abs__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_addcmul__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_any_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cauchy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cauchy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_min_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_column_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_conj_physical_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cos__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cos_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_dsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_eq__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erf__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expand_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expm1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_rfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_rfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_floor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_gcd_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_igamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_imag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isreal_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_le_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_meshgrid_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_mvlgamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ne_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_celu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_gelu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_tanhshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sin__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_entr_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_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_spherical_bessel_j0_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_swap_axes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_t_copy_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_unsqueeze_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___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__chunk_cat_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_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_abs_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_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_right_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_igamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isnan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_le_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_vecdot_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_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_long_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_minimum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_multinomial_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_avg_pool2d_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_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_fractional_max_pool2d_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_leaky_relu_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_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_multi_margin_loss_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_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_pca_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rand_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randint_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resolve_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_searchsorted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_blackman_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_hann_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_trace_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_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cauchy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addmm_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_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cat_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_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_fftn_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_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_irfft_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_fmod_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_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_householder_product_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_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_avg_pool3d_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_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_grid_sample_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_kl_div_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_norm_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_permute_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_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_repeat_interleave_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_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_softmax_with_dtype_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_special_polygamma_special_polygamma_n_0_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_topk_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_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unsqueeze_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_where_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___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__batch_norm_with_update_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_atan_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_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_corrcoef_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_diagonal_scatter_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_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_erf_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_fft_hfftn_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_ihfft2_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_fft_rfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_frac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_half_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_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_svd_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_log_softmax_with_dtype_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_lu_unpack_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_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nanquantile_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_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_cosine_similarity_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_glu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool1d_grad_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_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_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_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tril_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isnan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ldexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_cosine_similarity_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_glu_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_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randint_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_remainder_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trapz_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_zeros_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_aminmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_or_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_byte_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_permuted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_eq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_equal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_hfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_flip_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_le_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hardsigmoid_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_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ormqr_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_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rsqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sinh_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_he_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_zeros_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int8, test/test_ops.py::TestTagsCPU::test_tags__refs_T_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_long_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_any_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_asin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_and_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_cat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clamp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clamp_max_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_conj_physical_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cumprod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ihfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_float_power_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_gcd_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_index_select_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isfinite_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_svd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_and_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_maximum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_full_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_hardtanh_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_mish_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pdist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_threshold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_roll_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_select_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sgn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sign_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_zeta_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_t_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_trace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_trunc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_var_mean_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_argsort_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atleast_1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_baddbmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bernoulli_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_and_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_bitwise_not_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_bool_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_broadcast_to_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bucketize_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cdouble_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cholesky_inverse_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_chunk_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_contiguous_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cosh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cov_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_div_trunc_rounding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_double_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_empty_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_fftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ifftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isnan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isneginf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isreal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_istft_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_kthvalue_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_householder_product_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logdet_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mT_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_softmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_native_layer_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_full_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_celu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_normalize_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ravel_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_remainder_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_repeat_interleave_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_resize__cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_resolve_conj_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_rot90_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_decimals_0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sort_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_stft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_t_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_take_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_triangular_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unique_consecutive_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unsafe_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_vsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_zero__cpu_float32 2025-06-01T23:28:31.6930087Z 2025-06-01T23:28:36.4253472Z Running test_cuda_multigpu 1/1 ... [2025-06-01 23:28:36.425098] 2025-06-01T23:28:36.4254251Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:28:36.4263667Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_multigpu.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:28:36.425699] 2025-06-01T23:28:42.6204867Z 2025-06-01T23:28:42.6206278Z test_cuda_multigpu 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_multigpu_1.1_6abba33ee9c85161_.log 2025-06-01T23:28:42.6208012Z Running 0 items in this shard: 2025-06-01T23:28:48.0787620Z 2025-06-01T23:28:48.0788390Z Running test_quantization 2/2 ... [2025-06-01 23:28:48.078631] 2025-06-01T23:28:48.0789149Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:28:48.0797100Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_quantization.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-06-01 23:28:48.079419] 2025-06-01T23:31:16.8705374Z 2025-06-01T23:31:16.8706647Z test_ops 6/8 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_6.8_bd34ba6752279151_.log 2025-06-01T23:31:17.1157530Z Running 4238 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_copy_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_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_new_empty_strided_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_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_zeros_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_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cross_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_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_t_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_atleast_1d_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_empty_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_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_movedim_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_new_empty_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_nonzero_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_permute_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes_H_cpu, test/test_ops.py::TestCommonCPU::test_dtypes___getitem___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rmod___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__chunk_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_double_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_asin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_block_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_broadcast_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_clone_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_eye_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_geometric_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_hstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_imag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_lt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_zeros_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_dropout_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_tanhshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_permute_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_real_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_remainder_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_renorm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_repeat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_log_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_logit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_multigammaln_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_stft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_vdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_vsplit_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__unsafe_masked_index_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_any_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atleast_1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_not_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_broadcast_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_chunk_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diff_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_dot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_eq_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_fftshift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_gt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_histc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_histogram_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isreal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_kthvalue_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_ldl_factor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lstsq_grad_oriented_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_multi_dot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_tensorinv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lu_unpack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_argmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_var_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_max_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_min_binary_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_msort_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_native_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cosine_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_embedding_bag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_fractional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_gaussian_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_instance_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_leaky_relu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_normalize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_threshold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nonzero_static_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_pinverse_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_repeat_interleave_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_round_decimals_neg_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rsub_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_short_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_hann_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_nuttall_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signbit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sinc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_softmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_stack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_std_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_topk_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__flash_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_transpose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_trapezoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unique_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_zeros_cpu, test/test_ops.py::TestCommonCPU::test_errors___radd___cpu, test/test_ops.py::TestCommonCPU::test_errors_amax_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_errors_dot_cpu, test/test_ops.py::TestCommonCPU::test_errors_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_flipud_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmax_cpu, test/test_ops.py::TestCommonCPU::test_errors_histogramdd_cpu, test/test_ops.py::TestCommonCPU::test_errors_index_add_cpu, test/test_ops.py::TestCommonCPU::test_errors_kthvalue_cpu, test/test_ops.py::TestCommonCPU::test_errors_linalg_lstsq_grad_oriented_cpu, test/test_ops.py::TestCommonCPU::test_errors_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_errors_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_errors_lt_cpu, test/test_ops.py::TestCommonCPU::test_errors_maximum_cpu, test/test_ops.py::TestCommonCPU::test_errors_min_binary_cpu, test/test_ops.py::TestCommonCPU::test_errors_narrow_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_conv3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_rms_norm_cpu, test/test_ops.py::TestCommonCPU::test_errors_ormqr_cpu, test/test_ops.py::TestCommonCPU::test_errors_scatter_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_bartlett_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_blackman_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_hamming_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_kaiser_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_randn_like_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_errors_tril_cpu, test/test_ops.py::TestCommonCPU::test_errors_vdot_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_column_stack_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_dot_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_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eigvals_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_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_norm_subgradients_at_zero_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_tensorsolve_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_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log_softmax_with_dtype_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_nextafter_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_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmv_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cartesian_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_char_cpu_int64, 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_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagflat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_digamma_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_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gradient_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_var_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_with_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cosine_embedding_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_constant_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pixel_unshuffle_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_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_outer_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_searchsorted_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_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_hann_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_list_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_addr_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_bool_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_combinations_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_float_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_gather_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isposinf_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_logit_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_min_reduction_with_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_native_dropout_backward_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ne_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_cosine_embedding_loss_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_permute_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_select_scatter_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_hermite_polynomial_he_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_modified_bessel_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_scaled_modified_bessel_k1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_xlog1py_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_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unfold_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unique_consecutive_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsqueeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_H_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___radd___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rpow___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__chunk_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_allclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_max_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_constant_pad_nd_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagflat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_einsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft2_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_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_put_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_2inputs_2outputs_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_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_le_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_singular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_and_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_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_msort_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nanmedian_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_max_pool1d_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_conv3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_linear_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool2d_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_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_negative_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_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_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_outer_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pca_lowrank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize__cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_y0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_y1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_he_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_legendre_polynomial_p_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_numpy_ref_aminmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_argwhere_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_equal_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorsolve_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_searchsorted_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_general_cosine_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_general_hamming_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tensor_split_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_tile_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_view_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_view_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_view_copy_cpu_int64, 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_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_arange_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_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cosh_cpu_float32, 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_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_group_norm_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_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_deg2rad_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_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_imag_cpu_complex64, 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_integral_dtype__refs_prod_cpu_int16, test/test_ops.py::TestCommonCPU::test_out_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_embedding_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_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_alias_copy_cpu_float32, 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_bmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_complex_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_cumsum_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_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_inner_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigvalsh_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_pinv_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linspace_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_masked_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mvlgamma_mvlgamma_p_5_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_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_fro_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_outer_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_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_true_divide_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_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_out_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning_H_cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rxor___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_float_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_allclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_partial_views_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ceil_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_dstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_equal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ge_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_hypot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isreal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_svdvals_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logaddexp2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logspace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_hardtanh_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_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_pow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sgn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_signbit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unfold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__segment_reduce_offsets_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__unsafe_masked_index_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_all_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_angle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_any_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bernoulli_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_clamp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_eq_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_flatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_float_power_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_frexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ge_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_gt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_int_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_item_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lerp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_pinv_hermitian_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_pinv_singular_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_slogdet_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_tensorsolve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log10_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logdet_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_argmax_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_masked_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_median_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_binary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mvlgamma_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mvlgamma_mvlgamma_p_5_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nan_to_num_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_narrow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_feature_alpha_dropout_without_train_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_fractional_max_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_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_bicubic_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_kl_div_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_local_response_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_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_max_unpool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_mish_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_constant_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_prelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_relu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_rrelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_upsample_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_norm_nuc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_pca_lowrank_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rand_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_remainder_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_repeat_interleave_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_hamming_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signbit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_erfcx_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_legendre_polynomial_p_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_triangular_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tril_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unsqueeze_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_vdot_cpu, test/test_ops.py::TestCommonCPU::test_out_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float___rdiv___cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int32, 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_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_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_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int8, 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_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_int16, 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_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_int16, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_bfloat16, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_complex32, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_float32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_bfloat16, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int32, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_bool, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_complex64, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_float32, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_float16, 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_bool, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_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_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_complex128, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_uint8, 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_list_of_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_uint8, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nextafter_cpu_float16, 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_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_leaky_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_uint8, 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_smooth_l1_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_float16, 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_tanhshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_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_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_float16, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_float32, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_int32, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_uint8, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_float32, 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_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_bfloat16, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex32, 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_unbind_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_float16, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_amax_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_and_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_floor_rounding_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_exponential_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_hypot_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_normal__in_place_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_reshape_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_rsub_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_t_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_triu_cpu, 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_T_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_float64, 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_bool, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_int8, 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_double_executor_aten_cpu_float64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_complex128, 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_float32, 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_float16, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int8, 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_all_executor_aten_cpu_int64, 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_allclose_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_complex128, 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_complex128, 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_1d_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int32, 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_or_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_block_diag_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_float16, 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_ceil_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_float16, 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_clone_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_complex128, 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_complex64, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_float64, 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_cumprod_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_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_floor_rounding_executor_aten_cpu_uint8, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_float64, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_bfloat16, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_float64, 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_erfinv_executor_aten_cpu_int8, 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_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_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_float16, 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_exponential_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_complex64, 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_hfft_executor_aten_cpu_float64, 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_int64, 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_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_ifftn_executor_aten_cpu_float64, 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_ifftshift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_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_rfft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_uint8, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_complex128, 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_hstack_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_igammac_executor_aten_cpu_float16, 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_imag_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_complex32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_int32, 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_isfinite_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_float64, 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_uint8, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int64, 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_log1p_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_normal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_complex64, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_int32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_float16, 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_meshgrid_variadic_tensors_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_float16, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_native_layer_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_complex128, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_bool, 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_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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_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_channel_shuffle_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_huber_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_huber_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_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_log_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mish_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mish_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mse_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_complex64, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_selu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_int32, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_complex64, 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_permute_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_float32, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_float16, 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_randn_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_uint8, 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_complex128, 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_float32, 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_float32, 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_repeat_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_int8, 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_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_int16, 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_signbit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_int32, 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_entr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int8, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_int16, 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_int8, 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_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int32, 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_squeeze_multiple_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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_int32, 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_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_bool, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int64, 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_tanh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_complex128, 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_transpose_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_int64, 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_triu_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_indices_executor_aten_cpu_int32, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_int64, 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_unflatten_executor_aten_cpu_int32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_float16, 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_xlogy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_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_bool_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_bfloat16, 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_byte_cpu_int16, 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_bfloat16, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float16, 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_int32, 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_chalf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_complex_cpu_float64, 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_float_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_float64, 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_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_abs_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int8, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_int8, 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_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int8, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int16, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_bfloat16, 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_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_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_float32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int8, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_complex64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_float32, 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_fftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_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_ifft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_bool, 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_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_int32, 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_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_floor_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float16, 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_fmin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frac_cpu_float64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igammac_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_complex64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_int16, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int16, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_bool, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svdvals_cpu_float64, 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_float16, 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_linalg_vector_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int64, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int16, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_int8, 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_logaddexp2_cpu_bfloat16, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_bfloat16, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_uint8, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_bfloat16, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_uint8, 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_celu_cpu_float16, 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_celu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_bool, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_float16, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_int16, 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_pixel_shuffle_cpu_complex64, 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_prelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int16, 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_int32, 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_threshold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_uint8, 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_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_int8, 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_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_int64, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_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_sinc_cpu_int64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int32, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_bfloat16, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int32, 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_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int32, 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_multigammaln_mvlgamma_p_1_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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_float32, 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_ndtri_cpu_uint8, 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_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_int64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_int8, 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_t_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_bfloat16, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int64, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_float32, 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_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_float64, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int64, 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_bfloat16, 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_bfloat16, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_complex128, 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_bfloat16_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_complex128, 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_cfloat_cpu_int32, 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_char_cpu_float64, 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_float_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_float32, 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_any_cpu_float32, 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_cpu_int8, 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_as_strided_scatter_cpu_int64, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_float32, 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_atan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int8, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_int32, 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_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_right_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_float32, 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_chunk_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_bfloat16, 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_int32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_float32, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_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_dot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_int32, 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_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_float32, 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_equal_cpu_int32, 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_erfc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int8, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int8, 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_expm1_cpu_bool, 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_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float8_e5m2, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_complex128, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_int16, 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_hfftn_cpu_int16, 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_ifftshift_cpu_bool, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_int64, 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_rfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_int8, 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_flipud_cpu_float16, 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_fmax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_int32, 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_fmin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_uint8, 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_int16, 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_gt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_float16, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_float64, 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_float32, 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_float64, 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_copy_cpu_complex64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_int64, 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_isclose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int32, 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_float64, 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_isnan_cpu_uint8, 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_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_complex128, 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_diagonal_cpu_int64, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_int8, 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_bfloat16, 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_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_float64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_int32, 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_logspace_cpu_bfloat16, 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_masked_fill_cpu_complex128, 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_maximum_cpu_int8, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_int64, 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_meshgrid_variadic_tensors_cpu_uint8, 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_mul_cpu_int16, 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_native_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_complex64, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_float32, 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_nn_functional_gelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_group_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_float16, 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_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_int16, 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_margin_ranking_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_int16, 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_tanhshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_number_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_complex128, 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_positive_cpu_int8, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_complex64, 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_rad2deg_cpu_int16, 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_real_cpu_float64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_bool, 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_complex64, 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_int32, 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_rsqrt_cpu_complex128, 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_complex128, 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_select_scatter_cpu_uint8, 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_sigmoid_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_float32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_float16, 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_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_float16, 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_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, 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_multigammaln_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_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_square_cpu_bfloat16, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int64, 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_float16, 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_int32, 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_complex64, 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_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int32, 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_t_copy_cpu_uint8, 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_take_along_dim_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_complex64, 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_int64, 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_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_float16, 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_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmatmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_decomposed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_householder_product_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vander_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mvlgamma_mvlgamma_p_3_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_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_max_pool3d_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_conv_transpose2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_linear_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_reflect_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_tanhshrink_cpu_float32, 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_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_put_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randn_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resize_as__cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_round_decimals_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rsub_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_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_blackman_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_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vstack_cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_native_layer_norm_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_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rsub___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__batch_norm_with_update_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_addmv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_exp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_igamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_int_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_max_pool1d_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_ctc_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nonzero_static_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_normal_in_place_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_pinverse_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_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_quantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_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_blackman_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ihfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_embedding_bag_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_leaky_relu_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_max_pool3d_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_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_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_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_hann_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_y0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_log_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bool_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_clone_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dstack_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_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isreal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_item_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_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logaddexp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mm_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_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_bicubic_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_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_short_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_ndtri_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sum_to_size_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_to_sparse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_amin_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_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_eq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_fftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_histogramdd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_igamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isreal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_pinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_and_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_neg_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_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_cross_entropy_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_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_pool2d_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_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_reflect_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_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nonzero_static_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_zeros_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___getitem___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_int_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_addr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_constant_pad_nd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_eq_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_expand_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_ifft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_index_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_lerp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linspace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log10_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_narrow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_ne_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_reciprocal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_roll_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sgn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sinc_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_square_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_t_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unbind_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_abs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_argwhere_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_as_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_conj_physical_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_einsum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_eq_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_hfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifftshift_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_flip_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fliplr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_put_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_diagonal_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_ldl_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lstsq_grad_oriented_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_power_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_multi_dot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_pinv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_tensorinv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_vecdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logaddexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_matmul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mm_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_pad_replicate_negative_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_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_real_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_t_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tril_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_true_divide_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unbind_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unflatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_vdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_zero__cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_T_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rdiv___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rmul___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_double_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_int_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_addr_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_as_strided_partial_views_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_cat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_conj_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_cumsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diag_embed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diagonal_scatter_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_fft_fft_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_hstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_lerp_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_log_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_or_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_logspace_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_pow_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_renorm_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_special_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_t_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unbind_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_var_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_var_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addcdiv_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_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_as_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_bool_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_char_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diag_embed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dist_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_exp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_expand_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_irfftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_put_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cross_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_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logical_not_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_cumprod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_matmul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_movedim_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ne_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_new_empty_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_pow_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resolve_neg_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_rsqrt_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_scatter_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_std_unbiased_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_t_copy_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_tile_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_to_sparse_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_transpose_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_transpose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_triangular_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unfold_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zeros_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_contiguous_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_count_nonzero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_exp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_expm1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_hfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_rfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flipud_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_floor_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_igammac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_lgamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_vector_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log_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_nn_functional_gelu_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_softshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_normal__in_place_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_normal_number_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_pow_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rad2deg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_renorm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_repeat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_entr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sqrt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_tanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_trace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_transpose_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_transpose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_view_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_xlogy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_zeros_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addbmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_allclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_angle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_char_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_clamp_min_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_cumprod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diff_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_permuted_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_exponential_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ihfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_frac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_frexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_igamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_reduce_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_int_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isinf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_unary_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_kthvalue_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lgamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cholesky_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_inv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_inv_ex_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_log_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_long_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_argmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_min_reduction_with_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mode_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nanmean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_cross_entropy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_ctc_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_embedding_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_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_nll_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_normalize_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pad_replicate_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_rms_norm_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_softshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_norm_fro_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_normal_in_place_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_normal_number_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_permute_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polar_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_quantile_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rot90_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_general_hamming_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_kaiser_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sinc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_entr_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_split_with_sizes_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_squeeze_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_squeeze_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_std_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tile_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tril_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_true_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unflatten_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unfold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_uniform_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unique_consecutive_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsqueeze_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsqueeze_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_cdouble_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_char_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_complex_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_alias_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_amin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_not_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_cauchy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_chunk_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_cumsum__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_diag_embed_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_diagonal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_eq__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_eq_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_erfc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ifft_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_irfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_frac_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ge__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_igammac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_fill__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_is_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isnan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isposinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mul__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_narrow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_ones_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_glu_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_mish_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_reshape_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rsqrt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rtruediv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sin__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_xlog1py_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_triu_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_var_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_as_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_acos_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_alias_copy_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_broadcast_tensors_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_clamp_min__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_copysign__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_copysign_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diagonal_scatter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_digamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_fftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_frac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_full_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_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_isnan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_istft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lerp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_not_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nan_to_num__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ne__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_empty_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_full_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_celu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_elu__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_relu6_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_softmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_reciprocal__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_roll_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rtruediv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_i0e_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_zeta_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_squeeze_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tril__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_trunc__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_view_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_vsplit_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rand___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_all_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atleast_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__chunk_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bincount_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_not_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_conj_physical_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_empty_permuted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_full_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_int_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_inv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_empty_strided_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_nextafter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_avg_pool3d_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_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_feature_alpha_dropout_without_train_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_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hardswish_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_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_mish_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_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randn_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_nuttall_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_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_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_zeros_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_and_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_not_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addcmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_dist_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_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_frac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_hsplit_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_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_matrix_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lu_solve_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_masked_softmin_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_pool2d_with_indices_backward_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_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_area_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_interpolate_trilinear_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_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_triplet_margin_with_distance_loss_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_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_pow_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_reciprocal_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_repeat_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_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cartesian_prod_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_column_stack_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_cov_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_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_erfc_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_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_i0_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_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_ldexp_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_cholesky_ex_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_ex_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_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_cumsum_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_masked_select_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_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_resolve_conj_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_sign_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_squeeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_stft_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_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_full_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eigh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_cumsum_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_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_layer_norm_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_unpool1d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_airy_ai_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_zeta_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__chunk_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addcdiv_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_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_right_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_block_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_istft_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ldexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eigvalsh_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_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logical_xor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_linear_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_silu_complex_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randn_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_reshape_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_searchsorted_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_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_std_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sum_to_size_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_take_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_to_sparse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_transpose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unravel_index_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_complex128, 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_ones_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_uint8, test/test_ops.py::TestTagsCPU::test_tags_T_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rdiv___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___ror___cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_char_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_or_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_chunk_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diag_embed_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_equal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expand_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_rfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_heaviside_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_hypot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logaddexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_not_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logical_xor_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_movedim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_mul_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_pairwise_distance_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_permute_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_randn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_ravel_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_rot90_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_rsqrt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sinc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_std_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_take_along_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tril_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_true_divide_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_view_as_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_view_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_where_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addcdiv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argwhere_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cholesky_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_combinations_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_conj_physical_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cumsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diagflat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diff_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_einsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_erf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expand_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expm1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_hfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_rfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_flatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_frac_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_gcd_cpu_int64, 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_igamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_put_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_reduce_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_binary_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_inv_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_factor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_vecdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_vector_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logaddexp2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_xor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_median_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nan_to_num_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nansum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_new_zeros_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_embedding_bag_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_grid_sample_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_permute_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_positive_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_rad2deg_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_repeat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signbit_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_modified_bessel_i1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_xlog1py_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_std_mean_unbiased_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_svd_lowrank_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unfold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_unique_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_var_cpu_float32 2025-06-01T23:31:17.3520796Z 2025-06-01T23:31:22.1670639Z Running cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 ... [2025-06-01 23:31:22.166808] 2025-06-01T23:31:22.1671472Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:31:22.1680248Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'cpp_extensions/python_agnostic_extension/test/test_python_agnostic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:31:22.167436] 2025-06-01T23:31:27.1683126Z 2025-06-01T23:31:27.1684764Z cpp_extensions/python_agnostic_extension/test/test_python_agnostic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp_extensions.python_agnostic_extension.test.test_python_agnostic_1.1_49217986e163559d_.log 2025-06-01T23:31:27.1685980Z Running 0 items in this shard: 2025-06-01T23:31:27.1686174Z 2025-06-01T23:31:31.8051106Z Running dynamo/test_guard_serialization 1/1 ... [2025-06-01 23:31:31.804095] 2025-06-01T23:31:31.8051717Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:31:31.8058242Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_guard_serialization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:31:31.804095] 2025-06-01T23:31:42.0657861Z 2025-06-01T23:31:42.0658879Z dynamo/test_guard_serialization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_guard_serialization_1.1_c7058981fc7c1b91_.log 2025-06-01T23:31:42.0659621Z 2025-06-01T23:31:46.8849623Z Running dynamo/test_unittest 1/1 ... [2025-06-01 23:31:46.875632] 2025-06-01T23:31:46.8850110Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:31:46.8856000Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unittest.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:31:46.875632] 2025-06-01T23:31:52.1566113Z 2025-06-01T23:31:52.1567608Z dynamo/test_unittest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unittest_1.1_474d5970f7be57e5_.log 2025-06-01T23:31:52.1568555Z 2025-06-01T23:31:57.3141043Z Running inductor/test_alignment 1/1 ... [2025-06-01 23:31:57.313527] 2025-06-01T23:31:57.3141956Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:31:57.3152005Z 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-06-01 23:31:57.314825] 2025-06-01T23:32:05.4662721Z 2025-06-01T23:32:05.4664160Z test_ops 7/8 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_7.8_363378162d4506db_.log 2025-06-01T23:32:05.7172516Z Running 4287 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rxor___cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_contiguous_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_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_zeros_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_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_atleast_2d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_char_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_empty_like_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_imag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_masked_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_narrow_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_randn_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_ravel_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_reshape_as_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_split_with_sizes_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_half_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_int_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_long_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_polar_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_short_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_acos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_conj_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_constant_pad_nd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_expand_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_frexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_i0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_meshgrid_variadic_tensors_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_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_leaky_relu_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_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_positive_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ravel_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_signbit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sinc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sinh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_i0e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_std_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tril_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unbind_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addbmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_aminmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_arange_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_asinh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atan_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bincount_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_clamp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumulative_trapezoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_erf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_erfinv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_exp2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_expand_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_exponential_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_full_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_igamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_select_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_inner_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_istft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_binary_return_by_ref_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_householder_product_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_ldl_factor_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_factor_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_not_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_long_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mH_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_normalize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_std_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_matmul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_maximum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_median_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_multinomial_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mvlgamma_mvlgamma_p_5_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_zeros_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cosine_similarity_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_embedding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardsigmoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_area_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_nearest-exact_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_linear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool2d_grad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multi_head_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_one_hot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_reflect_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_rms_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_scaled_dot_product_attention_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_selu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_normal_in_place_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ones_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polygamma_polygamma_n_1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_randn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_repeat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_roll_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_exponential_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_i1e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_scaled_modified_bessel_k1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_triangular_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_trunc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unbind_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unfold_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unique_consecutive_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unsafe_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_errors___rmod___cpu, test/test_ops.py::TestCommonCPU::test_errors___rpow___cpu, test/test_ops.py::TestCommonCPU::test_errors_amin_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_errors_gather_cpu, test/test_ops.py::TestCommonCPU::test_errors_gradient_cpu, test/test_ops.py::TestCommonCPU::test_errors_item_cpu, test/test_ops.py::TestCommonCPU::test_errors_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_errors_max_binary_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_max_pool3d_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_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_pow_cpu, test/test_ops.py::TestCommonCPU::test_errors_scatter_add_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout4_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_u_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_meta_consistency_out_dtype_mismatch_add_cpu_float32, 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_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cumprod_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_deg2rad_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_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_heaviside_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_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nanmean_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_2_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_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_scatter_reduce_amin_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_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tensordot_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_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__unsafe_masked_index_put_accumulate_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_clamp_min_cpu_float32, 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_corrcoef_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cov_cpu_int64, 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_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_add_cpu_int64, 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_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_isnan_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_minimum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_1_cpu_float32, 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_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_bilinear_cpu_int64, 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_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv3d_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_cosine_similarity_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_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardtanh_cpu_float32, 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_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resize__cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scalar_tensor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_laguerre_polynomial_l_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_topk_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unique_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_vstack_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___rdiv___cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__chunk_cat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__unsafe_masked_index_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_alias_copy_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_as_strided_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atleast_2d_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_block_diag_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_clamp_min_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cummax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cummin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diagonal_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_permuted_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_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_hfft_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_fft_irfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_flip_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_isnan_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isneginf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log10_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_scatter_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_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_full_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_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_repeat_interleave_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_reduce_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_short_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_bessel_y0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_i1e_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_modified_bessel_k0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_triu_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsafe_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rpow___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rsub___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_decomposed_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_baddbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bincount_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cartesian_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_corrcoef_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagflat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_einsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cond_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eig_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matrix_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_max_pool2d_cpu_float32, 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_channel_shuffle_cpu_int64, 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_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose2d_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_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_nearest_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_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_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_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_nuc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_4_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_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_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sparse_sampled_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_sparse_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_numpy_ref_addbmm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_cat_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vecdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose3d_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_bartlett_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_cosine_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_hamming_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_hann_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_cpu_complex128, test/test_ops.py::TestCommonCPU::test_out_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_out___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_floor_divide_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_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_layer_norm_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_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_renorm_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_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_inverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_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_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expm1_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_hfftn_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_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fmax_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_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_gather_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_add_cpu_complex64, 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_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_householder_product_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lstsq_cpu_complex64, 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_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_max_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ormqr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_amax_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_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_t_copy_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_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_resize_as__cpu_float32, 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_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_warning___ror___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rsub___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_acosh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_all_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_as_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atleast_1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_copysign_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_exp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_istft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_mul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pixel_shuffle_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_softmin_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_permute_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_remainder_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_repeat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i0e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_multigammaln_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_squeeze_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_tanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_trace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_true_divide_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_view_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_vstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__softmax_backward_data_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__unsafe_masked_index_put_accumulate_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_allclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argsort_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_copy_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_chunk_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_conj_physical_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cross_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_digamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_flipud_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_gather_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_histogram_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_histogramdd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_hypot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_igammac_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_reduce_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isneginf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cond_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_matrix_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_pinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_solve_triangular_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_svd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_tensorinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logcumsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_softmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nansum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ne_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv_transpose3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_dropout3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_grid_sample_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_leaky_relu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool2d_grad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_circular_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_replicate_negative_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_pinverse_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ravel_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_cosine_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_exponential_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sparse_mm_reduce_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_modified_bessel_i0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_polygamma_special_polygamma_n_0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_shifted_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_square_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_stft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_svd_lowrank_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tensor_split_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_to_sparse_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unfold_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_zeros_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int16, 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_erf_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_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_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int64, 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_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_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_polygamma_polygamma_n_2_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_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_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_uint8, 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_hermite_polynomial_h_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_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_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_T_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_complex64, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_uint8, 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_cdouble_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int16, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_float32, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_float32, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_int32, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cauchy_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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_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_constant_pad_nd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_uint8, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_bfloat16, 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_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_float64, 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_int16, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int16, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int64, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_istft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int32, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_native_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_bfloat16, 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_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_bfloat16, 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_channel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_int64, 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_glu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_group_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_int8, 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_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_pixel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_int32, 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_prelu_cpu_float16, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softplus_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_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_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_float16, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int32, 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_signbit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_int16, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_bool, 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_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_int8, 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_int64, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_complex64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_complex64, 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_tanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_add_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_gt_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_hstack_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logspace_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_mul_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_narrow_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_renorm_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_sub_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_tril_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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_float32, 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_float32, 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_float16, 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_cfloat_executor_aten_cpu_int32, 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_char_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_bool, 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_uint8, 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_half_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int32, 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_int_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int8, 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_acos_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_uint8, 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_atan_executor_aten_cpu_float16, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_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_tensors_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int8, 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_complex128, 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_int32, 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_cauchy_executor_aten_cpu_float64, 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_ceil_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_float64, 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_max_executor_aten_cpu_float16, 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_clamp_min_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int16, 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_complex64, 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_cosh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_complex64, 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_diag_embed_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int8, 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_float64, 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_complex128, 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_div_floor_rounding_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_bfloat16, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_float16, 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_like_executor_aten_cpu_int16, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_float64, 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_expand_as_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_bool, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_bool, 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_fftshift_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_complex64, 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_ihfft2_executor_aten_cpu_bool, 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_irfftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_bool, 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_int64, 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_fill_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_bfloat16, 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_flip_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_uint8, 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_frac_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_int32, 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_hsplit_executor_aten_cpu_bool, 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_hypot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_float32, 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_float64, 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_index_fill_executor_aten_cpu_int16, 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_isfinite_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_float64, 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_isreal_executor_aten_cpu_float32, 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_isreal_executor_aten_cpu_int64, 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_int8, 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_le_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_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_linalg_cross_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svd_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_linspace_executor_aten_cpu_float64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_bool, 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_log2_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_float32, 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_float64, 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_logaddexp2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_float64, 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_xor_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_int16, 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_int16, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_bfloat16, 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_complex32, 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_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_float32, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_dropout_executor_aten_cpu_bfloat16, 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_dropout_executor_aten_cpu_float64, 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_l1_loss_executor_aten_cpu_float64, 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_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_float32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int8, 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_float16, 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_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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_bfloat16, 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_softmin_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_float32, 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_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_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_pow_executor_aten_cpu_complex64, 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_prod_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_complex32, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_int64, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_uint8, 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_rsub_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_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_complex32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_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_float32, 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_log_softmax_with_dtype_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_multigammaln_mvlgamma_p_1_executor_aten_cpu_float16, 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_3_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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int16, 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_xlog1py_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_int32, 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_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_square_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_complex64, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_complex128, 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_take_along_dim_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_complex64, 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_float64, 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_int64, 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_copy_executor_aten_cpu_int8, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_float64, 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_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int8, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_bfloat16, 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_float16, 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_complex64, 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_cdouble_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_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_double_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_float64, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_int32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_bfloat16, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_complex64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int32, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_int64, 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_contiguous_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_complex64, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_float64, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int8, 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_float64, 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_dot_cpu_bfloat16, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_bfloat16, 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_exp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_uint8, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int64, 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_irfft_cpu_int8, 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_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int8, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int8, 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_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_float32, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_int16, 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_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int16, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svdvals_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int8, 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_linspace_tensor_overload_cpu_uint8, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_int32, 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_int64, 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_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_int32, 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_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_float32, 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_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_float32, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_complex64, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_bool, 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_meshgrid_list_of_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_complex128, 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_float16, 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_ne_cpu_complex128, 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_int8, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int64, 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_int16, 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_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_elu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_float64, 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_float16, 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_mish_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_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_int16, 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_relu6_cpu_int32, 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_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_uint8, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_number_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_float32, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_complex64, 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_int16, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_int64, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_int32, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int32, 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_entr_cpu_int16, 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_i1e_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_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_int32, 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_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_int16, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_complex128, 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_uint8, 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_t_copy_cpu_complex128, 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_bfloat16, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_complex128, 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_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_float64, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_float16, 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_bfloat16, 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_copy_cpu_uint8, 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_float16, 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_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_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_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_vsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_int32, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int32, 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_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_int64, 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_chalf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_uint8, 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_float_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_uint8, 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_float64, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_float64, 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_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_bool, 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_float32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_float16, 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_arange_cpu_float64, 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_partial_views_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_bool, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_bool, 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_cosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_int8, 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_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_count_nonzero_cpu_float16, 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_cumprod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_float64, 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_deg2rad_cpu_uint8, 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_embed_cpu_bool, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_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_bool, 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_dstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_int16, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_bool, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_complex64, 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_float32, 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_uint8, 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_hfft_cpu_uint8, 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_hfftn_cpu_uint8, 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_ifft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int16, 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_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_int8, 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_fft_rfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_int32, 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_flip_cpu_bfloat16, 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_fliplr_cpu_int8, 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_int8, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_uint8, 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_floor_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_float16, 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_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frac_cpu_float64, 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_geometric_cpu_bfloat16, 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_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int32, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hypot_cpu_float64, 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_igamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_complex32, 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_isclose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_float16, 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_float64, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lerp_cpu_complex128, 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_diagonal_cpu_complex32, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_int32, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_int8, 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_int16, 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_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_bfloat16, 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_bfloat16, 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_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_bfloat16, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_complex128, 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_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_complex32, 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_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_int8, 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_nan_to_num_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_int8, 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_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_celu_cpu_float32, 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_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_float64, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mish_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_float64, 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_softmin_with_dtype_cpu_float16, 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_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_int16, 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_nn_functional_triplet_margin_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_uint8, 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_complex64, 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_normal_number_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int16, 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_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_float64, 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_prod_cpu_complex128, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_int8, 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_rot90_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_round_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int8, 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_sigmoid_cpu_int64, 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_sigmoid_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_int8, 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_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_complex128, 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_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_softmax_with_dtype_cpu_int8, 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_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_float32, 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_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_float16, 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_multigammaln_mvlgamma_p_3_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_float64, 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_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_float16, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_bool, 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_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_complex64, 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_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_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_std_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_int32, 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_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_uint8, 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_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_float16, 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_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_int64, 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_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_uint8, 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_unfold_cpu_int32, 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_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_complex64, 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_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int16, 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_vstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_bool, 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_uint8, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___getitem___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_baddbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cartesian_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_combinations_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_copysign_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_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_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_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_unary_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cholesky_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eig_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvalsh_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_ldl_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log1p_cpu_complex64, 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_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_unpack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_minimum_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_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_native_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_zeros_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_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose1d_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_transpose3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_dropout3d_cpu_float32, 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_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_smooth_l1_loss_cpu_float32, 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_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rand_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resolve_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_slice_scatter_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_chebyshev_polynomial_u_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_i1_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_split_with_sizes_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_square_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tensor_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unique_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_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_angle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lstsq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_permute_copy_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_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addmm_decomposed_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_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagonal_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_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_item_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_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cond_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nextafter_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_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_short_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unbind_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_uniform_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unique_consecutive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_where_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_floor_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_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_and_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_argmin_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_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nextafter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_j1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_i1_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_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_squeeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_T_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_floor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ne_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_permute_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_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resize_as__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_bessel_y0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_zeros_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_aminmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_eye_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isinf_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_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nan_to_num_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_native_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_group_norm_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_linear_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_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softsign_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_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_j1_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_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tensor_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unique_consecutive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_view_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_xlogy_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___radd___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view___rdiv___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view___rmatmul___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view___rsub___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_short_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_addcmul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_conj_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cumprod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_empty_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_expand_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_expand_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_hfft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isclose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isreal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_item_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_norm_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_logical_or_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_normal__in_place_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_permute_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_pow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_real_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_rsqrt_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_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_stft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_alias_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cartesian_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cholesky_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_combinations_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cosh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_count_nonzero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_empty_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_hstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_index_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_inner_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cholesky_ex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cond_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigvalsh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_inv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_pinv_singular_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_svd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logdet_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_var_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_narrow_copy_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_rms_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_pca_lowrank_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_put_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_select_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_slice_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_split_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sqrt_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_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_take_along_dim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_trapz_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unbind_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unfold_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_vstack_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_addcdiv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diagonal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_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_fft_ifftn_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_isreal_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_log10_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log1p_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_movedim_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_ones_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_ones_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_permute_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_positive_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_rsqrt_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_square_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_vsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_abs_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addmm_decomposed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addmv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_all_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atleast_1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_bfloat16_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_block_diag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cholesky_inverse_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_column_stack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_combinations_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_corrcoef_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_diagflat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_exp2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_expm1_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_hfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_flipud_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_full_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_half_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_hsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_ldl_factor_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_tensorsolve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_vander_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linspace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_log10_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logspace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_long_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mT_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mul_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_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_linear_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ones_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_pinverse_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_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_resize_as__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_scalar_tensor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sin_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_square_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_take_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tensor_split_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tril_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_triu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unsqueeze_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_as_real_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_vsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zero__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zeros_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmod___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmul___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_bfloat16_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_char_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_double_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_half_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_addcmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_alias_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_block_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_conj_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_constant_pad_nd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_eq_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fmod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_hypot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_svdvals_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log1p_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logical_and_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_mean_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_nn_functional_celu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_randn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_real_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_reciprocal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sinc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_erfcx_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_logit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_squeeze_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_vdot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_vstack_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_alias_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_broadcast_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_byte_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cartesian_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ceil_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_conj_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_constant_pad_nd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_double_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifftshift_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_rfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fmod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_full_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ge_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_half_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_histogramdd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isfinite_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_binary_return_by_ref_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_det_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_eigvals_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_ldl_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_factor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_vander_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log_softmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logsumexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mH_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_argmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_cumprod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_var_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_max_reduction_no_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_minimum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_msort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_multinomial_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nan_to_num_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_narrow_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_native_dropout_backward_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_neg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_avg_pool1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_instance_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_linear_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_logsigmoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_selu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_upsample_bilinear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_upsample_nearest_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_permute_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_4_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rand_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_randint_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_renorm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_round_decimals_neg_3_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rsub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scalar_tensor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_amin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sgn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_exponential_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_gaussian_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_general_cosine_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_j0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_j1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_y1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_v_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_i1e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_std_mean_unbiased_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_trunc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unbind_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_as_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_where_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_xlogy_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_addcmul_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_alias_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atan__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_bitwise_or_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_block_diag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ceil__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clamp_max_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clone_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_conj_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_contiguous_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_diagonal_scatter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_empty_permuted_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_expand_as_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_rfft2_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_floor_divide_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_gcd_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_gt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_gt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_igamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_imag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lcm__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_logspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_neg__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_full_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_normal_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_randn_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_rfloordiv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rsub_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sin_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_multigammaln_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_unfold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_cfloat_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_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_amax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atleast_1d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_left_shift__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cumsum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diagonal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_equal_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_expand_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_hfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_irfft_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_fmin_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_lgamma__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_normal_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_mul_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_hardshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_mish__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_threshold__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_threshold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_pow_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_prod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rad2deg_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_randn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_remainder_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rsqrt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rsqrt_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_sigmoid_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_signbit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_squeeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_stft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sum_to_size_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_tanh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_transpose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tril_indices_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_unsqueeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_var_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_vstack_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rand___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rxor___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_atleast_1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_left_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_broadcast_shapes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_char_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_count_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_eye_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_grid_sampler_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_imag_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lcm_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logical_not_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_empty_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_elu_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_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_selu_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_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_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ones_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_vsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_xor_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_count_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_H_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_amin_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_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_bernoulli_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_clamp_max_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_cummax_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_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_rfft2_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_flipud_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_hypot_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_index_copy_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_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_det_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_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_median_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_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_binary_cross_entropy_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_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_mish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rmod___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__unsafe_masked_index_put_accumulate_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_atleast_1d_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_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cfloat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cholesky_inverse_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_conj_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_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dot_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_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_rfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mean_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_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_avg_pool2d_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_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_dropout3d_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_gelu_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_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_replicate_negative_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_nn_functional_triplet_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_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_pinverse_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_polygamma_polygamma_n_4_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_round_decimals_neg_3_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_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sparse_sampled_addmm_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_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_permuted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_rfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_gcd_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_isreal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logical_and_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nextafter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv_transpose1d_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_feature_alpha_dropout_with_train_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_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_linear_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_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_selu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randn_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resize_as__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_short_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signbit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_bessel_y0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_triu_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_acos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_and_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_heaviside_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_put_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_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logical_and_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_long_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_native_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ne_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_avg_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_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_bilinear_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_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_mish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_mse_loss_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_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_selu_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_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ones_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randint_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scalar_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_airy_ai_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_bessel_y0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_chebyshev_polynomial_t_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_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_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_arange_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_int16, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_float_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_half_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_polar_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_short_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_abs_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_acos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_all_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_conj_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cumsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_digamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_dot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expand_as_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_hfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_flipud_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_floor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_frexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isnan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_masked_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_narrow_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_narrow_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_layer_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_positive_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_round_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_rsub_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sinh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_erfcx_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_i1e_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sub_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tanh_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_xlogy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bincount_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_cauchy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cdist_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ceil_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clamp_max_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clone_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_constant_pad_nd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_digamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_erfinv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expand_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_hfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ifftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_irfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_float_power_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_geometric_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_gt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_heaviside_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_i0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_inner_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isposinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_item_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lgamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_cross_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eigh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_and_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_long_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_cumsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_std_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_multinomial_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_narrow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_gelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_glu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_prelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_threshold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nonzero_static_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_permute_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_pow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_randint_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scalar_tensor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sgn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_cosine_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_hann_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_squeeze_multiple_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sub_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_take_along_dim_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tensor_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_topk_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_transpose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_vstack_cpu_float32 2025-06-01T23:32:05.9078105Z 2025-06-01T23:32:09.0663243Z 2025-06-01T23:32:09.0665063Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_5c169b9ccaf7243b_.log 2025-06-01T23:32:09.0666382Z 2025-06-01T23:32:11.0125388Z Running inductor/test_compile_subprocess 1/1 ... [2025-06-01 23:32:11.011969] 2025-06-01T23:32:11.0126341Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:32:11.0133227Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_subprocess.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:32:11.011969] 2025-06-01T23:32:14.5554647Z Running inductor/test_online_softmax 1/1 ... [2025-06-01 23:32:14.547529] 2025-06-01T23:32:14.5555513Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:32:14.5562855Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_online_softmax.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:32:14.547529] 2025-06-01T23:32:22.7407179Z 2025-06-01T23:32:22.7408717Z inductor/test_compile_subprocess 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_subprocess_1.1_6d4ae14a6595b4ab_.log 2025-06-01T23:32:22.7410074Z 2025-06-01T23:32:26.0888739Z 2025-06-01T23:32:26.0889919Z inductor/test_online_softmax 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_online_softmax_1.1_aae3eb90080f2583_.log 2025-06-01T23:32:28.0631852Z 2025-06-01T23:32:28.0632482Z Running inductor/test_subgraph_choice 1/1 ... [2025-06-01 23:32:28.062964] 2025-06-01T23:32:28.0632970Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-06-01T23:32:28.0641243Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_subgraph_choice.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-06-01 23:32:28.063596] 2025-06-01T23:32:38.4708693Z 2025-06-01T23:32:38.4709928Z inductor/test_subgraph_choice 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_subgraph_choice_1.1_36435ade2afe7fc2_.log 2025-06-01T23:32:38.4710838Z 2025-06-01T23:36:14.4615726Z 2025-06-01T23:36:14.4616995Z test_quantization 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_quantization_2.2_f77f468af6e8dd49_.log 2025-06-01T23:36:14.4834959Z Running 647 items in this shard: test/test_quantization.py::TestQuantizedOps::test_adaptive_avg_pool, test/test_quantization.py::TestQuantizedOps::test_adaptive_avg_pool2d_nhwc, test/test_quantization.py::TestQuantizedOps::test_adaptive_avg_pool3d_ndhwc, test/test_quantization.py::TestQuantizedOps::test_add_scalar_relu, test/test_quantization.py::TestQuantizedOps::test_advanced_indexing, test/test_quantization.py::TestQuantizedOps::test_avg_pool2d, test/test_quantization.py::TestQuantizedOps::test_avg_pool3d, test/test_quantization.py::TestQuantizedOps::test_avg_pool3d_nhwc, test/test_quantization.py::TestQuantizedOps::test_batch_norm, test/test_quantization.py::TestQuantizedOps::test_cat, test/test_quantization.py::TestQuantizedOps::test_custom_module_lstm, test/test_quantization.py::TestQuantizedOps::test_custom_module_multi_head_attention, test/test_quantization.py::TestQuantizedOps::test_empty_batch, test/test_quantization.py::TestQuantizedOps::test_hardswish, test/test_quantization.py::TestQuantizedOps::test_hardtanh, test/test_quantization.py::TestQuantizedOps::test_instance_norm, test/test_quantization.py::TestQuantizedOps::test_int8_add_onednn, test/test_quantization.py::TestQuantizedOps::test_interpolate3d, test/test_quantization.py::TestQuantizedOps::test_leaky_relu, test/test_quantization.py::TestQuantizedOps::test_linear_bias_unpack, test/test_quantization.py::TestQuantizedOps::test_max_pool1d, test/test_quantization.py::TestQuantizedOps::test_max_pool2d, test/test_quantization.py::TestQuantizedOps::test_max_pool2d_nhwc, test/test_quantization.py::TestQuantizedOps::test_mean, test/test_quantization.py::TestQuantizedOps::test_qadd_broadcast, test/test_quantization.py::TestQuantizedOps::test_qadd_relu_cudnn, test/test_quantization.py::TestQuantizedOps::test_qadd_relu_cudnn_nhwc, test/test_quantization.py::TestQuantizedOps::test_qadd_relu_different_qparams, test/test_quantization.py::TestQuantizedOps::test_qcelu, test/test_quantization.py::TestQuantizedOps::test_qclamp, test/test_quantization.py::TestQuantizedOps::test_qelu, test/test_quantization.py::TestQuantizedOps::test_qgelu, test/test_quantization.py::TestQuantizedOps::test_qmatmul, test/test_quantization.py::TestQuantizedOps::test_qmul_broadcast, test/test_quantization.py::TestQuantizedOps::test_qprelu, test/test_quantization.py::TestQuantizedOps::test_qrelu6, test/test_quantization.py::TestQuantizedOps::test_qsoftmax, test/test_quantization.py::TestQuantizedOps::test_qtanh, test/test_quantization.py::TestQuantizedOps::test_qthreshold, test/test_quantization.py::TestQuantizedOps::test_qtopk, test/test_quantization.py::TestQuantizedOps::test_std, test/test_quantization.py::TestQNNPackOps::test_hardtanh, test/test_quantization.py::TestQNNPackOps::test_mean, test/test_quantization.py::TestQNNPackOps::test_qnnpack_add, test/test_quantization.py::TestQNNPackOps::test_qnnpack_mul, test/test_quantization.py::TestQNNPackOps::test_qnnpack_relu, test/test_quantization.py::TestQNNPackOps::test_qnnpack_tanh, test/test_quantization.py::TestQuantizedLinear::test_qlinear, test/test_quantization.py::TestQuantizedLinear::test_qlinear_add_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_gelu_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_qnnpack_free_memory_and_unpack, test/test_quantization.py::TestQuantizedLinear::test_qlinear_sum_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_tanh, test/test_quantization.py::TestQuantizedLinear::test_wrapped_quantized_linear_prepacked, test/test_quantization.py::TestQuantizedConv::test_conv_transpose_reorder_issue_onednn, test/test_quantization.py::TestQuantizedConv::test_qconv1d, test/test_quantization.py::TestQuantizedConv::test_qconv1d_cudnn, test/test_quantization.py::TestQuantizedConv::test_qconv1d_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv1d_relu_cudnn, test/test_quantization.py::TestQuantizedConv::test_qconv1d_unpack, test/test_quantization.py::TestQuantizedConv::test_qconv2d_add, test/test_quantization.py::TestQuantizedConv::test_qconv2d_hardtanh_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_relu_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_silu_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_sum_relu_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_unpack, test/test_quantization.py::TestQuantizedConv::test_qconv3d, test/test_quantization.py::TestQuantizedConv::test_qconv_transpose3d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_conv3d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_convtranspose2d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_convtranspose3d, test/test_quantization.py::TestDynamicQuantizedOps::test_qlinear, test/test_quantization.py::TestDynamicQuantizedOps::test_qlstmGRU, test/test_quantization.py::TestDynamicQuantizedOps::test_qrnncell, test/test_quantization.py::TestDynamicQuantizedOps::test_wrapped_fbgemm_linear_fp16, test/test_quantization.py::TestDynamicQuantizedOps::test_wrapped_fbgemm_pack_gemm_matrix_fp16_pt2_compliant, test/test_quantization.py::TestComparatorOps::test_compare_tensor_scalar, test/test_quantization.py::TestPadding::test_reflection_pad1d, test/test_quantization.py::TestPadding::test_reflection_pad2d, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_2d_indices, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_bag_2bit, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_bag_byte, test/test_quantization.py::TestQuantizedFunctionalOps::test_conv2d_api, test/test_quantization.py::TestQuantizedFunctionalOps::test_conv3d_api, test/test_quantization.py::TestQuantizedFunctionalOps::test_grid_sample, test/test_quantization.py::TestQuantizedFunctionalOps::test_relu_api, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_tensor, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_tensor_cachemask_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_fake_quantize_per_channel_affine_scale_dtypes, test/test_quantization.py::TestFakeQuantizeOps::test_fixed_qparams_fq_module, test/test_quantization.py::TestFakeQuantizeOps::test_forward_backward_per_tensor_with_amp, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_channel, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_channel_cachemask_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_tensor, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_tensor_cachemask_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_tensor_cachemask_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_backward_per_channel_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_backward_per_channel_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_forward_per_channel_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_forward_per_channel_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_forward_per_tensor_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_numerical_consistency_per_channel, test/test_quantization.py::TestFakeQuantizeOps::test_numerical_consistency_per_tensor, test/test_quantization.py::TestFusedObsFakeQuant::test_fused_obs_fake_quant_moving_avg, test/test_quantization.py::TestQuantizedTensor::test_choose_qparams_optimized, test/test_quantization.py::TestQuantizedTensor::test_clone, test/test_quantization.py::TestQuantizedTensor::test_compare_per_channel_device_numerics, test/test_quantization.py::TestQuantizedTensor::test_compare_per_tensor_device_numerics, test/test_quantization.py::TestQuantizedTensor::test_cuda_quantization_does_not_pin_memory, test/test_quantization.py::TestQuantizedTensor::test_decomposed_choose_qparams_per_token_asymmetric_backward, test/test_quantization.py::TestQuantizedTensor::test_decomposed_dequantize_per_tensor, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_tensor_bfloat16_input, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_token, test/test_quantization.py::TestQuantizedTensor::test_dequantize_fp16_cpu, test/test_quantization.py::TestQuantizedTensor::test_jit_serialization, test/test_quantization.py::TestQuantizedTensor::test_per_channel_qtensor_creation_cpu, test/test_quantization.py::TestQuantizedTensor::test_per_channel_to_device, test/test_quantization.py::TestQuantizedTensor::test_per_tensor_qtensor_to_memory_format, test/test_quantization.py::TestQuantizedTensor::test_qscheme_pickle, test/test_quantization.py::TestQuantizedTensor::test_qtensor_cpu, test/test_quantization.py::TestQuantizedTensor::test_qtensor_creation, test/test_quantization.py::TestQuantizedTensor::test_qtensor_cuda, test/test_quantization.py::TestQuantizedTensor::test_qtensor_dtypes, test/test_quantization.py::TestQuantizedTensor::test_qtensor_equal, test/test_quantization.py::TestQuantizedTensor::test_qtensor_fill_per_channel_nhwc, test/test_quantization.py::TestQuantizedTensor::test_qtensor_fill_per_tensor_nhwc, test/test_quantization.py::TestQuantizedTensor::test_qtensor_index_put_cuda, test/test_quantization.py::TestQuantizedTensor::test_qtensor_int_repr, test/test_quantization.py::TestQuantizedTensor::test_qtensor_masked_fill_cpu, test/test_quantization.py::TestQuantizedTensor::test_qtensor_per_channel_load_save, test/test_quantization.py::TestQuantizedTensor::test_qtensor_permute, test/test_quantization.py::TestQuantizedTensor::test_qtensor_quant_dequant, test/test_quantization.py::TestQuantizedTensor::test_qtensor_resize, test/test_quantization.py::TestQuantizedTensor::test_qtensor_sub_byte_aligned_cols, test/test_quantization.py::TestQuantizedTensor::test_qtensor_unsqueeze, test/test_quantization.py::TestQuantizedTensor::test_quantize_per_channel_sub_byte, test/test_quantization.py::TestQuantizedTensor::test_torch_qtensor_deepcopy, test/test_quantization.py::TestFakeQuantize::test_fq_module_per_channel, test/test_quantization.py::TestFakeQuantize::test_fq_serializable_per_channel, test/test_quantization.py::TestObserver::test_dynamic_quant_observer, test/test_quantization.py::TestObserver::test_histogram_observer_handle_OOM_due_to_close_min_max_value, test/test_quantization.py::TestObserver::test_histogram_observer_handle_close_to_infinity, test/test_quantization.py::TestObserver::test_histogram_observer_save_load_state_dict, test/test_quantization.py::TestObserver::test_observer_qparams_respects_device_affinity, test/test_quantization.py::TestObserver::test_per_channel_observers_load_state_dict, test/test_quantization.py::TestObserver::test_per_tensor_observers, test/test_quantization.py::TestObserver::test_save_load_state_dict_script, test/test_quantization.py::TestStaticQuantizedModule::test_batch_norm2d, test/test_quantization.py::TestStaticQuantizedModule::test_batch_norm3d, test/test_quantization.py::TestStaticQuantizedModule::test_batch_norm3d_serialization, test/test_quantization.py::TestStaticQuantizedModule::test_conv3d_api, test/test_quantization.py::TestStaticQuantizedModule::test_dropout, test/test_quantization.py::TestStaticQuantizedModule::test_embedding_api, test/test_quantization.py::TestStaticQuantizedModule::test_embedding_bag_api, test/test_quantization.py::TestStaticQuantizedModule::test_linear_relu, test/test_quantization.py::TestStaticQuantizedModule::test_linear_tanh, test/test_quantization.py::TestStaticQuantizedModule::test_relu, test/test_quantization.py::TestStaticQuantizedModule::test_sigmoid, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_conv1d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_conv3d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_convtranspose1d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_convtranspose3d, test/test_quantization.py::TestDynamicQuantizedModule::test_gru_api, test/test_quantization.py::TestDynamicQuantizedModule::test_linear_api, test/test_quantization.py::TestDynamicQuantizedModule::test_lstm_api, test/test_quantization.py::TestReferenceQuantizedModule::test_linear_decomposed_weight_custom_qmin_qmax, test/test_quantization.py::TestReferenceQuantizedModule::test_rnn_cell, test/test_quantization.py::TestRecordHistogramObserver::test_record_observer, test/test_quantization.py::TestHistogramObserver::test_histogram_observer, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_against_reference, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_correct_numel, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_same_inputs, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_single_inputs, test/test_quantization.py::TestDistributed::test_observers_preserve_buffers, test/test_quantization.py::TestDistributed::test_qat_convbn_fused_syncbn_replacement, test/test_quantization.py::TestDistributed::test_qat_data_parallel, test/test_quantization.py::TestFusedObsFakeQuantModule::test_compare_fused_obs_fq_oss_module, test/test_quantization.py::TestFusedObsFakeQuantModule::test_fused_mod_per_channel, test/test_quantization.py::TestFusedObsFakeQuantModule::test_fused_obs_fq_module, test/test_quantization.py::TestBackendConfig::test_backend_config_from_dict, test/test_quantization.py::TestBackendConfig::test_backend_config_set_backend_pattern_config, test/test_quantization.py::TestBackendConfig::test_backend_config_set_name, test/test_quantization.py::TestBackendConfig::test_backend_op_config_add_dtype_config, test/test_quantization.py::TestBackendConfig::test_backend_op_config_from_dict, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_extra_inputs_getter, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_fused_module, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_reference_quantized_module, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_root_module, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_root_node_getter, test/test_quantization.py::TestBackendConfig::test_backend_op_config_to_dict, test/test_quantization.py::TestUtils::test_get_fqn_to_example_inputs_complex_args, test/test_quantization.py::TestUtils::test_get_fqn_to_example_inputs_default_kwargs, test/test_quantization.py::TestUtils::test_quantize_weight_clamping_per_channel, test/test_quantization.py::TestQuantizationDocs::test_quantization_doc_custom, test/test_quantization.py::TestQuantizationDocs::test_quantization_doc_fx, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_activations, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_activations_in_non_leaf_module_list, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_dequant_stub, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_forward_hooks_preserved, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_manual, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_mha_batch_first_attr_is_copied_in_prepare, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_nested3, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_quantized_embedding, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_resnet_base, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_embedding_bag_dynamic, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_linear_relu_fusion, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_nested1, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_nested2, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_nested3, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_quantized_rnn, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_quantized_rnn_cell, test/test_quantization.py::TestQuantizeEagerOps::test_conv_1d, test/test_quantization.py::TestQuantizeEagerOps::test_conv_transpose_3d, test/test_quantization.py::TestQuantizeEagerOps::test_functional_module, test/test_quantization.py::TestQuantizeEagerOps::test_leaky_relu, test/test_quantization.py::TestQuantizeEagerQAT::test_add_scalar_uses_input_qparams, test/test_quantization.py::TestQuantizeEagerQAT::test_conv_linear, test/test_quantization.py::TestQuantizeEagerQAT::test_dropout, test/test_quantization.py::TestQuantizeEagerQAT::test_embedding_qat_qconfig_equal, test/test_quantization.py::TestQuantizeEagerQAT::test_forward_hooks_preserved, test/test_quantization.py::TestQuantizeEagerQAT::test_mul_scalar_uses_input_qparams, test/test_quantization.py::TestQuantizeEagerQAT::test_qat_embedding_bag_errors, test/test_quantization.py::TestQuantizeEagerQAT::test_train_save_load_eval, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_leaky_relu, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_linear_bn_workflow, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_relu, test/test_quantization.py::TestFuseEager::test_fuse_function_customization, test/test_quantization.py::TestFuseEager::test_fuse_module_train, test/test_quantization.py::TestFuseEager::test_fusion_convtranspose_bn_eval, test/test_quantization.py::TestFuseEager::test_fusion_linear_bn_eval, test/test_quantization.py::TestFuseEager::test_fusion_sequential_model_train, test/test_quantization.py::TestModelNumericsEager::test_fake_quant_true_quant_compare, test/test_quantization.py::TestModelNumericsEager::test_float_quant_compare_per_channel, test/test_quantization.py::TestModelNumericsEager::test_weight_only_activation_only_fakequant, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_outputs_conv_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_outputs_functional_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_conv_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_functional_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_lstm_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_submodule_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_weights_conv_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_weights_linear_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_mobilenet_v2, test/test_quantization.py::TestNumericSuiteEager::test_shadow_logger, test/test_quantization.py::TestEqualizeEager::test_converged, test/test_quantization.py::TestEqualizeEager::test_equalize_fused_linearrelu, test/test_quantization.py::TestBiasCorrectionEager::test_linear_chain, test/test_quantization.py::TestFuseFx::test_fuse_conv_bn_add_relu_by_default, test/test_quantization.py::TestFuseFx::test_fuse_conv_bn_add_relu_lowering, test/test_quantization.py::TestFuseFx::test_fuse_convtranspose_bn_eval, test/test_quantization.py::TestFuseFx::test_fuse_custom_pattern, test/test_quantization.py::TestFuseFx::test_fusion_pattern_with_multiple_inputs, test/test_quantization.py::TestFuseFx::test_linear_bn_leaky_relu_not_fused_by_default, test/test_quantization.py::TestFuseFx::test_problematic_fuse_example, test/test_quantization.py::TestQuantizeFx::test__convert_to_reference_decomposed_fx, test/test_quantization.py::TestQuantizeFx::test__convert_to_reference_decomposed_fx_per_channel_quant, test/test_quantization.py::TestQuantizeFx::test_attention, test/test_quantization.py::TestQuantizeFx::test_backend_config_quantization_range, test/test_quantization.py::TestQuantizeFx::test_backend_config_scale_min, test/test_quantization.py::TestQuantizeFx::test_conv_transpose_relu_not_reference, test/test_quantization.py::TestQuantizeFx::test_convert_custom_config_set_preserved_attributes, test/test_quantization.py::TestQuantizeFx::test_convert_custom_config_to_dict, test/test_quantization.py::TestQuantizeFx::test_convert_qconfig_mapping, test/test_quantization.py::TestQuantizeFx::test_convtranspose_per_channel_fails_early, test/test_quantization.py::TestQuantizeFx::test_copy_node_has_shared_actpp_instance, test/test_quantization.py::TestQuantizeFx::test_custom_module_class_input_has_duplicate_nodes, test/test_quantization.py::TestQuantizeFx::test_custom_module_class_input_has_multiple_users, test/test_quantization.py::TestQuantizeFx::test_dequantize, test/test_quantization.py::TestQuantizeFx::test_dict_output, test/test_quantization.py::TestQuantizeFx::test_dynamic_linear_input_multiple_use, test/test_quantization.py::TestQuantizeFx::test_dynamic_quant_weight_observer, test/test_quantization.py::TestQuantizeFx::test_fold_quant_dequant, test/test_quantization.py::TestQuantizeFx::test_fp32_input_fp32_output, test/test_quantization.py::TestQuantizeFx::test_fuse_custom_config_from_dict, test/test_quantization.py::TestQuantizeFx::test_fused_module_qat_swap, test/test_quantization.py::TestQuantizeFx::test_fusion_pattern_unquantized, test/test_quantization.py::TestQuantizeFx::test_get_default_qconfig_valid_backend, test/test_quantization.py::TestQuantizeFx::test_getattr_with_nontensor_result, test/test_quantization.py::TestQuantizeFx::test_keep_original_weights, test/test_quantization.py::TestQuantizeFx::test_linear_bn, test/test_quantization.py::TestQuantizeFx::test_linear_leaky_relu_lowering, test/test_quantization.py::TestQuantizeFx::test_linear_qint8_activation, test/test_quantization.py::TestQuantizeFx::test_lowering_functional_conv_with_kwargs, test/test_quantization.py::TestQuantizeFx::test_lowering_functional_linear_with_kwargs, test/test_quantization.py::TestQuantizeFx::test_mixed_dtypes, test/test_quantization.py::TestQuantizeFx::test_not_used, test/test_quantization.py::TestQuantizeFx::test_observer_fqn, test/test_quantization.py::TestQuantizeFx::test_packed_weight_fused_op, test/test_quantization.py::TestQuantizeFx::test_pattern_match_constant, test/test_quantization.py::TestQuantizeFx::test_permute_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_float_to_observed_mapping, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_non_traceable_module_classes, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_standalone_module_class, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_to_dict, test/test_quantization.py::TestQuantizeFx::test_prepare_mode, test/test_quantization.py::TestQuantizeFx::test_preserve_qconfig, test/test_quantization.py::TestQuantizeFx::test_preserve_tuple, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_dict_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_dict_tuple_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_list_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_split_list_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_split_tuple_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_tuple_args, test/test_quantization.py::TestQuantizeFx::test_qconfig_for_call_method, test/test_quantization.py::TestQuantizeFx::test_qconfig_function, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_from_dict, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_set_object_type, test/test_quantization.py::TestQuantizeFx::test_qconfig_module_name_object_type_order, test/test_quantization.py::TestQuantizeFx::test_qconfig_module_type, test/test_quantization.py::TestQuantizeFx::test_qconfig_none, test/test_quantization.py::TestQuantizeFx::test_qconfig_precedence, test/test_quantization.py::TestQuantizeFx::test_qnnpack_backend_config, test/test_quantization.py::TestQuantizeFx::test_qparams_buffers, test/test_quantization.py::TestQuantizeFx::test_quantized_input_quantized_output, test/test_quantization.py::TestQuantizeFx::test_quantized_model_type, test/test_quantization.py::TestQuantizeFx::test_ref_linear_module, test/test_quantization.py::TestQuantizeFx::test_remove_qconfig, test/test_quantization.py::TestQuantizeFx::test_return_none, test/test_quantization.py::TestQuantizeFx::test_reuse_input_qconfig, test/test_quantization.py::TestQuantizeFx::test_save_observer_state_dict, test/test_quantization.py::TestQuantizeFx::test_shape_followed_by_quantized_op, test/test_quantization.py::TestQuantizeFx::test_stack_trace_preserved_linear, test/test_quantization.py::TestQuantizeFx::test_standalone_module_float_interface, test/test_quantization.py::TestQuantizeFx::test_standalone_module_quantized_interface, test/test_quantization.py::TestQuantizeFx::test_state_dict, test/test_quantization.py::TestQuantizeFx::test_static_lstm_consume_tuple, test/test_quantization.py::TestQuantizeFx::test_symmetric_qnnpack_qat_qconfig_mapping, test/test_quantization.py::TestQuantizeFx::test_symmetric_qnnpack_qconfig_mapping, test/test_quantization.py::TestQuantizeFx::test_torch_transpose_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_torch_unsqueeze_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_unsqueeze__nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_view_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFxOps::test_add_relu, test/test_quantization.py::TestQuantizeFxOps::test_add_relu_multiple_uses_of_relu, test/test_quantization.py::TestQuantizeFxOps::test_ave_pool_with_custom_cfg, test/test_quantization.py::TestQuantizeFxOps::test_boolean_tensor, test/test_quantization.py::TestQuantizeFxOps::test_cat, test/test_quantization.py::TestQuantizeFxOps::test_chunk, test/test_quantization.py::TestQuantizeFxOps::test_conv_module, test/test_quantization.py::TestQuantizeFxOps::test_conv_transpose_2d, test/test_quantization.py::TestQuantizeFxOps::test_copy_node_fp32_input, test/test_quantization.py::TestQuantizeFxOps::test_div, test/test_quantization.py::TestQuantizeFxOps::test_elu, test/test_quantization.py::TestQuantizeFxOps::test_embedding, test/test_quantization.py::TestQuantizeFxOps::test_fixed_qparams_ops, test/test_quantization.py::TestQuantizeFxOps::test_gelu_normal, test/test_quantization.py::TestQuantizeFxOps::test_hardswish, test/test_quantization.py::TestQuantizeFxOps::test_instance_norm, test/test_quantization.py::TestQuantizeFxOps::test_int8_input_no_unnecessary_fq, test/test_quantization.py::TestQuantizeFxOps::test_layer_norm, test/test_quantization.py::TestQuantizeFxOps::test_leaky_relu, test/test_quantization.py::TestQuantizeFxOps::test_linear_dynamic_fp16, test/test_quantization.py::TestQuantizeFxOps::test_mish_reference, test/test_quantization.py::TestQuantizeFxOps::test_norm_weight_bias, test/test_quantization.py::TestQuantizeFxOps::test_qbatch_norm, test/test_quantization.py::TestQuantizeFxOps::test_quantized_add_qat, test/test_quantization.py::TestQuantizeFxOps::test_quantized_conv_relu, test/test_quantization.py::TestQuantizeFxOps::test_quantized_mul_qat, test/test_quantization.py::TestQuantizeFxOps::test_rnn, test/test_quantization.py::TestQuantizeFxOps::test_silu_reference, test/test_quantization.py::TestQuantizeFxOps::test_softmax_reference, test/test_quantization.py::TestQuantizeFxOps::test_sum, test/test_quantization.py::TestQuantizeFxModels::test_qat_functional_linear, test/test_quantization.py::TestQuantizeFxModels::test_resnet18_ddp, test/test_quantization.py::TestQuantizeFxModels::test_resnet_base, test/test_quantization.py::TestQuantizeFxModels::test_switch_device_prepare_convert, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_correct_output_replacement, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_graph_argument_order, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_internal_pattern_nodes_cannot_have_users_that_are_not_matched, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_multiple_pattern_match, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_pattern_is_entire_graph, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_placeholder_matching, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_preserves_logic, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_single_pattern_match, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_traced_as_callable, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_writer_replace_consecutive_submodules, test/test_quantization.py::TestGraphUtils::test_conv_bn_conv_relu, test/test_quantization.py::TestGraphUtils::test_conv_bn_relu, test/test_quantization.py::TestDuplicateDQPass::test_avgpool_use_different_qconfig, test/test_quantization.py::TestDuplicateDQPass::test_no_add_quant_duplicate_dq, test/test_quantization.py::TestDuplicateDQPass::test_simple_duplicate_dq, test/test_quantization.py::TestMetaDataPorting::test_metadata_porting_for_dq_no_static_q, test/test_quantization.py::TestMetaDataPorting::test_metadata_porting_with_no_quant_inbetween, test/test_quantization.py::TestMetaDataPorting::test_simple_metadata_porting, test/test_quantization.py::TestNumericDebugger::test_control_flow, test/test_quantization.py::TestNumericDebugger::test_extract_results_from_loggers_list_output, test/test_quantization.py::TestNumericDebugger::test_prepare_for_propagation_comparison, test/test_quantization.py::TestQuantizePT2E::test_allow_exported_model_train_eval, test/test_quantization.py::TestQuantizePT2E::test_allow_exported_model_train_eval_idempotent, test/test_quantization.py::TestQuantizePT2E::test_composable_quantizer_throw, test/test_quantization.py::TestQuantizePT2E::test_conv_padding_bn_relu, test/test_quantization.py::TestQuantizePT2E::test_conv_transpose_bn_relu, test/test_quantization.py::TestQuantizePT2E::test_derived_qspec, test/test_quantization.py::TestQuantizePT2E::test_derived_qspec_per_channel, test/test_quantization.py::TestQuantizePT2E::test_disallow_eval_train, test/test_quantization.py::TestQuantizePT2E::test_dont_fold_other_constant, test/test_quantization.py::TestQuantizePT2E::test_embedding_conv_linear_quantization, test/test_quantization.py::TestQuantizePT2E::test_embedding_quantizer, test/test_quantization.py::TestQuantizePT2E::test_fixed_qparams_qspec_ptq, test/test_quantization.py::TestQuantizePT2E::test_fixed_qparams_qspec_qat, test/test_quantization.py::TestQuantizePT2E::test_max_pool2d_quantizer, test/test_quantization.py::TestQuantizePT2E::test_observer_callback, test/test_quantization.py::TestQuantizePT2E::test_prepare_obs_or_fq_callback, test/test_quantization.py::TestQuantizePT2E::test_preserve_nn_module_stack, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_bfloat16_float8_e4m3fn, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_bfloat16_float8_e5m2, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_float32_float8_e4m3fn, test/test_quantization.py::TestQuantizePT2E::test_reentrant, test/test_quantization.py::TestQuantizePT2E::test_shared_qspec, test/test_quantization.py::TestQuantizePT2E::test_shared_qspec_transitivity, test/test_quantization.py::TestQuantizePT2E::test_simple_quantizer, test/test_quantization.py::TestQuantizePT2EAffineQuantization::test_channel_group_quantization, test/test_quantization.py::TestPT2ERepresentation::test_add, test/test_quantization.py::TestPT2ERepresentation::test_conv2d, test/test_quantization.py::TestPT2ERepresentation::test_dynamic_linear, test/test_quantization.py::TestPT2ERepresentation::test_qdq_per_channel, test/test_quantization.py::TestPT2ERepresentation::test_static_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_conv1d, test/test_quantization.py::TestXNNPACKQuantizer::test_conv1d_with_conv2d, test/test_quantization.py::TestXNNPACKQuantizer::test_conv_linear_no_permute, test/test_quantization.py::TestXNNPACKQuantizer::test_dynamic_linear_int4_weight, test/test_quantization.py::TestXNNPACKQuantizer::test_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_mul_and_inplace_mul, test/test_quantization.py::TestXNNPACKQuantizer::test_obs_sharing_ops, test/test_quantization.py::TestXNNPACKQuantizer::test_qat_dynamic_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_set_module_type, test/test_quantization.py::TestXNNPACKQuantizerModels::test_resnet18, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_cat_recipe_same_inputs, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_binary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_binary2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_dynamic_quant_linear, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_filter_conv2d_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_flatten_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_flatten_recipe2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_dynamic_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary_dynamic_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary_serials, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_unary_dynamic, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_unary_dynamic_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_lowering_to_x86, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_maxpool2d_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_conv2d_binary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_dynamic_quant_linear, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_and_module_type_case2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_and_module_type_with_mixed_configs, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_qconfig, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_qconfig_for_dynamic_quant, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_qconfig_with_underscores, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_with_mixed_configs, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_fold_bn_erases_add_node, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_fusion, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_fusion_cuda, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_fusion_literal_args, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_per_channel_weight_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_relu_fusion_no_conv_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_transpose_bn, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_inplace_add_relu, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_preserve_source_fn_stack, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_update_shared_qspec, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_fold_bn_erases_add_node, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_bias_derived_qspec, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_fusion, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_fusion_literal_args, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_per_channel_weight_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_relu_fusion_cuda, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_no_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_preserve_source_fn_stack, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_update_shared_qspec, test/test_quantization.py::TestQuantizePT2EQATModels::test_qat_mobilenet_v2, test/test_quantization.py::TestFXGraphMatcher::test_dict_return_type, test/test_quantization.py::TestFXGraphMatcher::test_methods, test/test_quantization.py::TestFXGraphMatcher::test_nodes_before_cat, test/test_quantization.py::TestFXGraphMatcher::test_simple_fun, test/test_quantization.py::TestFXGraphMatcher::test_simple_fusion, test/test_quantization.py::TestFXGraphMatcher::test_simple_mod, test/test_quantization.py::TestFXGraphMatcher::test_simple_tensor_ops, test/test_quantization.py::TestFXGraphMatcherModels::test_mobilenet_v2, test/test_quantization.py::TestFXGraphMatcherModels::test_mobilenet_v2_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_loggers_cuda, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_cuda, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_meth_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extend_logger_results_with_comparison, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_cuda, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_linear_fun_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_layer_names, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_linear_fp16_activations, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_linear_fp16_weights, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_loggers_preserve_qat_numerics, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_logging_inputs, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_fqn, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_fun_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_mul_add_cat_stack_skips_shadowing, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_unsupported_op_copy_skips_shadowing, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_user_defined_function, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_user_module_scriptable, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_conv_bn_relu_fusion_fp32, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_linear_mod_quant_quant, test/test_quantization.py::TestFXNumericSuiteNShadows::test_conv_bn_relu_mod, test/test_quantization.py::TestFXNumericSuiteNShadows::test_functions, test/test_quantization.py::TestFXNumericSuiteNShadows::test_linear_relu_mod, test/test_quantization.py::TestFXNumericSuiteNShadows::test_partial_qconfig_mapping, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_deduplication, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_insert_padding, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_ordering, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_retroactive_padding, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_activations_linear, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_activations_lstm_dynamic, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_shadow_activations_lstm_dynamic, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_weights_conv, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_weights_linear, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_mobilenet_v2, test/test_quantization.py::TestFxModelReportDetector::test_multi_linear_model_without_per_channel, test/test_quantization.py::TestFxModelReportDetector::test_multiple_q_config_options, test/test_quantization.py::TestFxModelReportDetector::test_sequential_model_format, test/test_quantization.py::TestFxModelReportDetector::test_simple_conv, test/test_quantization.py::TestFxModelReportObserver::test_random_epochs_and_batches, test/test_quantization.py::TestFxModelReportObserver::test_zero_tensor_errors, test/test_quantization.py::TestFxModelReportDetectDynamicStatic::test_nested_detection_case, test/test_quantization.py::TestFxModelReportClass::test_equalization_mapping_generation, test/test_quantization.py::TestFxModelReportClass::test_generate_report, test/test_quantization.py::TestFxDetectInputWeightEqualization::test_input_weight_equalization_determine_points, test/test_quantization.py::TestFxDetectInputWeightEqualization::test_input_weight_equalization_report_gen, test/test_quantization.py::TestFxDetectOutliers::test_all_outlier_report_gen, test/test_quantization.py::TestFxDetectOutliers::test_no_outlier_report_gen, test/test_quantization.py::TestFxModelReportVisualizer::test_generate_tables_match_with_report, test/test_quantization.py::TestFxModelReportVisualizer::test_generate_tables_single_feat_match, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_convert, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_equalization_scales, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_prepare, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_weights_bias, test/test_quantization.py::TestSerialization::test_conv2d_graph, test/test_quantization.py::TestSerialization::test_conv2d_graph_v2, test/test_quantization.py::TestSerialization::test_conv2d_graph_v3, test/test_quantization.py::TestSerialization::test_conv2d_nobias_graph, test/test_quantization.py::TestSerialization::test_conv2d_nobias_graph_v2, test/test_quantization.py::TestSerialization::test_conv2d_nobias_graph_v3, test/test_quantization.py::TestSerialization::test_conv2d_relu, test/test_quantization.py::TestSerialization::test_conv3d_relu, test/test_quantization.py::TestSerialization::test_default_qat_qconfig, test/test_quantization.py::TestSerialization::test_linear, test/test_quantization.py::TestSerialization::test_linear_relu, test/test_quantization.py::TestQuantizeJit::test_nested, test/test_quantization.py::TestQuantizeJit::test_skip_quant, test/test_quantization.py::TestQuantizeJitPasses::test_conv_trace, test/test_quantization.py::TestQuantizeJitPasses::test_dedup_module_uses, test/test_quantization.py::TestQuantizeJitPasses::test_finalize_debug, test/test_quantization.py::TestQuantizeJitPasses::test_finalize_for_linear, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_shared_classtype, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_trivial_nobias, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_for_if, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_for_if_consistent_observation, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_interface_unshare_type, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_propagate_observed_for_function, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_shared_class_type, test/test_quantization.py::TestQuantizeJitPasses::test_insert_quant_dequant_shared_class_type, test/test_quantization.py::TestQuantizeJitPasses::test_interface_with_fork, test/test_quantization.py::TestQuantizeJitPasses::test_replicate_dequantize, test/test_quantization.py::TestQuantizeJitPasses::test_replicate_dequantize_in_block, test/test_quantization.py::TestQuantizeJitOps::test_clamp, test/test_quantization.py::TestQuantizeJitOps::test_conv_with_benchmark_flag, test/test_quantization.py::TestQuantizeJitOps::test_elu, test/test_quantization.py::TestQuantizeJitOps::test_hardswish, test/test_quantization.py::TestQuantizeJitOps::test_instance_norm, test/test_quantization.py::TestQuantizeJitOps::test_layer_norm, test/test_quantization.py::TestQuantizeJitOps::test_linear, test/test_quantization.py::TestQuantizeJitOps::test_qbatch_norm_relu_BNFuncRelu, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add_relu_alpha, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add_scalar_relu, test/test_quantization.py::TestQuantizeJitOps::test_quantized_cat, test/test_quantization.py::TestQuantizeJitOps::test_quantized_mul, test/test_quantization.py::TestQuantizeJitOps::test_quantized_mul_scalar_relu, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_multi_op, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_quant_multi_uses, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_weight_observer, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_with_if, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_prepare_dynamic_child_qconfig, test/test_quantization.py::TestQuantizeDynamicJitOps::test_embedding_bag, test/test_quantization.py::TestQuantizeDynamicJitOps::test_embedding_bag_padding_idx_error, test/test_quantization.py::TestFusionPasses::test_quantized_add_relu_fusion, test/test_quantization.py::TestDeprecatedJitQuantized::test_erase_class_tensor_shapes, test/test_quantization.py::TestDeprecatedJitQuantized::test_quantization_modules, test/test_quantization.py::TestDeprecatedJitQuantized::test_rnn_cell_quantized, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_fake_quantize, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_quantization_mappings, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_quantize, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_stubs, test/test_quantization.py::TestAOMigrationNNQuantized::test_functional_import, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_qat_dynamic_linear, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_qat_embedding_ops, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_qat_linear, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_quantizable_rnn, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_activation, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_dropout, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_linear, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_normalization, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_import_nn_intrinsic_quantized, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_qat_conv_fused, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_quantized_bn_relu, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_quantized_linear_relu, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_fuse, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_graph_module, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_match_utils, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_pattern_utils, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_quantization_patterns, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_quantize_fx, test/test_quantization.py::TestBitsCPU::test_cat_cpu, test/test_quantization.py::TestBitsCPU::test_subclass_cpu, test/test_quantization.py::TestBitsCPU::test_types_cpu, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_extremes_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_extremes_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_rte_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_rte_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_subnormals_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_subnormals_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_finfo_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_save_load_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_save_load_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_special_numbers_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_special_numbers_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_mul_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_pt2_traceable_aot_eager_cpu_float8_e4m3fn 2025-06-01T23:36:14.5036223Z 2025-06-01T23:36:15.3268731Z Running test batch 'tests to run' cost 7326.38 seconds 2025-06-01T23:36:16.1618973Z 2025-06-01T23:36:16.1619847Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if ERRORLEVEL 1 goto fail 2025-06-01T23:36:16.1620252Z 2025-06-01T23:36:16.1620459Z (base) C:\actions-runner\_work\pytorch\pytorch\test>popd 2025-06-01T23:36:16.1625289Z 2025-06-01T23:36:16.1625828Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-06-01T23:36:16.1650189Z + [[ 3 == 1 ]] 2025-06-01T23:36:16.1650513Z + [[ 3 == 2 ]] 2025-06-01T23:36:16.1651448Z + assert_git_not_dirty 2025-06-01T23:36:16.1651891Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-06-01T23:36:16.1652261Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-06-01T23:36:16.1775907Z ++ git status --porcelain 2025-06-01T23:36:16.1830547Z ++ grep -v '?? third_party' 2025-06-01T23:36:19.5225560Z ++ true 2025-06-01T23:36:19.5230256Z + git_status= 2025-06-01T23:36:19.5230590Z + [[ -n '' ]] 2025-06-01T23:36:19.5230882Z + echo 'TEST PASSED' 2025-06-01T23:36:19.5231136Z TEST PASSED 2025-06-01T23:36:19.5400520Z ##[group]Run cat test/**/*_toprint.log || true 2025-06-01T23:36:19.5400945Z cat test/**/*_toprint.log || true 2025-06-01T23:36:19.5420985Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T23:36:19.5421465Z env: 2025-06-01T23:36:19.5421684Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:19.5422108Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:19.5422653Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:19.5423177Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:19.5423621Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:19.5424032Z ##[endgroup] 2025-06-01T23:36:19.6143191Z cat: 'test/**/*_toprint.log': No such file or directory 2025-06-01T23:36:19.6254371Z ##[group]Run kill "$MONITOR_SCRIPT_PID" 2025-06-01T23:36:19.6254756Z kill "$MONITOR_SCRIPT_PID" 2025-06-01T23:36:19.6274098Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T23:36:19.6274545Z env: 2025-06-01T23:36:19.6274789Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:19.6275193Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:19.6275779Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:19.6276303Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:19.6276717Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:19.6277066Z MONITOR_SCRIPT_PID: 853 2025-06-01T23:36:19.6277312Z ##[endgroup] 2025-06-01T23:36:19.6665515Z Prepare all required actions 2025-06-01T23:36:19.6666034Z Getting action download info 2025-06-01T23:36:19.7878361Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-01T23:36:19.9517164Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-06-01T23:36:20.6651073Z ##[group]Run ./.github/actions/upload-test-artifacts 2025-06-01T23:36:20.6651415Z with: 2025-06-01T23:36:20.6651748Z file-suffix: test-default-3-3-windows.4xlarge.nonephemeral_43268628846 2025-06-01T23:36:20.6652252Z s3-bucket: gha-artifacts 2025-06-01T23:36:20.6652663Z env: 2025-06-01T23:36:20.6652978Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:20.6653598Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:20.6654121Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:20.6654673Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:20.6655068Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:20.6655390Z ##[endgroup] 2025-06-01T23:36:20.6783346Z ##[group]Run # -ir => recursive include all files in pattern 2025-06-01T23:36:20.6783768Z # -ir => recursive include all files in pattern 2025-06-01T23:36:20.6784218Z 7z a "test-jsons-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.json' 2025-06-01T23:36:20.6799948Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:36:20.6800404Z env: 2025-06-01T23:36:20.6800582Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:20.6800950Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:20.6801456Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:20.6801925Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:20.6802323Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:20.6802761Z FILE_SUFFIX: test-default-3-3-windows.4xlarge.nonephemeral_43268628846 2025-06-01T23:36:20.6803165Z ##[endgroup] 2025-06-01T23:36:21.0578299Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:36:21.0647973Z Finished 2025-06-01T23:36:21.3081308Z 2025-06-01T23:36:21.3081791Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-06-01T23:36:21.3082101Z 2025-06-01T23:36:21.3082188Z Scanning the drive: 2025-06-01T23:36:21.3082432Z 1 file, 20021 bytes (20 KiB) 2025-06-01T23:36:21.3082591Z 2025-06-01T23:36:21.3082924Z Creating archive: test-jsons-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:21.3083350Z 2025-06-01T23:36:21.3083518Z Add new data to archive: 1 file, 20021 bytes (20 KiB) 2025-06-01T23:36:21.3083763Z 2025-06-01T23:36:21.3083767Z 2025-06-01T23:36:21.3083851Z Files read from disk: 1 2025-06-01T23:36:21.3084147Z Archive size: 3809 bytes (4 KiB) 2025-06-01T23:36:21.3085130Z Everything is Ok 2025-06-01T23:36:21.3368770Z ##[group]Run # -ir => recursive include all files in pattern 2025-06-01T23:36:21.3369209Z # -ir => recursive include all files in pattern 2025-06-01T23:36:21.3369763Z 7z a "test-reports-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.xml' -ir'!test\test-reports\*.csv' 2025-06-01T23:36:21.3385546Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:36:21.3385996Z env: 2025-06-01T23:36:21.3386185Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:21.3386554Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:21.3387058Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:21.3387529Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:21.3387930Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:21.3389829Z FILE_SUFFIX: test-default-3-3-windows.4xlarge.nonephemeral_43268628846 2025-06-01T23:36:21.3390270Z ##[endgroup] 2025-06-01T23:36:21.6942313Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:36:21.7009852Z Finished 2025-06-01T23:36:21.8765671Z 2025-06-01T23:36:21.8766509Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-06-01T23:36:21.8766881Z 2025-06-01T23:36:21.8766972Z Scanning the drive: 2025-06-01T23:36:21.8767262Z 152 files, 12805657 bytes (13 MiB) 2025-06-01T23:36:21.8767478Z 2025-06-01T23:36:21.8767863Z Creating archive: test-reports-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:21.8768348Z 2025-06-01T23:36:21.8768491Z Add new data to archive: 152 files, 12805657 bytes (13 MiB) 2025-06-01T23:36:21.8768785Z 2025-06-01T23:36:21.8768789Z 2025-06-01T23:36:21.8768917Z Files read from disk: 152 2025-06-01T23:36:21.8769180Z Archive size: 725334 bytes (709 KiB) 2025-06-01T23:36:21.8769502Z Everything is Ok 2025-06-01T23:36:21.9062173Z ##[group]Run # -ir => recursive include all files in pattern 2025-06-01T23:36:21.9062619Z # -ir => recursive include all files in pattern 2025-06-01T23:36:21.9063089Z 7z a "logs-$Env:FILE_SUFFIX.zip" 'usage_log.txt' -ir'!test\test-reports\*.log' 2025-06-01T23:36:21.9079244Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:36:21.9079703Z env: 2025-06-01T23:36:21.9079885Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:21.9080258Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:21.9080765Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:21.9081238Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:21.9081625Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:21.9082127Z FILE_SUFFIX: test-default-3-3-windows.4xlarge.nonephemeral_43268628846 2025-06-01T23:36:21.9082588Z ##[endgroup] 2025-06-01T23:36:22.2886596Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:36:22.2956310Z Finished 2025-06-01T23:36:22.5228276Z 2025-06-01T23:36:22.5228791Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-06-01T23:36:22.5229099Z 2025-06-01T23:36:22.5229187Z Scanning the drive: 2025-06-01T23:36:22.5229422Z 287 files, 15437110 bytes (15 MiB) 2025-06-01T23:36:22.5229596Z 2025-06-01T23:36:22.5229928Z Creating archive: logs-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:22.5230324Z 2025-06-01T23:36:22.5230503Z Add new data to archive: 287 files, 15437110 bytes (15 MiB) 2025-06-01T23:36:22.5230756Z 2025-06-01T23:36:22.5230760Z 2025-06-01T23:36:22.5230848Z Files read from disk: 287 2025-06-01T23:36:22.5231078Z Archive size: 1132447 bytes (1106 KiB) 2025-06-01T23:36:22.5231349Z Everything is Ok 2025-06-01T23:36:22.5564525Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-06-01T23:36:22.5564860Z with: 2025-06-01T23:36:22.5565110Z s3-bucket: gha-artifacts 2025-06-01T23:36:22.5565512Z s3-prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T23:36:22.5565883Z retention-days: 14 2025-06-01T23:36:22.5566154Z if-no-files-found: warn 2025-06-01T23:36:22.5566416Z path: test-jsons-*.zip 2025-06-01T23:36:22.5566684Z name: artifact 2025-06-01T23:36:22.5566909Z region: us-east-1 2025-06-01T23:36:22.5567160Z env: 2025-06-01T23:36:22.5567370Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:22.5567798Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:22.5568351Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:22.5568926Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:22.5569410Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:22.5569726Z ##[endgroup] 2025-06-01T23:36:22.9504137Z NOTE: s3-prefix specified, ignoring name parameter 2025-06-01T23:36:22.9504600Z With the provided path, there will be 1 file uploaded 2025-06-01T23:36:22.9505177Z Uploading to s3 prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T23:36:22.9517754Z Starting upload of test-jsons-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:23.0888672Z Finished upload of test-jsons-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:23.1137030Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-06-01T23:36:23.1137344Z with: 2025-06-01T23:36:23.1137545Z s3-bucket: gha-artifacts 2025-06-01T23:36:23.1137820Z s3-prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T23:36:23.1138132Z retention-days: 14 2025-06-01T23:36:23.1138340Z if-no-files-found: error 2025-06-01T23:36:23.1138583Z path: test-reports-*.zip 2025-06-01T23:36:23.1138798Z name: artifact 2025-06-01T23:36:23.1138995Z region: us-east-1 2025-06-01T23:36:23.1139173Z env: 2025-06-01T23:36:23.1139371Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:23.1139734Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:23.1140265Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:23.1140741Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:23.1141128Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:23.1141411Z ##[endgroup] 2025-06-01T23:36:23.5099361Z NOTE: s3-prefix specified, ignoring name parameter 2025-06-01T23:36:23.5099793Z With the provided path, there will be 1 file uploaded 2025-06-01T23:36:23.5100200Z Uploading to s3 prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T23:36:23.5114420Z Starting upload of test-reports-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:23.7192626Z Finished upload of test-reports-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:23.7447307Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-06-01T23:36:23.7447624Z with: 2025-06-01T23:36:23.7447827Z s3-bucket: gha-artifacts 2025-06-01T23:36:23.7448114Z s3-prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T23:36:23.7448430Z retention-days: 14 2025-06-01T23:36:23.7448650Z if-no-files-found: ignore 2025-06-01T23:36:23.7448883Z path: logs-*.zip 2025-06-01T23:36:23.7449085Z name: artifact 2025-06-01T23:36:23.7449276Z region: us-east-1 2025-06-01T23:36:23.7449471Z env: 2025-06-01T23:36:23.7449642Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:23.7450024Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:23.7450552Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:23.7451025Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:23.7451419Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:23.7451695Z ##[endgroup] 2025-06-01T23:36:24.1407799Z NOTE: s3-prefix specified, ignoring name parameter 2025-06-01T23:36:24.1408253Z With the provided path, there will be 1 file uploaded 2025-06-01T23:36:24.1408852Z Uploading to s3 prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T23:36:24.1421874Z Starting upload of logs-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:24.3873202Z Finished upload of logs-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:24.4135366Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-06-01T23:36:24.4135667Z with: 2025-06-01T23:36:24.4135854Z s3-bucket: gha-artifacts 2025-06-01T23:36:24.4136127Z s3-prefix: pytorch/pytorch/15379340894/1/artifact 2025-06-01T23:36:24.4136434Z retention-days: 14 2025-06-01T23:36:24.4136646Z if-no-files-found: ignore 2025-06-01T23:36:24.4136878Z path: debug-*.zip 2025-06-01T23:36:24.4137071Z name: artifact 2025-06-01T23:36:24.4137251Z region: us-east-1 2025-06-01T23:36:24.4137438Z env: 2025-06-01T23:36:24.4137606Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:24.4138155Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:24.4138752Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:24.4139218Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:24.4139686Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:24.4139967Z ##[endgroup] 2025-06-01T23:36:24.8971732Z No files were found with the provided path: debug-*.zip. No artifacts will be uploaded. 2025-06-01T23:36:24.9221700Z Prepare all required actions 2025-06-01T23:36:24.9222115Z Getting action download info 2025-06-01T23:36:25.0157963Z ##[group]Run ./.github/actions/upload-utilization-stats 2025-06-01T23:36:25.0158301Z with: 2025-06-01T23:36:25.0158495Z job_id: 43268628846 2025-06-01T23:36:25.0158858Z job_name: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T23:36:25.0159299Z workflow_name: trunk 2025-06-01T23:36:25.0159517Z workflow_run_id: 15379340894 2025-06-01T23:36:25.0159758Z workflow_attempt: 1 2025-06-01T23:36:25.0159967Z env: 2025-06-01T23:36:25.0160197Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:25.0160877Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:25.0161646Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:25.0162112Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:25.0162535Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:25.0162818Z ##[endgroup] 2025-06-01T23:36:25.0241154Z ##[group]Run echo "workflow_id: 15379340894" 2025-06-01T23:36:25.0241477Z echo "workflow_id: 15379340894" 2025-06-01T23:36:25.0241766Z echo "workflow_attempt: 1" 2025-06-01T23:36:25.0242042Z echo "workflow_Name: trunk" 2025-06-01T23:36:25.0242314Z echo "job_id: 43268628846" 2025-06-01T23:36:25.0242785Z echo "job_name: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral)" 2025-06-01T23:36:25.0243328Z echo "artifact_prefix: " 2025-06-01T23:36:25.0243655Z python3 --version 2025-06-01T23:36:25.0262963Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T23:36:25.0263392Z env: 2025-06-01T23:36:25.0263579Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:25.0263953Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:25.0264483Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:25.0265039Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:25.0265436Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:25.0265731Z ##[endgroup] 2025-06-01T23:36:25.0453929Z workflow_id: 15379340894 2025-06-01T23:36:25.0454211Z workflow_attempt: 1 2025-06-01T23:36:25.0454470Z workflow_Name: trunk 2025-06-01T23:36:25.0454668Z job_id: 43268628846 2025-06-01T23:36:25.0455076Z job_name: win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral) 2025-06-01T23:36:25.0455721Z artifact_prefix: 2025-06-01T23:36:25.0577015Z Python 3.9.19 2025-06-01T23:36:25.0697128Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T23:36:25.0697408Z with: 2025-06-01T23:36:25.0697588Z shell: bash 2025-06-01T23:36:25.0697775Z timeout_minutes: 5 2025-06-01T23:36:25.0697983Z max_attempts: 5 2025-06-01T23:36:25.0698176Z retry_wait_seconds: 30 2025-06-01T23:36:25.0698698Z 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-06-01T23:36:25.0699234Z polling_interval_seconds: 1 2025-06-01T23:36:25.0699493Z warning_on_retry: true 2025-06-01T23:36:25.0699717Z continue_on_error: false 2025-06-01T23:36:25.0699933Z env: 2025-06-01T23:36:25.0700110Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:25.0700468Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:25.0700981Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:25.0701540Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:25.0701937Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:25.0702223Z ##[endgroup] 2025-06-01T23:36:25.9312201Z Collecting python-dateutil==2.8.2 2025-06-01T23:36:26.1569235Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB) 2025-06-01T23:36:26.8109803Z Collecting boto3==1.35.42 2025-06-01T23:36:26.8176420Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-06-01T23:36:27.0075824Z Collecting pandas==2.1.3 2025-06-01T23:36:27.0134387Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl.metadata (18 kB) 2025-06-01T23:36:27.0473217Z Requirement already satisfied: dataclasses_json==0.6.7 in c:\jenkins\miniconda3\lib\site-packages (0.6.7) 2025-06-01T23:36:27.0497976Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil==2.8.2) (1.16.0) 2025-06-01T23:36:27.7429984Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-06-01T23:36:27.7479943Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-06-01T23:36:27.7552440Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.42) (1.0.1) 2025-06-01T23:36:27.7807417Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-06-01T23:36:27.7855149Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-06-01T23:36:28.1684426Z Collecting numpy<2,>=1.22.4 (from pandas==2.1.3) 2025-06-01T23:36:28.1779133Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl.metadata (61 kB) 2025-06-01T23:36:28.2312051Z ---------------------------------------- 61.0/61.0 kB 1.1 MB/s eta 0:00:00 2025-06-01T23:36:28.3028232Z Collecting pytz>=2020.1 (from pandas==2.1.3) 2025-06-01T23:36:28.3077277Z Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-06-01T23:36:28.3389224Z Collecting tzdata>=2022.1 (from pandas==2.1.3) 2025-06-01T23:36:28.3441942Z Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-06-01T23:36:28.3544581Z 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-06-01T23:36:28.3552054Z 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-06-01T23:36:28.3659063Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.26.19) 2025-06-01T23:36:28.3791766Z 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-06-01T23:36:28.6291533Z 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-06-01T23:36:28.6300494Z 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-06-01T23:36:28.6663854Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) 2025-06-01T23:36:28.6896247Z --------------------------------------- 247.7/247.7 kB 14.8 MB/s eta 0:00:00 2025-06-01T23:36:28.6941624Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-06-01T23:36:28.7025379Z ---------------------------------------- 139.2/139.2 kB 8.6 MB/s eta 0:00:00 2025-06-01T23:36:28.7167684Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl (10.8 MB) 2025-06-01T23:36:28.8470352Z ---------------------------------------- 10.8/10.8 MB 81.8 MB/s eta 0:00:00 2025-06-01T23:36:28.8525782Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-06-01T23:36:28.9568663Z ---------------------------------------- 13.3/13.3 MB 131.0 MB/s eta 0:00:00 2025-06-01T23:36:28.9642913Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl (15.8 MB) 2025-06-01T23:36:29.0958900Z ---------------------------------------- 15.8/15.8 MB 108.8 MB/s eta 0:00:00 2025-06-01T23:36:29.1011005Z Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-06-01T23:36:29.1124793Z ---------------------------------------- 509.2/509.2 kB ? eta 0:00:00 2025-06-01T23:36:29.1175476Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-06-01T23:36:29.1259386Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-06-01T23:36:29.1302313Z Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-06-01T23:36:29.1403957Z --------------------------------------- 347.8/347.8 kB 21.1 MB/s eta 0:00:00 2025-06-01T23:36:30.4990949Z Installing collected packages: pytz, tzdata, python-dateutil, numpy, pandas, botocore, s3transfer, boto3 2025-06-01T23:36:31.1482706Z Attempting uninstall: python-dateutil 2025-06-01T23:36:31.1495881Z Found existing installation: python-dateutil 2.9.0.post0 2025-06-01T23:36:31.1579391Z Uninstalling python-dateutil-2.9.0.post0: 2025-06-01T23:36:31.1610352Z Successfully uninstalled python-dateutil-2.9.0.post0 2025-06-01T23:36:31.2423813Z Attempting uninstall: numpy 2025-06-01T23:36:31.2434457Z Found existing installation: numpy 1.22.3 2025-06-01T23:36:31.3936349Z Uninstalling numpy-1.22.3: 2025-06-01T23:36:31.4188528Z Successfully uninstalled numpy-1.22.3 2025-06-01T23:36:34.1052248Z WARNING: The script f2py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-06-01T23:36:40.4998441Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-06-01T23:36:40.4999090Z Attempting uninstall: botocore 2025-06-01T23:36:40.5006492Z Found existing installation: botocore 1.36.3 2025-06-01T23:36:40.7064215Z Uninstalling botocore-1.36.3: 2025-06-01T23:36:40.7882908Z Successfully uninstalled botocore-1.36.3 2025-06-01T23:36:43.4925021Z Attempting uninstall: s3transfer 2025-06-01T23:36:43.4936400Z Found existing installation: s3transfer 0.11.2 2025-06-01T23:36:43.5010125Z Uninstalling s3transfer-0.11.2: 2025-06-01T23:36:43.5032899Z Successfully uninstalled s3transfer-0.11.2 2025-06-01T23:36:43.5781169Z Attempting uninstall: boto3 2025-06-01T23:36:43.5789930Z Found existing installation: boto3 1.36.3 2025-06-01T23:36:43.5956265Z Uninstalling boto3-1.36.3: 2025-06-01T23:36:43.6011129Z Successfully uninstalled boto3-1.36.3 2025-06-01T23:36:43.7772621Z 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-06-01T23:36:43.7773592Z scipy 1.6.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.26.4 which is incompatible. 2025-06-01T23:36:43.7774419Z 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-06-01T23:36:44.2594467Z Command completed after 1 attempt(s). 2025-06-01T23:36:44.2757393Z ##[group]Run python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-06-01T23:36:44.2758065Z python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-06-01T23:36:44.2758536Z  --workflow-run-id "15379340894" \ 2025-06-01T23:36:44.2758841Z  --workflow-name "trunk" \ 2025-06-01T23:36:44.2759159Z  --workflow-run-attempt "1" \ 2025-06-01T23:36:44.2759445Z  --job-id "43268628846" \ 2025-06-01T23:36:44.2759898Z  --job-name "win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral)" \ 2025-06-01T23:36:44.2760375Z  --local-path "" \ 2025-06-01T23:36:44.2760625Z  --artifact-prefix "" 2025-06-01T23:36:44.2820781Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T23:36:44.2821211Z env: 2025-06-01T23:36:44.2821427Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:44.2823089Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:44.2823610Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:44.2824086Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:44.2824477Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:44.2824764Z ##[endgroup] 2025-06-01T23:36:46.9309084Z repo: pytorch/pytorch 2025-06-01T23:36:46.9309444Z Search for test log in s3 bucket: ossci-utilization 2025-06-01T23:36:46.9309951Z Downloading logs-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:46.9310689Z extracting usage_log.txt from zip file logs-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip 2025-06-01T23:36:46.9311388Z Failed to parse JSON line: Expecting value: line 1 column 1 (char 0) 2025-06-01T23:36:46.9311827Z Converted Log Model: UtilizationMetadata: 2025-06-01T23:36:46.9313114Z UtilizationMetadata(level='metadata', workflow_id='15379340894', job_id='43268628846', workflow_name='trunk', job_name='win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral)', usage_collect_interval=1.0, data_model_version=1.0, start_at=1748813563, gpu_count=0, cpu_count=16, gpu_type=None, error=None) 2025-06-01T23:36:46.9314460Z [Db Segments] detected pytest cmd: 2, generated segments: 2 2025-06-01T23:36:46.9314820Z [db model] Peek db timeseries 2025-06-01T23:36:46.9315045Z :{ 2025-06-01T23:36:46.9315219Z "created_at": 1748821006, 2025-06-01T23:36:46.9315454Z "type": "utilization", 2025-06-01T23:36:46.9315671Z "tags": [ 2025-06-01T23:36:46.9315846Z "record" 2025-06-01T23:36:46.9316029Z ], 2025-06-01T23:36:46.9316198Z "time_stamp": 1748813563, 2025-06-01T23:36:46.9316437Z "repo": "pytorch/pytorch", 2025-06-01T23:36:46.9316678Z "workflow_id": 15379340894, 2025-06-01T23:36:46.9316899Z "run_attempt": 1, 2025-06-01T23:36:46.9317151Z "job_id": 43268628846, 2025-06-01T23:36:46.9317365Z "workflow_name": "trunk", 2025-06-01T23:36:46.9317857Z "job_name": "win-vs2022-cpu-py3 / test (default, 3, 3, windows.4xlarge.nonephemeral)", 2025-06-01T23:36:46.9318331Z "json_data": "{}" 2025-06-01T23:36:46.9318556Z } 2025-06-01T23:36:46.9319058Z Writing 1 documents to S3 ossci-utilization/util_metadata/v_1.0/pytorch/pytorch/15379340894/1/43268628846/metadata 2025-06-01T23:36:46.9320084Z Done! Finish writing document to S3 ossci-utilization/util_metadata/v_1.0/pytorch/pytorch/15379340894/1/43268628846/metadata 2025-06-01T23:36:46.9321078Z Writing 1443 documents to S3 ossci-utilization/util_timeseries/v_1.0/pytorch/pytorch/15379340894/1/43268628846/time_series 2025-06-01T23:36:46.9322130Z Done! Finish writing document to S3 ossci-utilization/util_timeseries/v_1.0/pytorch/pytorch/15379340894/1/43268628846/time_series 2025-06-01T23:36:47.0833189Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-06-01T23:36:47.0833677Z python3 .github/scripts/parse_ref.py 2025-06-01T23:36:47.0853597Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T23:36:47.0854030Z env: 2025-06-01T23:36:47.0854217Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:47.0854591Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:47.0855108Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:47.0855573Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:47.0856020Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:47.0856332Z ##[endgroup] 2025-06-01T23:36:47.1974629Z ##[group]Run # This step removes PyTorch installed by the test to give a clean slate 2025-06-01T23:36:47.1975281Z # This step removes PyTorch installed by the test to give a clean slate 2025-06-01T23:36:47.1975695Z # to the next job 2025-06-01T23:36:47.1975972Z python3 -mpip uninstall -y torch 2025-06-01T23:36:47.1996315Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-06-01T23:36:47.1996751Z env: 2025-06-01T23:36:47.1996941Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:47.1997318Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:47.1997832Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:47.1998309Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:47.1998702Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:47.1998981Z ##[endgroup] 2025-06-01T23:36:47.7427731Z Found existing installation: torch 2.8.0a0+gitf7c09f8 2025-06-01T23:36:48.7826833Z Uninstalling torch-2.8.0a0+gitf7c09f8: 2025-06-01T23:36:49.0393727Z Successfully uninstalled torch-2.8.0a0+gitf7c09f8 2025-06-01T23:36:50.9523446Z Prepare all required actions 2025-06-01T23:36:50.9523873Z Getting action download info 2025-06-01T23:36:51.0759695Z ##[group]Run ./.github/actions/teardown-win 2025-06-01T23:36:51.0759996Z with: 2025-06-01T23:36:51.0760161Z env: 2025-06-01T23:36:51.0760340Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:51.0760717Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:51.0761225Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:51.0761695Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:51.0762074Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:51.0762357Z ##[endgroup] 2025-06-01T23:36:51.0838495Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-06-01T23:36:51.0838893Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-06-01T23:36:51.0856586Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:36:51.0857019Z env: 2025-06-01T23:36:51.0857210Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:51.0857578Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:51.0858116Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:51.0858590Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:51.0858972Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:51.0859261Z ##[endgroup] 2025-06-01T23:36:51.4621291Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:36:51.4666399Z Finished 2025-06-01T23:36:51.6086623Z Holding runner until all ssh sessions have logged out 2025-06-01T23:36:51.6368803Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-06-01T23:36:51.6369239Z .github\scripts\kill_active_ssh_sessions.ps1 2025-06-01T23:36:51.6384973Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:36:51.6385536Z env: 2025-06-01T23:36:51.6385728Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:51.6386108Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:51.6386730Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:51.6387207Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:51.6387604Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:51.6387888Z ##[endgroup] 2025-06-01T23:36:52.0208308Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:36:52.0276224Z Finished 2025-06-01T23:36:52.0654439Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-06-01T23:36:52.0654879Z env: 2025-06-01T23:36:52.0655105Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:52.0655524Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:52.0656103Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:52.0656661Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:52.0657230Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:52.0657534Z ##[endgroup] 2025-06-01T23:36:52.0733384Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T23:36:52.0734116Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-06-01T23:36:52.0734766Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-06-01T23:36:52.0735235Z # handle tool 2025-06-01T23:36:52.0735562Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-06-01T23:36:52.0735972Z Foreach ($process In $processes) { 2025-06-01T23:36:52.0736250Z  Try { 2025-06-01T23:36:52.0738101Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-06-01T23:36:52.0738832Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-06-01T23:36:52.0739471Z  } 2025-06-01T23:36:52.0739792Z  Catch { 2025-06-01T23:36:52.0740334Z  Write-Output "No leftover $process process, continuing" 2025-06-01T23:36:52.0740986Z  Write-Output $_ 2025-06-01T23:36:52.0741216Z  } 2025-06-01T23:36:52.0741502Z } 2025-06-01T23:36:52.0741686Z  2025-06-01T23:36:52.0742150Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-06-01T23:36:52.0742713Z # for hung processes 2025-06-01T23:36:52.0742981Z Foreach ($process In $processes) { 2025-06-01T23:36:52.0743261Z  Try { 2025-06-01T23:36:52.0743655Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-06-01T23:36:52.0744104Z  } 2025-06-01T23:36:52.0744288Z  Catch { 2025-06-01T23:36:52.0744502Z  Write-Output $_ 2025-06-01T23:36:52.0744733Z  } 2025-06-01T23:36:52.0744901Z } 2025-06-01T23:36:52.0745074Z  2025-06-01T23:36:52.0745316Z Try { 2025-06-01T23:36:52.0745566Z  # Print all the processes for debugging 2025-06-01T23:36:52.0746016Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-06-01T23:36:52.0746431Z } 2025-06-01T23:36:52.0746600Z Catch { 2025-06-01T23:36:52.0746996Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-06-01T23:36:52.0747464Z  Write-Output $_ 2025-06-01T23:36:52.0747686Z } 2025-06-01T23:36:52.0763421Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:36:52.0763878Z env: 2025-06-01T23:36:52.0764074Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:52.0764446Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:52.0765064Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:52.0765534Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:52.0765945Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:52.0766241Z ##[endgroup] 2025-06-01T23:36:52.4359953Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:36:52.4403416Z Finished 2025-06-01T23:36:52.4530762Z No leftover python process, continuing 2025-06-01T23:36:52.4991936Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-06-01T23:36:52.4993222Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:9 char:5 2025-06-01T23:36:52.4993826Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T23:36:52.4994231Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.4994755Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-06-01T23:36:52.4996265Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T23:36:52.4996861Z 2025-06-01T23:36:52.5009709Z No leftover ninja process, continuing 2025-06-01T23:36:52.5020676Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-06-01T23:36:52.5021425Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:9 char:5 2025-06-01T23:36:52.5022016Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T23:36:52.5022432Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5023709Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-06-01T23:36:52.5024543Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T23:36:52.5025230Z 2025-06-01T23:36:52.5036246Z No leftover cl process, continuing 2025-06-01T23:36:52.5046444Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-06-01T23:36:52.5047102Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:9 char:5 2025-06-01T23:36:52.5047640Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T23:36:52.5048044Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5048531Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-06-01T23:36:52.5049339Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T23:36:52.5049924Z 2025-06-01T23:36:52.5059992Z No leftover nvcc process, continuing 2025-06-01T23:36:52.5070033Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-06-01T23:36:52.5070707Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:9 char:5 2025-06-01T23:36:52.5071252Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T23:36:52.5071650Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5072162Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-06-01T23:36:52.5072964Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T23:36:52.5073598Z 2025-06-01T23:36:52.5085137Z No leftover cmd process, continuing 2025-06-01T23:36:52.5094814Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-06-01T23:36:52.5095494Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:9 char:5 2025-06-01T23:36:52.5096040Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T23:36:52.5096585Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5097155Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-06-01T23:36:52.5097989Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T23:36:52.5098582Z 2025-06-01T23:36:52.5107486Z No leftover sccache process, continuing 2025-06-01T23:36:52.5117255Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-06-01T23:36:52.5117927Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:9 char:5 2025-06-01T23:36:52.5118460Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T23:36:52.5118869Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5119403Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-06-01T23:36:52.5120396Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T23:36:52.5120994Z 2025-06-01T23:36:52.5129448Z No leftover git process, continuing 2025-06-01T23:36:52.5138989Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-06-01T23:36:52.5139636Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:9 char:5 2025-06-01T23:36:52.5140173Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-06-01T23:36:52.5140581Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5141047Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-06-01T23:36:52.5142005Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-06-01T23:36:52.5142608Z 2025-06-01T23:36:52.5572341Z You cannot call a method on a null-valued expression. 2025-06-01T23:36:52.5572913Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:21 char:5 2025-06-01T23:36:52.5573468Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T23:36:52.5573902Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5574298Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T23:36:52.5574701Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T23:36:52.5574984Z 2025-06-01T23:36:52.5742793Z You cannot call a method on a null-valued expression. 2025-06-01T23:36:52.5743329Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:21 char:5 2025-06-01T23:36:52.5743921Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T23:36:52.5744356Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5744757Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T23:36:52.5745232Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T23:36:52.5745526Z 2025-06-01T23:36:52.5902187Z You cannot call a method on a null-valued expression. 2025-06-01T23:36:52.5902963Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:21 char:5 2025-06-01T23:36:52.5903832Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T23:36:52.5904275Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.5904670Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T23:36:52.5905074Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T23:36:52.5905448Z 2025-06-01T23:36:52.6055786Z You cannot call a method on a null-valued expression. 2025-06-01T23:36:52.6056335Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:21 char:5 2025-06-01T23:36:52.6057960Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T23:36:52.6058646Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.6059054Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T23:36:52.6059462Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T23:36:52.6059751Z 2025-06-01T23:36:52.6209272Z You cannot call a method on a null-valued expression. 2025-06-01T23:36:52.6209798Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:21 char:5 2025-06-01T23:36:52.6210362Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T23:36:52.6210790Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.6211222Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T23:36:52.6211620Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T23:36:52.6211919Z 2025-06-01T23:36:52.6374938Z You cannot call a method on a null-valued expression. 2025-06-01T23:36:52.6375470Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:21 char:5 2025-06-01T23:36:52.6376028Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T23:36:52.6376467Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.6376871Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T23:36:52.6377269Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T23:36:52.6377564Z 2025-06-01T23:36:52.6532220Z You cannot call a method on a null-valued expression. 2025-06-01T23:36:52.6532755Z At C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1:21 char:5 2025-06-01T23:36:52.6533631Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-06-01T23:36:52.6534061Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-06-01T23:36:52.6534481Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-06-01T23:36:52.6534876Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-06-01T23:36:52.6535165Z 2025-06-01T23:36:52.7201171Z Caption CommandLine ProcessId 2025-06-01T23:36:52.7201758Z 2025-06-01T23:36:52.7202154Z System Idle Process 0 2025-06-01T23:36:52.7202682Z 2025-06-01T23:36:52.7202998Z System 4 2025-06-01T23:36:52.7203427Z 2025-06-01T23:36:52.7204281Z Registry 168 2025-06-01T23:36:52.7204914Z 2025-06-01T23:36:52.7205329Z smss.exe 408 2025-06-01T23:36:52.7205767Z 2025-06-01T23:36:52.7206700Z csrss.exe 524 2025-06-01T23:36:52.7207219Z 2025-06-01T23:36:52.7207636Z csrss.exe 600 2025-06-01T23:36:52.7208105Z 2025-06-01T23:36:52.7209699Z wininit.exe 652 2025-06-01T23:36:52.7210149Z 2025-06-01T23:36:52.7210499Z winlogon.exe winlogon.exe 672 2025-06-01T23:36:52.7210961Z 2025-06-01T23:36:52.7211260Z services.exe 744 2025-06-01T23:36:52.7211667Z 2025-06-01T23:36:52.7212815Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-06-01T23:36:52.7213347Z 2025-06-01T23:36:52.7213865Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 892 2025-06-01T23:36:52.7214924Z 2025-06-01T23:36:52.7215810Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 916 2025-06-01T23:36:52.7216470Z 2025-06-01T23:36:52.7216854Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-06-01T23:36:52.7217403Z 2025-06-01T23:36:52.7217898Z fontdrvhost.exe "fontdrvhost.exe" 948 2025-06-01T23:36:52.7218372Z 2025-06-01T23:36:52.7218817Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 120 2025-06-01T23:36:52.7219351Z 2025-06-01T23:36:52.7219839Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 472 2025-06-01T23:36:52.7220406Z 2025-06-01T23:36:52.7221134Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 128 2025-06-01T23:36:52.7222263Z 2025-06-01T23:36:52.7223159Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1112 2025-06-01T23:36:52.7223903Z 2025-06-01T23:36:52.7224214Z dwm.exe "dwm.exe" 1252 2025-06-01T23:36:52.7224609Z 2025-06-01T23:36:52.7225279Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1260 2025-06-01T23:36:52.7226016Z 2025-06-01T23:36:52.7226494Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-06-01T23:36:52.7227078Z 2025-06-01T23:36:52.7227726Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1372 2025-06-01T23:36:52.7228401Z 2025-06-01T23:36:52.7228867Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1396 2025-06-01T23:36:52.7229444Z 2025-06-01T23:36:52.7229953Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-06-01T23:36:52.7230560Z 2025-06-01T23:36:52.7231037Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1476 2025-06-01T23:36:52.7231618Z 2025-06-01T23:36:52.7232128Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1528 2025-06-01T23:36:52.7232771Z 2025-06-01T23:36:52.7234562Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1600 2025-06-01T23:36:52.7236510Z 2025-06-01T23:36:52.7237152Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1644 2025-06-01T23:36:52.7237913Z 2025-06-01T23:36:52.7238526Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1736 2025-06-01T23:36:52.7239234Z 2025-06-01T23:36:52.7239806Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1744 2025-06-01T23:36:52.7240376Z 2025-06-01T23:36:52.7240905Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1752 2025-06-01T23:36:52.7241523Z 2025-06-01T23:36:52.7242144Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1836 2025-06-01T23:36:52.7242865Z 2025-06-01T23:36:52.7243364Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2008 2025-06-01T23:36:52.7244427Z 2025-06-01T23:36:52.7245314Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1072 2025-06-01T23:36:52.7246460Z 2025-06-01T23:36:52.7247525Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 1464 2025-06-01T23:36:52.7248803Z 2025-06-01T23:36:52.7249755Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2076 2025-06-01T23:36:52.7250942Z 2025-06-01T23:36:52.7251950Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2100 2025-06-01T23:36:52.7254061Z 2025-06-01T23:36:52.7255163Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2108 2025-06-01T23:36:52.7256459Z 2025-06-01T23:36:52.7257463Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2160 2025-06-01T23:36:52.7258658Z 2025-06-01T23:36:52.7259638Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2192 2025-06-01T23:36:52.7260796Z 2025-06-01T23:36:52.7261743Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2232 2025-06-01T23:36:52.7262857Z 2025-06-01T23:36:52.7263953Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2240 2025-06-01T23:36:52.7265324Z 2025-06-01T23:36:52.7266605Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2356 2025-06-01T23:36:52.7268044Z 2025-06-01T23:36:52.7268825Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2632 2025-06-01T23:36:52.7269826Z 2025-06-01T23:36:52.7270830Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2752 2025-06-01T23:36:52.7271932Z 2025-06-01T23:36:52.7273108Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2760 2025-06-01T23:36:52.7274403Z 2025-06-01T23:36:52.7275394Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2768 2025-06-01T23:36:52.7276599Z 2025-06-01T23:36:52.7277581Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2776 2025-06-01T23:36:52.7278739Z 2025-06-01T23:36:52.7279873Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2784 2025-06-01T23:36:52.7281255Z 2025-06-01T23:36:52.7282186Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2800 2025-06-01T23:36:52.7283310Z 2025-06-01T23:36:52.7284260Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2808 2025-06-01T23:36:52.7285451Z 2025-06-01T23:36:52.7286400Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2816 2025-06-01T23:36:52.7287556Z 2025-06-01T23:36:52.7288413Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3028 2025-06-01T23:36:52.7289379Z 2025-06-01T23:36:52.7290338Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2972 2025-06-01T23:36:52.7291483Z 2025-06-01T23:36:52.7292777Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3084 2025-06-01T23:36:52.7293746Z 2025-06-01T23:36:52.7294401Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3104 2025-06-01T23:36:52.7295136Z 2025-06-01T23:36:52.7295630Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3116 2025-06-01T23:36:52.7296259Z 2025-06-01T23:36:52.7296870Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3528 2025-06-01T23:36:52.7297588Z 2025-06-01T23:36:52.7298427Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4084 2025-06-01T23:36:52.7299734Z 2025-06-01T23:36:52.7300241Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a76055 /state1:0x41c64e6d 2880 2025-06-01T23:36:52.7300844Z 2025-06-01T23:36:52.7302629Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4132 2025-06-01T23:36:52.7304605Z 2025-06-01T23:36:52.7306003Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4264 2025-06-01T23:36:52.7306859Z 2025-06-01T23:36:52.7307224Z vds.exe C:\Windows\System32\vds.exe 532 2025-06-01T23:36:52.7307696Z 2025-06-01T23:36:52.7308270Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 3040 2025-06-01T23:36:52.7308944Z 2025-06-01T23:36:52.7309690Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4468 2025-06-01T23:36:52.7310564Z 2025-06-01T23:36:52.7312999Z 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 2204 2025-06-01T23:36:52.7314679Z 2025-06-01T23:36:52.7315097Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2172 2025-06-01T23:36:52.7315660Z 2025-06-01T23:36:52.7316248Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 516 2025-06-01T23:36:52.7316873Z 2025-06-01T23:36:52.7317255Z msdtc.exe C:\Windows\System32\msdtc.exe 2740 2025-06-01T23:36:52.7317744Z 2025-06-01T23:36:52.7318322Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 968 2025-06-01T23:36:52.7318995Z 2025-06-01T23:36:52.7319460Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1044 2025-06-01T23:36:52.7320035Z 2025-06-01T23:36:52.7320615Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s StorSvc 1276 2025-06-01T23:36:52.7321288Z 2025-06-01T23:36:52.7321845Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 1144 2025-06-01T23:36:52.7322994Z 2025-06-01T23:36:52.7323785Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2276 2025-06-01T23:36:52.7324428Z 2025-06-01T23:36:52.7324960Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 2440 2025-06-01T23:36:52.7325587Z 2025-06-01T23:36:52.7326071Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 5104 2025-06-01T23:36:52.7326584Z 2025-06-01T23:36:52.7327074Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 448 2025-06-01T23:36:52.7327656Z 2025-06-01T23:36:52.7328268Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1196 2025-06-01T23:36:52.7328980Z 2025-06-01T23:36:52.7329479Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4904 2025-06-01T23:36:52.7330073Z 2025-06-01T23:36:52.7330567Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4896 2025-06-01T23:36:52.7331207Z 2025-06-01T23:36:52.7331621Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4792 2025-06-01T23:36:52.7332145Z 2025-06-01T23:36:52.7332718Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 4992 2025-06-01T23:36:52.7333425Z 2025-06-01T23:36:52.7333947Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2428 2376 1168 2025-06-01T23:36:52.7334579Z 2025-06-01T23:36:52.7335051Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1016 2025-06-01T23:36:52.7335558Z 2025-06-01T23:36:52.7335987Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 6140 2025-06-01T23:36:52.7336507Z 2025-06-01T23:36:52.7337319Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\b3469a56-4787-4fb5-835e-772ab4dcc414.ps1'" 5636 2025-06-01T23:36:52.7338209Z 2025-06-01T23:36:52.7339315Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 1728 2025-06-01T23:36:52.7340064Z 2025-06-01T23:36:52.7340068Z 2025-06-01T23:36:52.7340071Z 2025-06-01T23:36:52.7589776Z ##[group]Run nick-fields/retry@v3.0.0 2025-06-01T23:36:52.7590047Z with: 2025-06-01T23:36:52.7590222Z shell: bash 2025-06-01T23:36:52.7590405Z timeout_minutes: 5 2025-06-01T23:36:52.7590714Z max_attempts: 3 2025-06-01T23:36:52.7590908Z retry_wait_seconds: 90 2025-06-01T23:36:52.7591912Z command: set +e set -x if [ -n "${EXTRA_DELETE_DIR}" ]; then # It's ok to fail to clean up the extra directory on Windows as it only contains # the build artifacts and doesn't take up much space, i.e. /c/5053411580/build-results rm -rf "${EXTRA_DELETE_DIR}" || true fi rm -rf ./* 2025-06-01T23:36:52.7592943Z polling_interval_seconds: 1 2025-06-01T23:36:52.7593190Z warning_on_retry: true 2025-06-01T23:36:52.7593414Z continue_on_error: false 2025-06-01T23:36:52.7593627Z env: 2025-06-01T23:36:52.7593819Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:36:52.7594371Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:36:52.7595304Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:36:52.7595776Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:36:52.7596166Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:36:52.7596542Z EXTRA_DELETE_DIR: 2025-06-01T23:36:52.7596740Z ##[endgroup] 2025-06-01T23:36:52.8794552Z + '[' -n '' ']' 2025-06-01T23:36:52.8799512Z + rm -rf ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./defs.bzl ./docker.Makefile ./docs ./functorch ./logs-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements.txt ./scripts ./setup.py ./test ./test-jsons-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip ./test-reports-test-default-3-3-windows.4xlarge.nonephemeral_43268628846.zip ./third_party ./tools ./torch ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./usage_log.txt ./version.txt 2025-06-01T23:37:15.9494358Z Command completed after 1 attempt(s). 2025-06-01T23:37:15.9650048Z ##[group]Run handle C:\actions-runner\_work\ 2025-06-01T23:37:15.9650396Z handle C:\actions-runner\_work\ 2025-06-01T23:37:15.9666365Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:37:15.9666822Z env: 2025-06-01T23:37:15.9667008Z GIT_DEFAULT_BRANCH: main 2025-06-01T23:37:15.9667391Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-06-01T23:37:15.9667897Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-06-01T23:37:15.9668428Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-06-01T23:37:15.9668884Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-06-01T23:37:15.9669165Z ##[endgroup] 2025-06-01T23:37:16.3336965Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:37:16.3389774Z Finished 2025-06-01T23:37:16.3897899Z 2025-06-01T23:37:16.3898307Z Nthandle v5.0 - Handle viewer 2025-06-01T23:37:16.3898650Z Copyright (C) 1997-2022 Mark Russinovich 2025-06-01T23:37:16.3899003Z Sysinternals - www.sysinternals.com 2025-06-01T23:37:16.3899194Z 2025-06-01T23:37:16.4163197Z powershell.exe pid: 2380 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T23:37:16.4163772Z handle.exe pid: 1788 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T23:37:16.4164338Z handle.exe pid: 4604 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T23:37:16.4164885Z handle64.exe pid: 1856 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-06-01T23:37:16.4621175Z Post job cleanup. 2025-06-01T23:37:16.4788981Z Post job cleanup. 2025-06-01T23:37:16.6187114Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-06-01T23:37:16.6408634Z git version 2.47.1.windows.2 2025-06-01T23:37:16.6468875Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\a12a20a0-38b7-4e3e-8b93-a906324863aa\.gitconfig' 2025-06-01T23:37:16.6487761Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\a12a20a0-38b7-4e3e-8b93-a906324863aa' before making global git config changes 2025-06-01T23:37:16.6488591Z Adding repository directory to the temporary git global config as a safe directory 2025-06-01T23:37:16.6498533Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-06-01T23:37:16.6767977Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-06-01T23:37:16.7013244Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-06-01T23:37:17.0871779Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-01T23:37:17.1086293Z http.https://github.com/.extraheader 2025-06-01T23:37:17.1134013Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-06-01T23:37:17.1404241Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-06-01T23:37:17.5288384Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-01T23:37:17.5325219Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-06-01T23:37:17.5340763Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-06-01T23:37:17.5341234Z ##[endgroup] 2025-06-01T23:37:17.9138658Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-06-01T23:37:17.9187302Z Finished 2025-06-01T23:37:19.5863519Z Cleaning up orphan processes